unit_type
string
repo_path
string
commit_id
string
stars
int32
unit_prefix
string
shard
int32
license_types
list
files
list
quality
dict
flags
dict
ansible_role
Hari-Develop/ansible
d87571a05ac0f4552f4e30a57d9e40d084ef8c8b
0
roles/common
7,779
[ "no_license" ]
[ { "path": "roles/common/tasks/nodejs.yml", "content": "\n- name: Configure Node.js YUM repository\n ansible.builtin.shell:\n cmd: \"curl -fsSL https://rpm.nodesource.com/setup_lts.x | bash -\"\n\n- name: Install Node.js package\n ansible.builtin.yum:\n name: nodejs\n state: present\n\n- name: Imp...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 960, "all_permissive": false }
ansible_role
Hari-Develop/ansible
d87571a05ac0f4552f4e30a57d9e40d084ef8c8b
0
roles/frontened
7,779
[ "no_license" ]
[ { "path": "roles/frontened/tasks/main.yml", "content": "- name: Install nginx\n ansible.builtin.dnf:\n name: nginx\n state: present\n\n- name: Copying the configuration file\n ansible.builtin.template:\n src: roboshop.conf\n dest: /etc/nginx/default.d/roboshop.conf\n\n- name: remove the old di...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 734, "all_permissive": false }
ansible_role
ksingh7/ceph-prerequisite
d928478b6b20e08f645400c0767e3acc5fb33258
2
roles/collectd
7,779
[ "no_license" ]
[ { "path": "roles/collectd/tasks/main.yml", "content": "---\n- include: collectd_centos6.yml\n when: ansible_distribution_major_version == '6'\n\n- include: collectd_centos7.yml\n when: ansible_distribution_major_version == '7'\n\n- include_vars: ../vars/csc_password.yml\n when: project == \"cpouta\"\n\n-...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1620, "all_permissive": false }
ansible_role
ksingh7/ceph-prerequisite
d928478b6b20e08f645400c0767e3acc5fb33258
2
roles/collectd_ceph
7,779
[ "no_license" ]
[ { "path": "roles/collectd_ceph/tasks/main.yml", "content": "---\n\n- file: path=/etc/collectd/plugins/ceph state=directory mode=0755\n\n- name: Copying collectd Ceph plugin files\n copy: src={{ item }} dest=/etc/collectd/plugins/ceph\n with_items:\n - base.py\n - ceph_latency_plugin.py\n - ceph_moni...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 539, "all_permissive": false }
ansible_role
ksingh7/ceph-prerequisite
d928478b6b20e08f645400c0767e3acc5fb33258
2
roles/common
7,779
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- include: centos7_journal_bug_fix.yml\n\n- name: Updating Hosts file\n template: src={{ project }}.hosts dest=/etc/hosts mode=0644 \n\n- include: repos_setup.yml\n when: configure_yum_repos == 'manual'\n\n- name: Installing Packages\n yum: name=...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 4692, "all_permissive": false }
ansible_role
ksingh7/ceph-prerequisite
d928478b6b20e08f645400c0767e3acc5fb33258
2
roles/network_interface
7,779
[ "no_license" ]
[ { "path": "roles/network_interface/templates/ethernet_RedHat.j2", "content": "{% if item.bootproto == 'static' %}\nDEVICE={{ item.device }}\nBOOTPROTO=static\n{% if item.address is defined %}\nIPADDR={{ item.address }}\n{% endif %}\n{% if item.onboot is defined %}\nONBOOT={{ item.onboot }}\n{% endif %}\n{% ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 5913, "all_permissive": false }
ansible_role
ksingh7/ceph-prerequisite
d928478b6b20e08f645400c0767e3acc5fb33258
2
roles/opsview
7,779
[ "no_license" ]
[ { "path": "roles/opsview/files/opsview.xml", "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<service>\n <short>opsview</short>\n <description>Opsview Nagios NRPE Firewall Port</description>\n <port protocol=\"tcp\" port=\"5666\"/>\n</service>\n\n", "license_type": "no_license", "detected...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3197, "all_permissive": false }
ansible_role
hgallo0/cs642ls18
f7a962968d6ddb2fc69f71265f074005efd898cf
0
ansible/roles/apache
7,779
[ "no_license" ]
[ { "path": "ansible/roles/apache/vars/main.yml", "content": "---\nmygiphy: \"https://giphy.com/gifs/robot-monster-laser-11e5gZ6NJ8AB1K\"\nbg_color: gray\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 88 }, { "path": "ansible/roles/apache/tasks/main.yml", "con...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 927, "all_permissive": false }
ansible_role
hgallo0/cs642ls18
f7a962968d6ddb2fc69f71265f074005efd898cf
0
ansible/roles/mysql
7,779
[ "no_license" ]
[ { "path": "ansible/roles/mysql/tasks/main.yml", "content": "---\n- name: i just want to install mysql\n apt: name=mariadb-server state=present\n\n- name: start apache service\n service: name=mysql state=started\n\n- name: need this python module to be able to use mysql ansible module\n apt: name=python-m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3624, "all_permissive": false }
ansible_role
hgallo0/cs642ls18
f7a962968d6ddb2fc69f71265f074005efd898cf
0
roles/iptables
7,779
[ "no_license" ]
[ { "path": "roles/iptables/tasks/main.yml", "content": "---\n- name: allow port 22\n iptables:\n chain: INPUT\n protocol: tcp\n destination_port: 22\n ctstate: NEW\n syn: match\n jump: ACCEPT\n comment: Accept new SSH connections.\n\n- name: allow related and established connections\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 519, "all_permissive": false }
ansible_role
jievince/nebula-ansible
eee78f46ebf0690198c3d4893357cc518900a1a7
2
roles/install
7,775
[ "no_license" ]
[ { "path": "roles/install/tasks/main.yml", "content": "- name: create directory to store nebula package on all machines in the cluster\n file:\n path: \"{{ packages_dir }}\"\n state: directory\n mode: 0775\n\n- include_vars: file={{ playbook_dir }}/roles/local/vars/main.yml\n\n- name: copy nebula p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 575, "all_permissive": false }
ansible_role
jievince/nebula-ansible
eee78f46ebf0690198c3d4893357cc518900a1a7
2
roles/storaged
7,775
[ "no_license" ]
[ { "path": "roles/storaged/tasks/main.yml", "content": "# configure /usr/local/nebula/etc/nebula-storaged.conf for storaged services\n\n- name: create list of metad servers added to cluster\n set_fact: meta_server_addrs={% set IP_ARR=[] %}{% for host in groups['metad_servers'] %}{% if IP_ARR.insert(loop.ind...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 879, "all_permissive": false }
ansible_role
phraktle/rocksdb-build
7e33d11cbaa114f53f085b75416eb88aacc57351
4
provisioning/roles/rocksdb
7,775
[ "no_license" ]
[ { "path": "provisioning/roles/rocksdb/tasks/main.yml", "content": "---\n\n- name: install gcc 4.7\n when: ansible_distribution == 'MacOSX'\n homebrew: name=gcc47 install_options=\"cc=llvm-gcc\"\n\n- name: install rocksdb dependencies\n when: ansible_distribution == 'MacOSX'\n homebrew: name=snappy\n # ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1343, "all_permissive": false }
ansible_role
phraktle/rocksdb-build
7e33d11cbaa114f53f085b75416eb88aacc57351
4
provisioning/roles/rocksdbjni
7,775
[ "no_license" ]
[ { "path": "provisioning/roles/rocksdbjni/tasks/main.yml", "content": "---\n- name: install rocksdbjni dependencies\n when: ansible_distribution == 'MacOSX'\n homebrew: name=maven\n # FIXME: we assume java 7 was installed and JAVA_HOME is set\n\n- name: install rocksdbjni dependencies\n when: ansible_dis...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1415, "all_permissive": false }
ansible_role
CyrilleFranchet/luffy
44ede99694f439f68bfbcd4a4db2e23dbfc19770
0
roles/common
7,775
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: set configured port fact\n set_fact:\n configured_port: \"{{ ansible_port }}\"\n\n# From localhost, check if we're able to reach {{ inventory_hostname }} on\n# port 22\n- name: check if we're using the default SSH port\n become: no\n wa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 990, "all_permissive": false }
ansible_role
CyrilleFranchet/luffy
44ede99694f439f68bfbcd4a4db2e23dbfc19770
0
roles/init
7,775
[ "no_license" ]
[ { "path": "roles/init/handlers/main.yml", "content": "---\n- name: restart sshd\n shell: \"sleep 5 && /etc/init.d/ssh restart\"\n async: 1\n poll: 0\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 92 }, { "path": "roles/init/tasks/openssh.yml", "content": ...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 4567, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/centraal
7,775
[ "no_license" ]
[ { "path": "roles/centraal/templates/rsyslog.j2", "content": "## CENTRALIZED LOGS AGGREGATION ##\n\n# Provides TCP syslog reception\n$ModLoad imtcp.so\n\n$DefaultNetstreamDriverCertFile /etc/ssl/certs/star_itmm_ru.crt\n$DefaultNetstreamDriverKeyFile /etc/pki/tls/private/star_itmm_ru.key\n\n## TEMPLATES ##\n$...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3086, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/disk_backends
7,775
[ "no_license" ]
[ { "path": "roles/disk_backends/templates/snmpd.conf.j2", "content": "proc \"memcached\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 17 }, { "path": "roles/disk_backends/templates/apache/httpd.conf.j2", "content": "{% include 'templates/banner.j2' %}\n\nSe...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 15062, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/disk_storages
7,775
[ "no_license" ]
[ { "path": "roles/disk_storages/templates/snmpd.conf.j2", "content": "proc \"back-endd#1\"\nproc \"back-endd#2\"\nproc \"back-endd#3\"\nproc \"back-endd#4\"\nproc \"back-endd#5\"\nproc \"back-endd#6\"\nproc \"stat-server\"\n\nexec sborvlente /etc/snmp/check_lenta_size.sh\nexec checkdisks /etc/snmp/check_disk...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 7966, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/ff_backends
7,775
[ "no_license" ]
[ { "path": "roles/ff_backends/tasks/main.yml", "content": "---\n# These tasks are responsible for copying the latest dev/production code from\n# the version control system.\n\n- name: Deploy private keys for photofile.ru user\n copy: src={{ item }} dest=/home/photofile.ru/.ssh/ owner=photofile.ru group=w3ph...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 10370, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/ff_backups
7,775
[ "no_license" ]
[ { "path": "roles/ff_backups/defaults/main.yml", "content": "---\n\nDISABLE_BACKUP: NO\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 24 }, { "path": "roles/ff_backups/files/rsync.sh", "content": "#!/usr/bin/env bash\n\n# 2012\n\nVERSION=\"0.4\"\n\nRUN_USER=\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2745, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/ff_db
7,775
[ "no_license" ]
[ { "path": "roles/ff_db/tasks/main.yml", "content": "---\n\n- name: Install mysql interface to python\n yum: name=MySQL-python state=present\n tags:\n - mysql\n\n- name: Create tmp directory for mysql\n file: path=/www/tmp/mysql owner=mysql group=mysql mode=0775 state=directory\n tags:\n - mysql\n\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 26184, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/ff_frontends
7,775
[ "no_license" ]
[ { "path": "roles/ff_frontends/templates/nginx/nginx.shot.conf.j2", "content": "{% include 'templates/banner.j2' %}\n\nupstream shot {\n server web1.shot.qip.ru:81 weight=10; # kunugi\n server web2.shot.qip.ru:81 weight=10; # ketamine\n}\n\nserver {\n listen 172.16.58.3:80;\n listen ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 34540, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/ff_storages
7,775
[ "no_license" ]
[ { "path": "roles/ff_storages/templates/rsyncd/rsyncd.conf.tanker.j2", "content": "# up002.photofile.ru\n[up002]\npath = /www/up002.photofile.ru\nread only = yes\noutgoing chmod = Dg+rwx,Fg+rw\ndont compress = *.*\nhosts allow = 172.16.58.3 192.168.3.11\nsecrets file = /usr/local/etc/rsyncd.secrets\nauth use...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 24, "total_bytes": 21126, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/fs_backends
7,775
[ "no_license" ]
[ { "path": "roles/fs_backends/templates/apache/httpd.conf.j2", "content": "ServerRoot \"{{ APACHE_ROOT_DIR }}\"\nPidFile {{ APACHE_PID }}\nTimeout 30\nKeepAlive Off\nStartServers 2\nMinSpareServers 2\nMaxSpareServers 8\nMaxClients 64\nMaxRequestsPerChild 8192\n\nListen {{ ansible_default_ipv4[\"address\"] }}...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 4691, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/fs_frontends
7,775
[ "no_license" ]
[ { "path": "roles/fs_frontends/templates/nginx/nginx.fs-internal.conf.j2", "content": "{% include 'templates/banner.j2' %}\n\n log_format reqtimelog '$remote_addr - $remote_user [$time_local] - $upstream_addr reqtime:[$request_time] '\n '\"$request\" $status $body_bytes_sent '\n '\"$http_re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 5522, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/fs_storages
7,775
[ "no_license" ]
[ { "path": "roles/fs_storages/tasks/main.yml", "content": "---\n\n- name: Create service user\n user: name=fstorage uid=6672 createhome=yes shell=/bin/bash comment=\"service login for fs*.qip.ru\" group=w3fstorage groups=www\n\n- name: Set authorized keys for service user\n authorized_key: user=fstorage ke...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 7358, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/ipmi
7,775
[ "no_license" ]
[ { "path": "roles/ipmi/tasks/main.yml", "content": "---\n\n- name: Run IPMI script\n shell: curl -k https://mnt.itmm.ru/pub/ipmi_install/ipmi_install.sh | IPMI_PASS='{{ IPMI_PASS }}' bash\n register: result\n\n- debug: msg=\"{{ result.stdout }}\"\n", "license_type": "no_license", "detected_licenses...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 189, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/monitoring
7,775
[ "no_license" ]
[ { "path": "roles/monitoring/tasks/main.yml", "content": "---\n\n- name: Generate new photo.qip.ru config for icinga\n template: src=cfg.photofile.j2 dest=/tmp/cfg.photofile backup=no mode=0644\n\n- name: Generate new shot.qip.ru config for icinga\n template: src=cfg.shot.j2 dest=/tmp/cfg.shot backup=no mo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 21300, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/reglament
7,775
[ "no_license" ]
[ { "path": "roles/reglament/templates/rsyslog.conf.j2", "content": "# rsyslog v5 config file\n\n# if you experience problems, check\n# http://www.rsyslog.com/troubleshoot for assistance\n\n#### MODULES ####\n\n$ModLoad imfile.so\n$ModLoad imuxsock.so # provides support for local system logging (e.g. via l...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 28, "total_bytes": 55879, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/shot_backends
7,775
[ "no_license" ]
[ { "path": "roles/shot_backends/templates/cron/crontab.j2", "content": "MAILTO={{ CRON_MAIL }}\n*/15 * * * * root /usr/bin/find /tmp -type f -mmin +15 -delete\n* * * * * root /root/bin/kill_converts.sh\n", "license_type": "no_license", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4658, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/shot_backups
7,775
[ "no_license" ]
[ { "path": "roles/shot_backups/defaults/main.yml", "content": "---\n\nBACKUP_USER: w3shot-backup\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 33 }, { "path": "roles/shot_backups/vars/main.yml", "content": "---\n\nSHOT_STORAGE_BACKUP: ex00$SHOT_STORAGE_BAC...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2311, "all_permissive": false }
ansible_role
nextus/ansible-photofile
49f5c120f09508c8328caf333c64b29cf3c38c8d
0
roles/shot_storages
7,775
[ "no_license" ]
[ { "path": "roles/shot_storages/templates/nginx/nginx.conf.j2", "content": "{% include 'templates/banner.j2' %}\n\nuser www;\nworker_processes {{ VCPUS }};\nworker_priority -20;\n\nerror_log {{ LOG_DIR }}/{{ NGINX_ERROR_LOG }} emerg;\npid {{ NGINX_PID }};\n\nev...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 7395, "all_permissive": false }
ansible_role
ryu-f67/AWS_lecture13
ae9cef8efcc0d9c057ddf7138dfabfb7d5cb3ebe
0
ansible/roles/bin_setup
7,775
[ "no_license" ]
[ { "path": "ansible/roles/bin_setup/tasks/main.yml", "content": "---\n# tasks file for bin_setup\n- name: bin/setup\n shell: bash -lc \"bin/setup\"\n args: \n chdir: /home/ec2-user/raisetech-live8-sample-app\n become: no\n", "license_type": "no_license", "detected_licenses": [], "size_bytes...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 154, "all_permissive": false }
ansible_role
ryu-f67/AWS_lecture13
ae9cef8efcc0d9c057ddf7138dfabfb7d5cb3ebe
0
ansible/roles/bundler
7,775
[ "no_license" ]
[ { "path": "ansible/roles/bundler/tasks/main.yml", "content": "---\n# tasks file for bundler\n- name: check if bundler is installed\n ansible.builtin.shell: bash -lc \"bundle -v\"\n register: check_bundler\n changed_when: no\n ignore_errors: yes\n become: no\n\n- name: install bundler\n ansible.builtin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 345, "all_permissive": false }
ansible_role
ryu-f67/AWS_lecture13
ae9cef8efcc0d9c057ddf7138dfabfb7d5cb3ebe
0
ansible/roles/git
7,775
[ "no_license" ]
[ { "path": "ansible/roles/git/tasks/main.yml", "content": "---\n# tasks file for git\n- name: install git\n ansible.builtin.yum:\n name: git\n state: present\n\n- name: git clone sample-app\n ansible.builtin.git: \n repo: https://github.com/yuta-ushijima/raisetech-live8-sample-app.git\n dest: /...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 319, "all_permissive": false }
ansible_role
ryu-f67/AWS_lecture13
ae9cef8efcc0d9c057ddf7138dfabfb7d5cb3ebe
0
ansible/roles/mysql
7,775
[ "no_license" ]
[ { "path": "ansible/roles/mysql/tasks/main.yml", "content": "---\n# tasks file for mysql\n- name: check if mysql is installed\n ansible.builtin.shell: bash -lc \"mysql --version\"\n register: check_mysql\n changed_when: no\n ignore_errors: yes\n\n- name: remove the MariaDB\n ansible.builtin.yum:\n na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1292, "all_permissive": false }
ansible_role
ryu-f67/AWS_lecture13
ae9cef8efcc0d9c057ddf7138dfabfb7d5cb3ebe
0
ansible/roles/nginx
7,775
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "---\n# tasks file for nginx\n- name: install nginx\n ansible.builtin.shell: amazon-linux-extras install nginx1 -y\n args:\n chdir: /home/{{ ansible_user }}/raisetech-live8-sample-app\n\n- name: change permission /var/lib/nginx\n shell: chown ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 280, "all_permissive": false }
ansible_role
ryu-f67/AWS_lecture13
ae9cef8efcc0d9c057ddf7138dfabfb7d5cb3ebe
0
ansible/roles/node
7,775
[ "no_license" ]
[ { "path": "ansible/roles/node/tasks/main.yml", "content": "---\n# tasks file for node\n- name: check if NVM is installed\n ansible.builtin.shell: bash -lc \"nvm -v\"\n register: check_nvm\n changed_when: no\n ignore_errors: yes\n become: no\n\n- name: download and install NVM\n shell: curl -o- https:/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 744, "all_permissive": false }
ansible_role
ryu-f67/AWS_lecture13
ae9cef8efcc0d9c057ddf7138dfabfb7d5cb3ebe
0
ansible/roles/rails
7,775
[ "no_license" ]
[ { "path": "ansible/roles/rails/tasks/main.yml", "content": "---\n# tasks file for rails\n- name: check if rails is installed\n ansible.builtin.shell: bash -lc \"rails -v\"\n register: check_rails\n changed_when: no\n ignore_errors: yes\n become: no\n\n- name: install rails\n ansible.builtin.shell: bas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 331, "all_permissive": false }
ansible_role
ryu-f67/AWS_lecture13
ae9cef8efcc0d9c057ddf7138dfabfb7d5cb3ebe
0
ansible/roles/ruby
7,775
[ "no_license" ]
[ { "path": "ansible/roles/ruby/tasks/main.yml", "content": "---\n# tasks file for ruby\n- name: check if rbenv is installed\n ansible.builtin.shell: bash -lc \"rbenv -v\"\n register: check_rbenv\n changed_when: no\n ignore_errors: yes\n become: no\n\n- name: install rbenv\n ansible.builtin.git:\n re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2255, "all_permissive": false }
ansible_role
ryu-f67/AWS_lecture13
ae9cef8efcc0d9c057ddf7138dfabfb7d5cb3ebe
0
ansible/roles/setup_server
7,775
[ "no_license" ]
[ { "path": "ansible/roles/setup_server/tasks/main.yml", "content": "---\n# tasks file for setup_server\n- name: create sockets directory\n ansible.builtin.file:\n path: /home/{{ ansible_user }}/raisetech-live8-sample-app/tmp/sockets\n state: directory\n mode: '0755'\n become: no\n\n- name: create ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2536, "all_permissive": false }
ansible_role
ryu-f67/AWS_lecture13
ae9cef8efcc0d9c057ddf7138dfabfb7d5cb3ebe
0
ansible/roles/yarn
7,775
[ "no_license" ]
[ { "path": "ansible/roles/yarn/tasks/main.yml", "content": "---\n# tasks file for yarn\n- name: check if yarn is installed\n ansible.builtin.shell: bash -lc \"yarn -v\"\n register: check_yarn\n changed_when: no\n ignore_errors: yes\n become: no\n\n- name: install yarn\n shell: npm install --global yarn...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 458, "all_permissive": false }
ansible_role
rylea105/SeniorProject_Script
d0cf250d88cef49fb56dd68625ad116a0f2aa343
0
ansible/roles/initial_ec2
7,775
[ "no_license" ]
[ { "path": "ansible/roles/initial_ec2/tasks/create_ec2_instance.yml", "content": " - name: Create Instance\n ec2:\n region: ap-southeast-1\n key_name: webServer\n instance_type: t2.micro\n image: ami-d2fa88ae\n wait: yes\n group: webServer\n count: 1\n...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1349, "all_permissive": false }
ansible_role
rylea105/SeniorProject_Script
d0cf250d88cef49fb56dd68625ad116a0f2aa343
0
ansible/roles/install_nginx
7,775
[ "no_license" ]
[ { "path": "ansible/roles/install_nginx/tasks/main.yml", "content": " - name: Install epel-release\n yum:\n name: epel-release\n state: latest\n become: yes\n\n - name: Install Nginx\n yum:\n name: nginx\n state: latest\n become: yes\n\n - name: Install Git\n yum:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 376, "all_permissive": false }
ansible_role
vittico/ansible-playbooks
421387b81dd5851fde567f44c3c0c83cd4fdc3a3
0
ubuntu-debian/000-init-debian-ubuntu-for-ansible/roles/init-debian-ubuntu
7,775
[ "no_license" ]
[ { "path": "ubuntu-debian/000-init-debian-ubuntu-for-ansible/roles/init-debian-ubuntu/tasks/main.yml", "content": "---\n- name: install python 2 and aptitude on all Ubuntu servers\n raw: test -e /usr/bin/python || (apt -y update && apt install -y aptitude python-all)\n become: true\n become_method: sudo\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 440, "all_permissive": false }
ansible_role
kadotami/webauthn
f3c66fa6dea0078416627866345b14db67078d3a
0
ansible-playbook/roles/app.nginx
7,775
[ "no_license" ]
[ { "path": "ansible-playbook/roles/app.nginx/tasks/main.yml", "content": "---\n- name: make directry\n file:\n path: \"{{ item }}\"\n state: directory\n owner: \"nginx\"\n group: \"nginx\"\n with_items:\n - '/etc/nginx/cert'\n - '/var/log/nginx'\n\n\n- name: copy nginx files\n template: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3821, "all_permissive": false }
ansible_role
kadotami/webauthn
f3c66fa6dea0078416627866345b14db67078d3a
0
ansible-playbook/roles/app.php-fpm
7,775
[ "no_license" ]
[ { "path": "ansible-playbook/roles/app.php-fpm/tasks/main.yml", "content": "---\n- name: copy conf\n template: src=\"{{ item.src }}\" dest=\"{{ item.dest }}\"\n with_items:\n - { src: \"www.conf\", dest: \"/etc/php-fpm.d/www.conf\" }\n\n# 本番ではやっちゃだめ\n- name: change permission for session\n command: chm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 304, "all_permissive": false }
ansible_role
kadotami/webauthn
f3c66fa6dea0078416627866345b14db67078d3a
0
ansible-playbook/roles/app.yum_packages
7,775
[ "no_license" ]
[ { "path": "ansible-playbook/roles/app.yum_packages/tasks/main.yml", "content": "---\n- name: add yum repository\n yum: name=\"{{ item }}\" state=latest\n with_items:\n - epel-release\n - http://rpms.famillecollet.com/enterprise/remi-release-7.rpm\n\n- name: nodejs repo\n shell: \"curl --silent --lo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 597, "all_permissive": false }
ansible_role
klementc/ACI-project
3856224b49ad04b825e6ea1e24871abed990cc47
0
ansible/roles/docker-setup
7,775
[ "no_license" ]
[ { "path": "ansible/roles/docker-setup/tasks/main.yml", "content": "---\n - name: Install aptitude using apt\n apt: name=aptitude state=latest update_cache=yes force_apt_get=yes\n\n - name: Add Docker GPG key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1387, "all_permissive": false }
ansible_role
klementc/ACI-project
3856224b49ad04b825e6ea1e24871abed990cc47
0
ansible/roles/iptables-rules
7,775
[ "no_license" ]
[ { "path": "ansible/roles/iptables-rules/tasks/main.yml", "content": "---\n - name: IP4 Forward\n lineinfile:\n state: present\n line: \"net.ipv4.ip_forward=1\"\n path: /etc/sysctl.conf\n\n - name: IP4 Forward set\n sysctl:\n name: net.ipv4.ip_forward\n value: '1'\n stat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 871, "all_permissive": false }
ansible_role
klementc/ACI-project
3856224b49ad04b825e6ea1e24871abed990cc47
0
ansible/roles/network-config
7,775
[ "no_license" ]
[ { "path": "ansible/roles/network-config/tasks/main.yml", "content": "---\n- name: Installing packages\n package:\n update_cache: true\n name:\n - hostapd\n - dnsmasq\n - dhcpd\n - iptables-persistent\n - quagga\n - sndfile-programs\n state: present\n\n- name: Installi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2503, "all_permissive": false }
ansible_role
klementc/ACI-project
3856224b49ad04b825e6ea1e24871abed990cc47
0
ansible/roles/user-setup
7,775
[ "no_license" ]
[ { "path": "ansible/roles/user-setup/tasks/main.yml", "content": "---\n - name: Set a new password for the default \"pi\" account\n become: yes\n user:\n name: \"pi\"\n password: \"!\"\n\n - name: Create aci user\n become: yes\n user:\n name: \"aci\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 556, "all_permissive": false }
ansible_role
sridevi2009/roles-ansible-prac
070dc1b33b3cde28512927206e0ad277355348db
0
roles/cart
7,775
[ "no_license" ]
[ { "path": "roles/cart/tasks/main.yaml", "content": "- name: app setup\n ansible.builtin.import_role:\n name: common\n tasks_from: app-setup\n\n- name: install nodejs\n ansible.builtin.import_role:\n name: common\n tasks_from: nodejs \n\n- name: start and enable catalogue\n ansible.builtin.im...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 301, "all_permissive": false }
ansible_role
sridevi2009/roles-ansible-prac
070dc1b33b3cde28512927206e0ad277355348db
0
roles/common
7,775
[ "no_license" ]
[ { "path": "roles/common/tasks/golang.yaml", "content": "- name: install golang\n ansible.builtin.command: dnf install golang -y\n\n- name: Install dependencies\n ansible.builtin.shell: go mod init dispatch ; go get ; go build\n args:\n chdir: /app \n", "license_type": "no_license", "detecte...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3348, "all_permissive": false }
ansible_role
sridevi2009/roles-ansible-prac
070dc1b33b3cde28512927206e0ad277355348db
0
roles/dispatch
7,775
[ "no_license" ]
[ { "path": "roles/dispatch/tasks/main.yaml", "content": "- name: app setup\n ansible.builtin.import_role:\n name: common\n tasks_from: app-setup\n\n- name: install golang\n ansible.builtin.import_role:\n name: common\n tasks_from: golang\n\n- name: start and enable catalogue\n ansible.builtin....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 299, "all_permissive": false }
ansible_role
sridevi2009/roles-ansible-prac
070dc1b33b3cde28512927206e0ad277355348db
0
roles/payment
7,775
[ "no_license" ]
[ { "path": "roles/payment/tasks/main.yaml", "content": "- name: app setup\n ansible.builtin.import_role:\n name: common\n tasks_from: app-setup\n\n- name: install python\n ansible.builtin.import_role:\n name: common\n tasks_from: python \n\n- name: start and enable catalogue\n ansible.builtin....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 300, "all_permissive": false }
ansible_role
sridevi2009/roles-ansible-prac
070dc1b33b3cde28512927206e0ad277355348db
0
roles/shipping
7,775
[ "no_license" ]
[ { "path": "roles/shipping/tasks/main.yaml", "content": "- name: app setup\n ansible.builtin.import_role:\n name: common\n tasks_from: app-setup\n\n- name: install maven\n ansible.builtin.import_role:\n name: common\n tasks_from: java \n\n- name: mysql setup\n ansible.builtin.import_role:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 395, "all_permissive": false }
ansible_role
sridevi2009/roles-ansible-prac
070dc1b33b3cde28512927206e0ad277355348db
0
roles/user
7,775
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yaml", "content": "- name: app setup\n ansible.builtin.import_role:\n name: common\n tasks_from: app-setup\n\n- name: install nodejs\n ansible.builtin.import_role:\n name: common\n tasks_from: nodejs \n\n- name: mongodb setup\n ansible.builtin.import_role:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 402, "all_permissive": false }
ansible_role
Robo-Project/rpa_dashboard_rework
e99194a653f6ff95e561bfbb249c2a592042cbb6
0
roles/backend
7,775
[ "no_license" ]
[ { "path": "roles/backend/tasks/main.yml", "content": "---\n- name: Create jenkin-api-token\n file: \n path: jenkins-api-token\n state: touch\n- name: Start backend\n docker_container:\n name: \"{{ backend_cont_name }}\"\n image: roboteam/jenkins_service\n privileged: yes\n pull: yes\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 397, "all_permissive": false }
ansible_role
Robo-Project/rpa_dashboard_rework
e99194a653f6ff95e561bfbb249c2a592042cbb6
0
roles/common
7,775
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Generate ssh-certificates\n shell: sh create_certs.sh \n args:\n chdir: certs\n creates: robo.crt\n- name: Create env-file for docker containers\n template:\n src: .env\n dest: docker.env\n mode: '0400'", "license_type":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 390, "all_permissive": false }
ansible_role
Robo-Project/rpa_dashboard_rework
e99194a653f6ff95e561bfbb249c2a592042cbb6
0
roles/grafana
7,775
[ "no_license" ]
[ { "path": "roles/grafana/tasks/main.yml", "content": "---\n- name: Start grafana\n docker_container:\n name: \"{{ grafana_cont_name }}\"\n image: roboteam/rpa_dashboard_grafana\n pull: yes\n network_mode: host\n restart_policy: unless-stopped \n volumes:\n - \"{{ grafana_volume_name ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 323, "all_permissive": false }
ansible_role
Robo-Project/rpa_dashboard_rework
e99194a653f6ff95e561bfbb249c2a592042cbb6
0
roles/jenkins
7,775
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/main.yml", "content": "---\n- name: Start docker in docker\n docker_container:\n name: \"{{ dind_cont_name }}\"\n image: docker:19-dind\n privileged: yes\n network_mode: host\n volumes:\n - jenkins-docker-certs:/certs/client\n - jenkins-data:/var/jenk...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 823, "all_permissive": false }
ansible_role
Robo-Project/rpa_dashboard_rework
e99194a653f6ff95e561bfbb249c2a592042cbb6
0
roles/nginx
7,775
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Create nginx config file\n template:\n src: config\n dest: nginx.conf\n- name: Start nginx\n docker_container:\n name: \"{{ nginx_cont_name }}\"\n image: nginx:1.17.9-alpine\n privileged: yes\n network_mode: host\n volum...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 532, "all_permissive": false }
ansible_role
Robo-Project/rpa_dashboard_rework
e99194a653f6ff95e561bfbb249c2a592042cbb6
0
roles/postgres
7,775
[ "no_license" ]
[ { "path": "roles/postgres/tasks/main.yml", "content": "---\n- name: Start postgres\n docker_container:\n name: \"{{ postgres_cont_name }}\"\n image: postgres:12.1-alpine\n privileged: yes\n network_mode: host\n restart_policy: unless-stopped\n env:\n TZ: Europe/Helsinki\n PGTZ: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 388, "all_permissive": false }
ansible_role
tknr/benchmark_vagrant_apache_httpd
cc464ba866fa62d45f8d123910c2c21290027603
0
roles/apache
7,782
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n- name: install apache httpd\n yum: name={{ item }} state=latest\n with_items:\n - httpd\n\n- name: apache httpd start\n service: name=httpd state=started enabled=yes\n\n \n", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 174, "all_permissive": false }
ansible_role
tknr/benchmark_vagrant_apache_httpd
cc464ba866fa62d45f8d123910c2c21290027603
0
roles/demo
7,782
[ "no_license" ]
[ { "path": "roles/demo/tasks/main.yml", "content": "---\n- name: copy demo static page\n copy: src=../templates/index.html dest=/var/www/html/\n\n- name: copy demo php page\n copy: src=../templates/phpinfo.php dest=/var/www/html/\n\n\n", "license_type": "no_license", "detected_licenses": [], "s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 177, "all_permissive": false }
ansible_role
tknr/benchmark_vagrant_apache_httpd
cc464ba866fa62d45f8d123910c2c21290027603
0
roles/php
7,782
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n- name: install php\n yum: name={{ item }} state=latest enablerepo=remi,remi-php71\n with_items:\n - php\n - php-devel\n - php-fpm\n - php-mbstring\n - php-pdo\n - php-mcrypt\n - php-mysqlnd\n - php-opcache\n - php-xml\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 515, "all_permissive": false }
ansible_role
tknr/benchmark_vagrant_apache_httpd
cc464ba866fa62d45f8d123910c2c21290027603
0
roles/repo
7,782
[ "no_license" ]
[ { "path": "roles/repo/tasks/main.yml", "content": "---\n- name: Set timezone\n shell: timedatectl set-timezone Asia/Tokyo\n\n- name: Set fastestmirror filter\n lineinfile: >\n dest=/etc/yum/pluginconf.d/fastestmirror.conf\n state=present\n regexp='^include_only'\n line='include_only=.jp'\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 604, "all_permissive": false }
ansible_role
picard2104/DevOps_Kit
0ca66facd8db10faf560cd28ae1541dc10346daa
0
Docker/task18/roles/common
7,782
[ "no_license" ]
[ { "path": "Docker/task18/roles/common/tasks/main.yml", "content": "---\n# устаовка питона на амазон линукс\n- name: Install Python (Amazon Linux)\n raw: sudo yum install -y python3\n when: ansible_os_family == \"RedHat\"\n\n# установка питона на убунту\n- name: Install Python (Ubuntu)\n raw: sudo apt upd...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 465, "all_permissive": false }
ansible_role
picard2104/DevOps_Kit
0ca66facd8db10faf560cd28ae1541dc10346daa
0
Docker/task18/roles/deploy
7,782
[ "no_license" ]
[ { "path": "Docker/task18/roles/deploy/tasks/main.yml", "content": "---\n- name: Клонирование репозитория\n git:\n repo: \"https://github.com/picard2104/DevOps_Kit.git\"\n dest: /opt/app\n version: main\n force: yes\n update: yes\n recursive: yes\n\n- name: Создание целевой директории\n f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 853, "all_permissive": false }
ansible_role
picard2104/DevOps_Kit
0ca66facd8db10faf560cd28ae1541dc10346daa
0
Docker/task18/roles/docker
7,782
[ "no_license" ]
[ { "path": "Docker/task18/roles/docker/tasks/main.yml", "content": "---\n# убунту\n- name: Install Docker (Ubuntu)\n block:\n - name: Add Docker GPG key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n - name: Add Docker repository\n apt_repos...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1101, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/install-python
7,782
[ "no_license" ]
[ { "path": "administration/roles/install-python/tasks/main.yml", "content": "---\n- name: Install python 2\n raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal) || yum install -y python\n register: script\n changed_when: script.rc == \"changed\"\n...\n", "license_type": "n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 199, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/manage-beats
7,782
[ "no_license" ]
[ { "path": "administration/roles/manage-beats/handlers/main.yml", "content": "---\n- name: Restart ssh Debian Based\n service: name=filebeat state=restarted\n listen: \"restart filebeat\"\n when: (ansible_os_family == \"Debian\") or (ansible_os_family == \"Ubuntu\")\n\n- name: Restart ssh CentOS Based\n ...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 11766, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/manage-chrony
7,782
[ "no_license" ]
[ { "path": "administration/roles/manage-chrony/tasks/main.yml", "content": "---\n- name: Grab Facts\n setup: gather_subset='all'\n\n- include_vars: \"{{ item }}\"\n with_first_found:\n - \"{{ ansible_distribution | lower }}-{{ ansible_distribution_major_version | lower }}\"\n - \"{{ ansible_distributio...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 2939, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/manage-hostnames
7,782
[ "no_license" ]
[ { "path": "administration/roles/manage-hostnames/tasks/main.yml", "content": "---\n- name: Valuable configs\n setup: gather_subset='network'\n\n- name: Modify \"{{ hosts_file }}\"\n lineinfile: dest=\"{{ hosts_file }}\"\n regexp=\"{{ item.ip }}.*\"\n line=\"{{ item.ip }}\\t{{ ite...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 749, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/manage-iptables
7,782
[ "no_license" ]
[ { "path": "administration/roles/manage-iptables/tasks/main.yml", "content": "---\n- name: Grab Facts\n setup: gather_subset='all'\n\n- name: Include \"{{ ansible_os_family }}\"\n include: \"{{ ansible_os_family }}.yml\"\n...\n", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 10109, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/manage-network-configuration
7,782
[ "no_license" ]
[ { "path": "administration/roles/manage-network-configuration/templates/redhat-network-base-cfg.j2", "content": "TYPE=\"Ethernet\"\nBOOTPROTO=\"static\"\nIPADDR=\"{{ primary_ip }}\"\nNETMASK=\"{{ primary_netmask }}\"\nGATEWAY=\"{{ gateway }}\"\nDNS1=\"{{ primary_dns1 }}\"\nDNS2=\"{{ primary_dns2 }}\"\nNM_CON...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1827, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/manage-packages
7,782
[ "no_license" ]
[ { "path": "administration/roles/manage-packages/tasks/RedHat.yml", "content": "---\n- name: Install the libselinux-python package\n yum:\n name: libselinux-python\n state: latest\n\n- name: YUM - Update all packages\n yum:\n name: \"*\"\n when: UPGRADE_DIST_FLAG == True and not UPDATE_REPO == Tr...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2750, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/manage-saltstack-deployment
7,782
[ "no_license" ]
[ { "path": "administration/roles/manage-saltstack-deployment/defaults/main.yml", "content": "# template file - main.yml\n---\nSALT_INSTALL_FLAG: False\nSALT_MINION_FLAG: True\nSALT_MASTER_FLAG: False\nSALT_CONFIGURE_FLAG: True\nSALT_MINION_CONFIG: \"salt-minion.j2\"\nSALT_MASTER_CONFIG: \"salt-master.j2\"\nS...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 4234, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/manage-ssh-keys
7,782
[ "no_license" ]
[ { "path": "administration/roles/manage-ssh-keys/defaults/main.yml", "content": "---\n# defaults vars file for manage-ssh-keys\ndefault_state: \"present\"\nexec_user: \"{{ ansible_user | default('{{ ansible_user_id }}') }}\"\ncustom_user:\nexec_user_keys:\n - file: \"~/.ssh/id_rsa.pub\"\n state: \"presen...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1275, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/manage-ssh-known_hosts
7,782
[ "no_license" ]
[ { "path": "administration/roles/manage-ssh-known_hosts/defaults/main.yml", "content": "# template file - main.yml\nmanaged_hosts: \"{{ groups.all }}\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 60 }, { "path": "administration/roles/manage-ssh-known_hosts/tasks...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 324, "all_permissive": false }
ansible_role
adampav/Ansible
5125c356fc66e929590313a997bb1c199d58e775
2
administration/roles/manage-sshd-configuration
7,782
[ "no_license" ]
[ { "path": "administration/roles/manage-sshd-configuration/defaults/main.yml", "content": "---\nprivileged_host:\n - addr: \"{{ exempt_addr }}\"\n id: 1\n state: \"present\"\n...", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 }, { "path": "administration/...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1426, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
apache_install/roles/apache_delete
7,782
[ "no_license" ]
[ { "path": "apache_install/roles/apache_delete/tasks/delete.yml", "content": " - name: Stop Httpd Service In RedHat Client\n shell: /etc/init.d/httpd stop\n when: ansible_os_family == \"RedHat\" and ansible_distribution_version|int >=6\n - name: Delete Boot Start In RedHat Client\n shell: chkconfi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 845, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
complete_testing/roles/complete_testing_install
7,782
[ "no_license" ]
[ { "path": "complete_testing/roles/complete_testing_install/templates/complete_testing.sh", "content": "#!/bin/bash\ntime=`date +%Y%m%d%H%M`\n#create complete testing temp dir\nmkdir -p {{ complete_testing_temp_dir }} {{ complete_testing_dir }}\n#copy tpcc test result\ncd {{ tpcc_dir }} \n`which cp` -a `ls -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3871, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
complete_testing/roles/mysql_delete
7,782
[ "no_license" ]
[ { "path": "complete_testing/roles/mysql_delete/tasks/delete.yml", "content": " - name: Stop Mysql Service\n shell: /etc/init.d/mysqld stop\n ignore_errors: yes\n when: ansible_os_family == \"RedHat\" and ansible_distribution_version|int >=6\n - name: Delete Mysql Boot Start Script\n shell: chk...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 919, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
complete_testing/roles/mysql_tpcc_delete
7,782
[ "no_license" ]
[ { "path": "complete_testing/roles/mysql_tpcc_delete/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Delete Mysql Tpcc\n license: MIT\n min_ansible_version: 1.6\n platforms:\n - name: CentOS\n versions:\n - 6\n categories:\n - Test\ndependencies: []\n", "license_typ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 629, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
complete_testing/roles/sysbench_delete
7,782
[ "no_license" ]
[ { "path": "complete_testing/roles/sysbench_delete/vars/main.yml", "content": "sysbench_dir: /tmp/sysbench_log\ncpu_max_prime: 20000\nnum_threads: 64\nmutex_loops: 5000\nmutex_locks: 1000000\nmutex_num: 2048\nmemory_total_size: 8G\nmemory_block_size: 8K\n\n", "license_type": "no_license", "detected_l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 521, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
complete_testing/roles/sysbench_install
7,782
[ "no_license" ]
[ { "path": "complete_testing/roles/sysbench_install/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Install Sysbench\n license: MIT\n min_ansible_version: 1.6\n platforms:\n - name: CentOS\n versions:\n - 6\n categories:\n - Test\ndependencies: []\n", "license_type"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3041, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
fio_install/roles/fio_install
7,782
[ "no_license" ]
[ { "path": "fio_install/roles/fio_install/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Install Fio\n license: MIT\n min_ansible_version: 1.6\n platforms:\n - name: CentOS\n versions:\n - 6\n categories:\n - Test\ndependencies: []\n", "license_type": "no_license",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3377, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
git_install_2.0.0/roles/git_delete
7,782
[ "no_license" ]
[ { "path": "git_install_2.0.0/roles/git_delete/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Delete Git\n license: MIT\n min_ansible_version: 1.6\n platforms:\n - name: CentOS\n versions:\n - 6\n categories:\n - Service\ndependencies: []\n", "license_type": "no_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1082, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
git_install_2.0.0/roles/git_install
7,782
[ "no_license" ]
[ { "path": "git_install_2.0.0/roles/git_install/tasks/install.yml", "content": " - name: Copy Git Software To Redhat Client\n copy: src=git-{{ git_version }}.tar.gz dest=/tmp/git-{{ git_version }}.tar.gz owner=root group=root\n when: ansible_os_family == \"RedHat\" and ansible_distribution_version|int...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1638, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
lamp_install/roles/apache_install
7,782
[ "no_license" ]
[ { "path": "lamp_install/roles/apache_install/tasks/install.yml", "content": " - name: Create Lib Install Dir\n file: dest=/usr/local/lib state=directory\n when: ansible_os_family == \"RedHat\" and ansible_distribution_version|int >=6\n - name: Check Apache Iconv In Redhat Client\n shell: find / -...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 6559, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
lamp_install/roles/mysql_install
7,782
[ "no_license" ]
[ { "path": "lamp_install/roles/mysql_install/templates/install_mysql.sh", "content": "#!/bin/bash\nmv /tmp/my.cnf {{ mysql_datadir }}/my.cnf\nchown -R {{ mysql_user }}:{{ mysql_user }} {{ mysql_datadir }} {{ mysql_basedir }}\n###init mysql db###\"\n{{ mysql_basedir }}/scripts/mysql_install_db --defaults-file...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1881, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
lamp_install/roles/pcre_install
7,782
[ "no_license" ]
[ { "path": "lamp_install/roles/pcre_install/tasks/install.yml", "content": " - name: Uncompression Pcre Software In Redhat Client\n shell: tar zxf /tmp/pcre-{{ pcre_version }}.tar.gz -C /usr/local/\n when: ansible_os_family == \"RedHat\" and ansible_distribution_version|int >=6\n", "license_type":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 206, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
lamp_install/roles/php_delete
7,782
[ "no_license" ]
[ { "path": "lamp_install/roles/php_delete/templates/delete_php.sh", "content": "#!/bin/bash\n/etc/init.d/php-fpm stop\nchkconfig -del php-fpm\nif [ -e \"/lib64\" ];then\n\trm -rf /usr/lib64/libmcrypt.la\n\trm -rf /usr/lib64/libmcrypt.so\n\trm -rf /usr/lib64/libmcrypt.so.4\n\trm -rf /usr/lib64/libmcrypt.so.4....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1909, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
lamp_install/roles/php_install
7,782
[ "no_license" ]
[ { "path": "lamp_install/roles/php_install/tasks/copy.yml", "content": " - name: Copy Php Software To Redhat Client\n copy: src=php.tar.gz dest=/tmp/php.tar.gz owner=root group=root\n when: ansible_os_family == \"RedHat\" and ansible_distribution_version|int >=6\n - name: Uncompression Php Software T...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1253, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
lnmp_install/roles/nginx_delete
7,782
[ "no_license" ]
[ { "path": "lnmp_install/roles/nginx_delete/tasks/delete.yml", "content": " - name: stop nginx service\n shell: ps -ef|grep nginx|grep -v grep|awk '{print $2}'|xargs kill -9 >>/dev/null 2>&1\n ignore_errors: yes\n when: ansible_os_family == \"RedHat\" and ansible_distribution_version|int >=6\n - n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 893, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
lnmp_install/roles/nginx_install
7,782
[ "no_license" ]
[ { "path": "lnmp_install/roles/nginx_install/tasks/install.yml", "content": " - name: Create Nginx User In Redhat Client\n user: name={{ nginx_user }} state=present createhome=no shell=/sbin/nologin\n when: ansible_os_family == \"RedHat\" and ansible_distribution_version|int >=6\n - name: Create Ngin...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3108, "all_permissive": false }
ansible_role
dl528888/ansible-examples
690402b76e9b8baa61c23502c27310dfa56b4213
168
lnmp_install/roles/pcre_delete
7,782
[ "no_license" ]
[ { "path": "lnmp_install/roles/pcre_delete/tasks/delete.yml", "content": " - name: Delete Pcre\n shell: rm -rf /usr/local/pcre-{{ pcre_version }}\n when: ansible_os_family == \"RedHat\" and ansible_distribution_version|int >=6\n", "license_type": "no_license", "detected_licenses": [], "siz...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 156, "all_permissive": false }