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
temitos2/Oteemo-AnsibleRepo
89a8e307d29d2b1309b3c786f1c99436eca3b3d9
0
roles/apache
3,458
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n - name: Install apache, php, git package\n apt: name={{ item }} state=present\n with_items:\n - apache2\n - git\n - php\n\n - name: install Hello World PHP script\n copy: src=index.php dest=/var/www/html/index.php mode=0664\n\n",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 242, "all_permissive": false }
ansible_role
temitos2/Oteemo-AnsibleRepo
89a8e307d29d2b1309b3c786f1c99436eca3b3d9
0
roles/common
3,458
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n - name: patch all servers\n apt: update_cache=yes\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 59 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 59, "all_permissive": false }
ansible_role
temitos2/Oteemo-AnsibleRepo
89a8e307d29d2b1309b3c786f1c99436eca3b3d9
0
roles/mysql
3,458
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n - name: install package\n apt: name={{ item }} state=present\n with_items:\n - mariadb-server\n \n - name: Create database user\n mysql_user: user=oteemo password=<PASSWORD>! priv=*.*:ALL state=present\n\n - name: Create database\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 284, "all_permissive": false }
ansible_role
Scorpius86/ansible
2d0d46bf240b4cbc99686e2e7ed89c20166b3ced
0
roles/nfs
3,478
[ "no_license" ]
[ { "path": "roles/nfs/tasks/01-install.yaml", "content": "---\n######################################## Red Hat ########################################\n- name: Install epel-release (Red Hat)\n dnf:\n name: \"{{ epel_release_rpms }}\"\n state: present\n become: yes\n when: ansible_os_family == 'Red...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2838, "all_permissive": false }
ansible_role
snappyflow/ansible-role-apm-agent
d07b518c731d472abce3f1150b05ae90053afe9c
0
playbooks/roles/sfagent
3,478
[ "no_license" ]
[ { "path": "playbooks/roles/sfagent/tasks/uninstall.yml", "content": "---\n\n- name: check service file to stop service of sfagent\n stat:\n path: \"{{SERVICEFILE}}\"\n register: service_file\n\n- name: Stop sfagent service, if started\n ansible.builtin.service:\n name: sfagent\n state: stopped\n...
{ "task_files": 10, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 12, "total_bytes": 21735, "all_permissive": false }
ansible_role
poponuki/arakawa-infra-inventory
d4a14cabe78988571ac25858fd0d3aead77e1baf
1
roles/arakawa-api
3,478
[ "no_license" ]
[ { "path": "roles/arakawa-api/tasks/main.yml", "content": "- name: mkdir arakawa-api app dir\n file: path=/opt/arakawa-api/ state=directory owner=arakawa group=arakawa mode=0755\n\n- name: mkdir arakawa-api log dir\n file: path=/var/log/arakawa-api/ state=directory owner=arakawa group=arakawa mode=0755\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 387, "all_permissive": false }
ansible_role
poponuki/arakawa-infra-inventory
d4a14cabe78988571ac25858fd0d3aead77e1baf
1
roles/common
3,478
[ "no_license" ]
[ { "path": "roles/common/vars/main.yml", "content": "users:\n - { name: \"arakawa\", password: \"<PASSWORD>\", groups: \"\" }\n - { name: \"centos\", password: \"<PASSWORD>\", groups: \"wheel\" }\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 132 }, { "path": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 644, "all_permissive": false }
ansible_role
poponuki/arakawa-infra-inventory
d4a14cabe78988571ac25858fd0d3aead77e1baf
1
roles/java13
3,478
[ "no_license" ]
[ { "path": "roles/java13/tasks/main.yml", "content": "- name: download Oracle JDK 13\n get_url:\n url=https://download.java.net/java/GA/jdk13.0.1/cec27d702aa74d5a8630c65ae61e4305/9/GPL/openjdk-13.0.1_linux-x64_bin.tar.gz\n dest=/tmp/openjdk-13.0.1_linux-x64_bin.tar.gz\n validate_certs=no\n owner...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 768, "all_permissive": false }
ansible_role
poponuki/arakawa-infra-inventory
d4a14cabe78988571ac25858fd0d3aead77e1baf
1
roles/postgres
3,478
[ "no_license" ]
[ { "path": "roles/postgres/tasks/main.yml", "content": "- name: \"configure / Import PostgreSQL Repository\"\n yum:\n name: https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm\n state: latest\n update_cache: yes\n\n- name: \"Install PostgreSQL\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2054, "all_permissive": false }
ansible_role
poponuki/arakawa-infra-inventory
d4a14cabe78988571ac25858fd0d3aead77e1baf
1
roles/sshd
3,478
[ "no_license" ]
[ { "path": "roles/sshd/tasks/main.yml", "content": "- name: configure / Disable root login\n lineinfile:\n dest: /etc/ssh/sshd_config\n regexp: \"^PermitRootLogin\"\n insertafter: \"^#PermitRootLogin\"\n line: \"PermitRootLogin no\"\n\n- name: configure / Disable password authenication\n lineinfile...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 876, "all_permissive": false }
ansible_role
poponuki/arakawa-infra-inventory
d4a14cabe78988571ac25858fd0d3aead77e1baf
1
roles/sudo
3,478
[ "no_license" ]
[ { "path": "roles/sudo/tasks/main.yml", "content": "- name: configure / sudo nopasswd\n lineinfile:\n dest: /etc/sudoers\n regexp: \"^#%wheel ALL=(ALL) NOPASSWD: ALL\"\n line: \"%wheel ALL=(ALL) NOPASSWD: ALL\"", "license_type": "no_license", "detected_licenses": [], "size_by...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 171, "all_permissive": false }
ansible_role
shreyansh2953/ansible
fee423003a59aaa57258c4debc1911e331df49a0
0
playbook/roles/jenkins
3,478
[ "no_license" ]
[ { "path": "playbook/roles/jenkins/tasks/main.yml", "content": "---\n - name: doing update\n apt:\n update_cache: yes\n \n - name: Install some packages\n action: apt name={{ item }} state=present\n with_items: \"{{ pkg }}\"\n\n - name: adding jenkins key to system\n apt_key: \n url: https:...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 953, "all_permissive": false }
ansible_role
OpenTeleRehab/therapist-web-app
9a1f37d535347722cdb08917944a0af0358c9288
3
config/ansible/roles/build
3,478
[ "no_license" ]
[ { "path": "config/ansible/roles/build/tasks/main.yml", "content": "---\n\n- name: Create build file\n file:\n path: '/var/tmp/{{ project_id }}/{{ item }}'\n state: touch\n mode: 0755\n loop:\n - 'latest-{{ project_name }}-build'\n - 'demo-{{ project_name }}-build'\n - 'test-{{ project_na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 282, "all_permissive": false }
ansible_role
dmatthew/magento2-ansible
69bb862c0eef8211ea6f5f1cf1dc107949162400
2
ansible/roles/composer
3,478
[ "no_license" ]
[ { "path": "ansible/roles/composer/tasks/main.yml", "content": "---\n- name: Install Composer\n shell: curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer\n args:\n creates: /usr/local/bin/composer\n", "license_type": "no_license", "detected_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 189, "all_permissive": false }
ansible_role
dmatthew/magento2-ansible
69bb862c0eef8211ea6f5f1cf1dc107949162400
2
ansible/roles/nginx
3,478
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "---\n- name: Install Nginx\n become: yes\n apt: pkg=nginx state=latest\n\n- name: Set up new default nginx site\n become: yes\n template: src={{ nginx.servername }}.tpl dest=/etc/nginx/sites-available/{{ nginx.servername }}\n notify: restart n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 791, "all_permissive": false }
ansible_role
dmatthew/magento2-ansible
69bb862c0eef8211ea6f5f1cf1dc107949162400
2
ansible/roles/php
3,478
[ "no_license" ]
[ { "path": "ansible/roles/php/handlers/main.yml", "content": "---\n- name: restart php{{ php.version }}-fpm\n service: name=php{{ php.version }}-fpm enabled=yes state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 114 }, { "path": "ansible/roles/php/de...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 2865, "all_permissive": false }
ansible_role
dmatthew/magento2-ansible
69bb862c0eef8211ea6f5f1cf1dc107949162400
2
ansible/roles/server
3,478
[ "no_license" ]
[ { "path": "ansible/roles/server/tasks/main.yml", "content": "---\n- name: Update apt-cache\n become: yes\n apt: update_cache=yes\n\n- name: Install System Packages\n become: yes\n apt: pkg={{ item }} state=latest\n with_items:\n - curl\n - python-software-properties\n\n- name: Install Extra Packa...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 590, "all_permissive": false }
ansible_role
vrushalishinde21/webdeploy
4dff369ffda2616dbdb8a54dfce65736b1f8be28
0
ansible/roles/test
3,478
[ "no_license" ]
[ { "path": "ansible/roles/test/tasks/main.yml", "content": "---\n- name: Create Directory\n file: path=/tmp/test mode=0755 state=directory\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 80 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 80, "all_permissive": false }
ansible_role
vrushalishinde21/webdeploy
4dff369ffda2616dbdb8a54dfce65736b1f8be28
0
ansible/roles/test2
3,478
[ "no_license" ]
[ { "path": "ansible/roles/test2/tasks/main.yml", "content": "---\n- name: Create Director\n file: path=/tmp/test5 state=directory recurse=yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 80 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 80, "all_permissive": false }
ansible_role
AlexeyBabkinD/sf_ansible
b0fd47c79fb1fe95428db00190c8fda15cee69d8
0
B6.6.1/roles/vsftpd_sf
3,478
[ "no_license" ]
[ { "path": "B6.6.1/roles/vsftpd_sf/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Test role vsftpd\n company: SkillFactory\n license: Full Free\n min_ansible_version: 2.1\n platforms:\n - name: Ubuntu\n versions:\n - 20\n galaxy_tags: []\ndependencies: []\n", "lice...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 1440, "all_permissive": false }
ansible_role
AlexeyBabkinD/sf_ansible
b0fd47c79fb1fe95428db00190c8fda15cee69d8
0
B6.9.2/roles/dnsmasq_sf
3,478
[ "no_license" ]
[ { "path": "B6.9.2/roles/dnsmasq_sf/tasks/configure_dnsmasq.yml", "content": "---\n- name: Set port\n lineinfile:\n path: {{ conf_file }}\n regexp: '^port='\n line: port=53\n become: yes\n\n- name: Disable forward plain names\n lineinfile:\n path: {{ conf_file }}\n regexp: '^domain-needed'\...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 2170, "all_permissive": false }
ansible_role
AlexeyBabkinD/sf_ansible
b0fd47c79fb1fe95428db00190c8fda15cee69d8
0
B6.9.2/roles/nginx-php_sf
3,478
[ "no_license" ]
[ { "path": "B6.9.2/roles/nginx-php_sf/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - nginx-php_sf\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "B6.9.2/roles/nginx-php_sf/tasks/install_packages.yml", ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 1153, "all_permissive": false }
ansible_role
AlexeyBabkinD/sf_ansible
b0fd47c79fb1fe95428db00190c8fda15cee69d8
0
practical-work/roles/nginx
3,478
[ "no_license" ]
[ { "path": "practical-work/roles/nginx/tasks/copy_site.yml", "content": "---\n- name: Copy site config\n template:\n src: 'default_site.j2'\n dest: '/etc/nginx/sites-available/default'\n become: yes\n\n- name: Copy index.php\n copy:\n src: 'index.php'\n dest: '/var/www/html/index.php'\n becom...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 702, "all_permissive": false }
ansible_role
AlexeyBabkinD/sf_ansible
b0fd47c79fb1fe95428db00190c8fda15cee69d8
0
practical-work/roles/php
3,478
[ "no_license" ]
[ { "path": "practical-work/roles/php/defaults/main.yml", "content": "---\n# php config\nconf_file: /etc/php/7.4/fpm/pool.d/www.conf\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 61 }, { "path": "practical-work/roles/php/tasks/install_php.yml", "content": "--...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 637, "all_permissive": false }
ansible_role
AlexeyBabkinD/sf_ansible
b0fd47c79fb1fe95428db00190c8fda15cee69d8
0
practical-work/roles/users
3,478
[ "no_license" ]
[ { "path": "practical-work/roles/users/tasks/create_user.yml", "content": "---\n- name: Create Users\n user:\n name: user\n shell: /bin/bash\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 83 }, { "path": "practical-work/roles/users/tasks/mai...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 589, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/adminer
3,478
[ "no_license" ]
[ { "path": "ansible/roles/adminer/templates/adminer.localhost.com.conf.j2", "content": "#{{ ansible_managed }}\r\nserver {\r\n listen 80;\r\n\r\n server_name adminer.localhost.com;\r\n\r\n root /var/www/adminer;\r\n\r\n error_log /var/log/nginx/adminer.localhost.com.error.log crit;\r\n\r\n loc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1063, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/bower
3,478
[ "no_license" ]
[ { "path": "ansible/roles/bower/tasks/main.yml", "content": "---\r\n- name: install bower\r\n command: npm install -g bower\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 61 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 61, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/capifony
3,478
[ "no_license" ]
[ { "path": "ansible/roles/capifony/tasks/main.yml", "content": "---\r\n- name: install capifony\r\n command: gem install capifony\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 64, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/common
3,478
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/ufw.yml", "content": "---\r\n- name: ufw install\r\n apt: name=ufw state=latest\r\n\r\n- name: ufw configure\r\n command: ufw allow {{ item }}\r\n with_items:\r\n - 22 #ssh\r\n - 80 #http\r\n - 443 #https\r\n\r\n- name: ufw configure samba\r\n command: ufw ...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1453, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/grunt
3,478
[ "no_license" ]
[ { "path": "ansible/roles/grunt/tasks/main.yml", "content": "---\r\n- name: install grunt-cli\r\n command: npm install -g grunt-cli\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 69 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 69, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/mysql
3,478
[ "no_license" ]
[ { "path": "ansible/roles/mysql/tasks/database.yml", "content": "- name: mysql database\r\n mysql_db: name={{ item.value.database }} state=present\r\n with_dict: config.mysql", "license_type": "no_license", "detected_licenses": [], "size_bytes": 107 }, { "path": "ansible/roles/mysql/tas...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1334, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/nginx
3,478
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "---\r\n- name: install nginx\r\n apt: pkg=nginx state=latest\r\n notify:\r\n - nginx-restart\r\n\r\n- name: set default nginx conf\r\n template: src=nginx.conf.j2 dest=/etc/nginx/nginx.conf owner=root mode=0600\r\n notify:\r\n - nginx-res...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1151, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/nodejs
3,478
[ "no_license" ]
[ { "path": "ansible/roles/nodejs/tasks/main.yml", "content": "---\r\n- name: Make sure nodejs_version is set correctly.\r\n assert:\r\n that: nodejs_version in [ \"0.10\", \"0.12\", \"4.x\" ]\r\n\r\n- name: Add Nodesource apt key.\r\n apt_key:\r\n url: https://deb.nodesource.com/gpgkey/nodesource.gpg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 741, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/php
3,478
[ "no_license" ]
[ { "path": "ansible/roles/php/tasks/cli.yml", "content": "---\r\n- name: install php cli\r\n apt: pkg=php5-cli state=latest\r\n notify:\r\n - nginx-restart\r\n - php-fpm-restart\r\n\r\n- name: configure php cli\r\n template: src=php.ini.j2 dest=/etc/php5/cli/php.ini\r\n notify:\r\n - nginx-resta...
{ "task_files": 8, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 13, "total_bytes": 3762, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/samba
3,478
[ "no_license" ]
[ { "path": "ansible/roles/samba/tasks/main.yml", "content": "---\r\n- name: install samba\r\n apt: pkg=samba state=latest\r\n notify:\r\n - samba-restart\r\n\r\n- name: add samba config\r\n template: src=smb.conf.j2 dest=/etc/samba/smb.conf mode=0640\r\n notify:\r\n - samba-restart\r\n", "licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 274, "all_permissive": false }
ansible_role
marcojanssen/vagrant-ansible
8637cb85b93ffaff073ec1601db6b9d5099a997f
17
ansible/roles/sqlite
3,478
[ "no_license" ]
[ { "path": "ansible/roles/sqlite/tasks/main.yml", "content": "- name: install sqlite3\r\n apt: pkg=sqlite3 state=latest\r\n\r\n- name: install libsqlite3-dev\r\n apt: pkg=libsqlite3-dev state=latest", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 130, "all_permissive": false }
ansible_role
yakky/ansible-docs.italia.it
634ef01cec2c42e5fceff1e8213d96aa1cd1152b
0
roles/ansible
3,478
[ "no_license" ]
[ { "path": "roles/ansible/tasks/main.yml", "content": "- name: ansible postgres integration (python 2)\n apt: pkg=python-psycopg2 state=present update_cache=true install_recommends=no\n when: app == 1 and \"3\" not in ansible_python_interpreter\n tags:\n - setup\n\n- name: ansible postgres integration...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 416, "all_permissive": false }
ansible_role
yakky/ansible-docs.italia.it
634ef01cec2c42e5fceff1e8213d96aa1cd1152b
0
roles/app
3,478
[ "no_license" ]
[ { "path": "roles/app/handlers/main.yml", "content": "- name: restart supervisor\n service: name=supervisor state=restarted\n\n- name: update supervisor\n command: supervisorctl update\n\n- name: restart nginx\n service: name=nginx state=restarted\n\n- name: reload nginx\n service: name=nginx state=reloa...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 16756, "all_permissive": false }
ansible_role
yakky/ansible-docs.italia.it
634ef01cec2c42e5fceff1e8213d96aa1cd1152b
0
roles/certbot
3,478
[ "no_license" ]
[ { "path": "roles/certbot/tasks/main.yml", "content": "\n---\n- name: Certbot key\n apt_key: keyserver=keyserver.ubuntu.com id=7BF576066ADA65728FC7E70A8C47BE8E75BCA694 state=present\n when: worker ==1\n tags:\n - setup\n\n- name: Add Certbot repos\n apt_repository: repo='deb http://ppa.launchpad.net/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1372, "all_permissive": false }
ansible_role
yakky/ansible-docs.italia.it
634ef01cec2c42e5fceff1e8213d96aa1cd1152b
0
roles/docker
3,478
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Docker key\n apt_key: url=https://download.docker.com/linux/ubuntu/gpg state=present\n when: worker ==1\n tags:\n - setup\n\n- name: Add Docker repos\n apt_repository: repo='deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ ansi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1085, "all_permissive": false }
ansible_role
yakky/ansible-docs.italia.it
634ef01cec2c42e5fceff1e8213d96aa1cd1152b
0
roles/es
3,478
[ "no_license" ]
[ { "path": "roles/es/defaults/main.yml", "content": "es_legacy: 1\nes_version: 1.3.9\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "roles/es/tasks/main.yml", "content": "\n- name: java packages\n apt: pkg={{ item }} state=present update_cach...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1123, "all_permissive": false }
ansible_role
yakky/ansible-docs.italia.it
634ef01cec2c42e5fceff1e8213d96aa1cd1152b
0
roles/python
3,478
[ "no_license" ]
[ { "path": "roles/python/defaults/main.yml", "content": "python_version: 2.7\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 20 }, { "path": "roles/python/tasks/main.yml", "content": "\n- name: python packages\n apt: pkg={{ item }} state=present update_cache=...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 913, "all_permissive": false }
ansible_role
yakky/ansible-docs.italia.it
634ef01cec2c42e5fceff1e8213d96aa1cd1152b
0
roles/sql
3,478
[ "no_license" ]
[ { "path": "roles/sql/tasks/main.yml", "content": "\n- name: postgres key\n apt_key: url=https://www.postgresql.org/media/keys/ACCC4CF8.asc state=present\n when: sql == 1\n tags:\n - setup\n\n- name: Add Postgres repos\n apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ {{ ansible_di...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 625, "all_permissive": false }
ansible_role
yakky/ansible-docs.italia.it
634ef01cec2c42e5fceff1e8213d96aa1cd1152b
0
roles/web
3,478
[ "no_license" ]
[ { "path": "roles/web/tasks/main.yml", "content": "\n- name: install nginx\n apt: pkg=nginx-full state=present install_recommends=no\n when: http == 1\n tags:\n - setup", "license_type": "no_license", "detected_licenses": [], "size_bytes": 118 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 118, "all_permissive": false }
ansible_role
ppetrou/infra_server_kvm
aa767c25370731086436a73f96cd805e6ab2ce49
1
roles/infra_server_kvm_ansible_bootstrap
3,538
[ "no_license" ]
[ { "path": "roles/infra_server_kvm_ansible_bootstrap/templates/create-user.sh.j2", "content": "useradd {{ vm_ansible_user }}\n\necho \"{{ vm_ansible_user }} ALL=(ALL) NOPASSWD: ALL\" > /etc/sudoers.d/{{ vm_ansible_user }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 12...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 6559, "all_permissive": false }
ansible_role
ppetrou/infra_server_kvm
aa767c25370731086436a73f96cd805e6ab2ce49
1
roles/infra_server_kvm_cloud_create
3,538
[ "no_license" ]
[ { "path": "roles/infra_server_kvm_cloud_create/vars/main.yml", "content": "---\n# vars file for infra_server_kvm_cloud_create\n\n# Cloud Image Location\ncloud_image_loc: /lab/img\ncloud_image_path: \"{{ cloud_image_loc }}/{{ vm_cloud_image }}\"\n\n# Cloud Image default partition\ncloud_image_default_partiti...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 12, "total_bytes": 72849, "all_permissive": false }
ansible_role
ppetrou/infra_server_kvm
aa767c25370731086436a73f96cd805e6ab2ce49
1
roles/infra_server_kvm_fcos_create
3,538
[ "no_license" ]
[ { "path": "roles/infra_server_kvm_fcos_create/vars/main.yml", "content": "---\n# vars file for infra_server_kvm_fcos_create\n\n# Cloud Image Location\nvm_coreos_cloud_image_location: /home/ppetrou/IMG/qcow2\nvm_coreos_cloud_image_path: \"{{ vm_coreos_cloud_image_location }}/{{ vm_coreos_image }}\"\n\n# VM D...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 6883, "all_permissive": false }
ansible_role
ppetrou/infra_server_kvm
aa767c25370731086436a73f96cd805e6ab2ce49
1
roles/infra_server_kvm_ks_create
3,538
[ "no_license" ]
[ { "path": "roles/infra_server_kvm_ks_create/tasks/main.yml", "content": "---\n# tasks file for infra_server_kvm_ks_create\n\n# Create VM Directory\n- name: Create VM Directory\n file:\n path: \"{{ vm_dir }}\"\n state: directory\n mode: 0755\n\n# Create keys Directory\n- name: Create keys Directory...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 10343, "all_permissive": false }
ansible_role
ppetrou/infra_server_kvm
aa767c25370731086436a73f96cd805e6ab2ce49
1
roles/infra_server_kvm_net_create
3,538
[ "no_license" ]
[ { "path": "roles/infra_server_kvm_net_create/vars/main.yml", "content": "---\n# vars file for infra_server_kvm_net_create\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 49 }, { "path": "roles/infra_server_kvm_net_create/defaults/main.yml", "content": "---\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2497, "all_permissive": false }
ansible_role
ppetrou/infra_server_kvm
aa767c25370731086436a73f96cd805e6ab2ce49
1
roles/infra_server_kvm_noos_create
3,538
[ "no_license" ]
[ { "path": "roles/infra_server_kvm_noos_create/tasks/main.yml", "content": "---\n# tasks file for infra_server_kvm_noos_create\n\n- name: Add Storage Pool\n libvirt_storage_pool:\n uri: qemu:///system\n name: pool01\n path: /home/ppetrou/pool01\n state: absent\n\n# # Create VM Directory\n# - nam...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 22152, "all_permissive": false }
ansible_role
jester350/toolkit
3a242962c73338de55dec114ede6456ed017621a
0
roles/backup
3,538
[ "no_license" ]
[ { "path": "roles/backup/tasks/junos.yml", "content": "- name: ensuire netconf is running\r\n vars:\r\n ansible_connection: network_cli\r\n junos_netconf:\r\n\r\n- name: backup junos configuration\r\n vars:\r\n ansible_connection: netconf\r\n junipernetworks.junos.junos_config:\r\n backup: true\...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 774, "all_permissive": false }
ansible_role
jester350/toolkit
3a242962c73338de55dec114ede6456ed017621a
0
roles/facts
3,538
[ "no_license" ]
[ { "path": "roles/facts/tasks/junos.yml", "content": "---\r\n- name: gather juniper junos facts\r\n vars:\r\n ansible_connection: netconf\r\n junipernetworks.junos.facts:\r\n gather_subset: config\r\n gather_network_resources: \"{{ network_resource | default('all') }}\"\r\n", "license_type": "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 215, "all_permissive": false }
ansible_role
roman-k3i/ansible_lamp_stack
8650da2142edc8cbeca13cb2163715d13852ede5
0
roles/check-status-slave
3,538
[ "no_license" ]
[ { "path": "roles/check-status-slave/tasks/main.yml", "content": "---\n# tasks file for check-status-slave\n\n- name: get slave status\n shell: mysql -u root -p\"{{db_root_pass}}\" -e 'SHOW SLAVE STATUS \\G'\n register: status_slave\n\n- name: get status db\n shell: systemctl status mariadb\n register: d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 378, "all_permissive": false }
ansible_role
roman-k3i/ansible_lamp_stack
8650da2142edc8cbeca13cb2163715d13852ede5
0
roles/db_mysql
3,538
[ "no_license" ]
[ { "path": "roles/db_mysql/tasks/main.yml", "content": "---\n# tasks file for db_mysql\n- name: installing db\n yum:\n name:\n - mariadb\n - mariadb-server\n state: present\n\n- name: configuring SELinux to start mysql on any port\n seboolean:\n name: mysql_connect_any\n state: true\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1777, "all_permissive": false }
ansible_role
roman-k3i/ansible_lamp_stack
8650da2142edc8cbeca13cb2163715d13852ede5
0
roles/db_slave
3,538
[ "no_license" ]
[ { "path": "roles/db_slave/tasks/main.yml", "content": "---\n# tasks file for db_slave\n\n- name: install database\n yum:\n name:\n - mariadb\n - mariadb-server\n state: present\n\n- name: copy file\n copy:\n src: server.cnf\n dest: \"{{ path_to_conf_file }}\" \n\n- name: start and en...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1187, "all_permissive": false }
ansible_role
roman-k3i/ansible_lamp_stack
8650da2142edc8cbeca13cb2163715d13852ede5
0
roles/execute_mysql_script
3,538
[ "no_license" ]
[ { "path": "roles/execute_mysql_script/templates/main_script.sql.j2", "content": "UPDATE user SET password=PASSWORD('{{ db_root_pass }}') WHERE User='root';\nFLUSH PRIVILEGES;\nDELETE FROM mysql.user WHERE user = '';\nDROP DATABASE test;\nDROP DATABASE IF EXISTS {{ db_name }};\nCREATE DATABASE {{ db_name }};...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1831, "all_permissive": false }
ansible_role
roman-k3i/ansible_lamp_stack
8650da2142edc8cbeca13cb2163715d13852ede5
0
roles/web-server
3,538
[ "no_license" ]
[ { "path": "roles/web-server/tasks/allow_web_traffic.yml", "content": "---\n# task allow_http_traffic for web-server role\n\n- name: allow http traffic out\n firewalld:\n zone: public\n service: http\n permanent: yes\n state: enabled\n\n- name: allow https traffic out\n firewalld:\n zone: pu...
{ "task_files": 7, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 4623, "all_permissive": false }
ansible_role
bhinson/ansible-backups
d6a6f59f2e2bdaa370ae8379f69c0ace86d37b91
0
roles/backup_rhocs
3,538
[ "no_license" ]
[ { "path": "roles/backup_rhocs/tasks/main.yml", "content": "---\n## Playbook to backup to a mount point destination \n## existing persistent volumes in OpenShift from Gluster/RHOCS\n\n- name: Set directories with backup timestamp\n set_fact:\n ## Temporary file to put the list of Gluster volumes to backu...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2785, "all_permissive": false }
ansible_role
bhinson/ansible-backups
d6a6f59f2e2bdaa370ae8379f69c0ace86d37b91
0
roles/backup_server
3,538
[ "no_license" ]
[ { "path": "roles/backup_server/tasks/main.yml", "content": "---\n# Take LVM snapshot and perform rsync backup\n\n- name: Check destination is mounted\n mount:\n path: /mnt/backup\n src: /dev/backup/backup\n fstype: xfs\n state: mounted\n fstab: /tmp/fstab\n\n- name: Ensure backup folder exis...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1089, "all_permissive": false }
ansible_role
jamesfreeman959/satellite-insights-register
562f1272e46cafd52dc52ac671870b7fa6388745
0
roles/register-insights
3,538
[ "no_license" ]
[ { "path": "roles/register-insights/tasks/main.yml", "content": "---\n- name: Ensure insights package is installed\n yum:\n name: insights-client\n state: present\n\n- name: Perform the registration\n shell: \"insights-client --register\"\n", "license_type": "no_license", "detected_licenses":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 173, "all_permissive": false }
ansible_role
gpeterson2/Ansible-Example
c25babf41d240736bb02a3af15af842b8217c112
0
ansible/roles/clojure
3,538
[ "no_license" ]
[ { "path": "ansible/roles/clojure/tasks/main.yml", "content": "---\n\n# Lein\n\n- name: install Java\n package: name=openjdk-7-jre state=latest\n become: yes\n become_method: sudo\n\n- name: check if lein is already installed\n stat: path=/home/vagrant/.bin/lein\n register: lein\n\n- name: debug gitconf...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 914, "all_permissive": false }
ansible_role
gpeterson2/Ansible-Example
c25babf41d240736bb02a3af15af842b8217c112
0
ansible/roles/common
3,538
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n\n- name: install packages\n become: yes\n become_method: sudo\n apt: pkg={{item}} state=installed update_cache=yes\n with_items:\n - build-essential\n - git\n - tmux\n - vim\n", "license_type": "no_license", "detected...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 186, "all_permissive": false }
ansible_role
gpeterson2/Ansible-Example
c25babf41d240736bb02a3af15af842b8217c112
0
ansible/roles/elasticsearch
3,538
[ "no_license" ]
[ { "path": "ansible/roles/elasticsearch/tasks/main.yml", "content": "---\n\n- name: install Java\n package: name=openjdk-7-jre state=latest\n become: yes\n become_method: sudo\n\n- name: check if elasticsearch is already installed\n shell: 'dpkg --list | grep -qs elasticsearch'\n register: elasticsearch...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 665, "all_permissive": false }
ansible_role
gpeterson2/Ansible-Example
c25babf41d240736bb02a3af15af842b8217c112
0
ansible/roles/fsharp
3,538
[ "no_license" ]
[ { "path": "ansible/roles/fsharp/tasks/main.yml", "content": "---\n\n- name: install fsharp\n become: yes\n become_method: sudo\n apt: pkg={{item}} state=installed\n with_items:\n - mono-complete\n - fsharp\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 151...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 151, "all_permissive": false }
ansible_role
gpeterson2/Ansible-Example
c25babf41d240736bb02a3af15af842b8217c112
0
ansible/roles/mongo
3,538
[ "no_license" ]
[ { "path": "ansible/roles/mongo/tasks/main.yml", "content": "---\n\n# Specifically assumes apt\n\n- name: set mongo key\n become: yes\n become_method: sudo\n apt_key: >\n keyserver=keyserver.ubuntu.com\n id=7F0CEB10\n state=present\n\n- name: Add mongo repo\n become: yes\n become_method: sudo\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 484, "all_permissive": false }
ansible_role
gpeterson2/Ansible-Example
c25babf41d240736bb02a3af15af842b8217c112
0
ansible/roles/npm
3,538
[ "no_license" ]
[ { "path": "ansible/roles/npm/tasks/main.yml", "content": "---\n\n# TODO - apparently these are global, so there's probably a better\n# way of doing this.\n- set_fact:\n npm_package_path: '/home/vagrant/.npm-packages'\n bashrc_path: '/home/vagrant/.bashrc'\n npmrc_path: '/home/vagrant/.npmrc'\n\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1672, "all_permissive": false }
ansible_role
gpeterson2/Ansible-Example
c25babf41d240736bb02a3af15af842b8217c112
0
ansible/roles/postgresql
3,538
[ "no_license" ]
[ { "path": "ansible/roles/postgresql/tasks/main.yml", "content": "---\n\n# Sets up a PostgreSQL database\n\n- name: install postgres CentOS/Red Hat\n yum: name={{ item }} state=present\n with_items:\n - postgresql-server\n - postgresql-client\n - postgresql-contrib\n become: yes\n become_method...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1207, "all_permissive": false }
ansible_role
gpeterson2/Ansible-Example
c25babf41d240736bb02a3af15af842b8217c112
0
ansible/roles/python
3,538
[ "no_license" ]
[ { "path": "ansible/roles/python/tasks/main.yml", "content": "---\n\n# virtualenvwrapper might not be necessary for prod, but it is useful for\n# development.\n- name: install python packages\n become: yes\n become_method: sudo\n apt: pkg={{item}} state=installed update_cache=yes\n with_items:\n - pyt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 267, "all_permissive": false }
ansible_role
gpeterson2/Ansible-Example
c25babf41d240736bb02a3af15af842b8217c112
0
ansible/roles/settings
3,538
[ "no_license" ]
[ { "path": "ansible/roles/settings/tasks/main.yml", "content": "---\n\n# Copies local settings files, if available\n\n# Gitconfig\n- name: Check for gitconfig\n local_action: stat path=~/.gitconfig\n register: gitconfig\n\n#- name: debug gitconfig\n# debug: var=gitconfig\n\n- name: set gitconfig\n copy: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1253, "all_permissive": false }
ansible_role
mdelder/app-aws-loadbalancer
4c223294368e942020a5e823a13e7018597618a8
0
roles/awsloadbalancer
3,538
[ "permissive" ]
[ { "path": "roles/awsloadbalancer/defaults/main.yml", "content": "---\n# defaults file for awsloadbalancer\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 40 }, { "path": "roles/awsloadbalancer/handlers/main.yml", "content": "---\n# han...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1326, "all_permissive": true }
ansible_role
CharlieFng/BigData-Project
d787455db1a350ae97a5e3adbf15cb20c12b3e96
0
Ansible/roles/common
3,538
[ "no_license" ]
[ { "path": "Ansible/roles/common/handlers/main.yml", "content": "---\n# handlers file for common\n- name: refresh system config file\n shell: . /etc/profile\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 }, { "path": "Ansible/roles/common/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 3184, "all_permissive": false }
ansible_role
CharlieFng/BigData-Project
d787455db1a350ae97a5e3adbf15cb20c12b3e96
0
Ansible/roles/control
3,538
[ "no_license" ]
[ { "path": "Ansible/roles/control/tasks/main.yml", "content": "---\n# tasks file for control\n- name: add the mapping of hostname and ip address of whole cluster into local system environment\n lineinfile: dest=/etc/hosts\n line='{{item}}'\n with_items:\n - '192.168.3.11 namenode01'\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1195, "all_permissive": false }
ansible_role
CharlieFng/BigData-Project
d787455db1a350ae97a5e3adbf15cb20c12b3e96
0
Ansible/roles/kafka
3,538
[ "no_license" ]
[ { "path": "Ansible/roles/kafka/tasks/main.yml", "content": "---\n# tasks file for kafka\n\n- name: Download Scala from Dropbox\n get_url: url={{scala_url}} dest={{download_folder}}\n\n\n\n- name: unpackage Scala into specific folder\n unarchive: src={{scala_archive}} dest={{app_folder}} copy=no\n\n\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1848, "all_permissive": false }
ansible_role
CharlieFng/BigData-Project
d787455db1a350ae97a5e3adbf15cb20c12b3e96
0
Ansible/roles/spark
3,538
[ "no_license" ]
[ { "path": "Ansible/roles/spark/handlers/main.yml", "content": "---\n# handlers file for spark\n- name: refresh system config file\n shell: . /etc/profile\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "Ansible/roles/spark/tasks/main.yml", "c...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2048, "all_permissive": false }
ansible_role
CharlieFng/BigData-Project
d787455db1a350ae97a5e3adbf15cb20c12b3e96
0
Ansible/roles/zookeeper
3,538
[ "no_license" ]
[ { "path": "Ansible/roles/zookeeper/vars/main.yml", "content": "---\n# vars file for zookeeper\ndownload_folder: /home/ec2-user/downloads\napp_folder: /home/ec2-user/apps\nzookeeper_dir: 'app_folder/zookeeper-3.4.5/tmp'\n\njava_url: https://dl.dropboxusercontent.com/s/603kscozdt2q6u6/jdk-7u80-linux-x64.tar.g...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1819, "all_permissive": false }
ansible_role
chus-95/wordpress-azure
1142d32652fde4bb54ac200b2317bc78869d34f7
0
ansible/roles/common_conf
3,538
[ "no_license" ]
[ { "path": "ansible/roles/common_conf/tasks/main.yml", "content": "---\n# tasks file for all\n\n# I left this code comment because I was having problems updating kubernetes when running it more than once.\n\n#- name: Update system package\n# dnf:\n# name: \"*\"\n# state: latest\n# become: yes\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 750, "all_permissive": false }
ansible_role
chus-95/wordpress-azure
1142d32652fde4bb54ac200b2317bc78869d34f7
0
ansible/roles/common_nodes
3,538
[ "no_license" ]
[ { "path": "ansible/roles/common_nodes/tasks/main.yml", "content": "- name: \"Turn off swap\"\n shell: \"swapoff -a\"\n become: yes\n\n- name: \"Cmmenting Swap in /etc/fstab file\"\n replace:\n path: /etc/fstab\n regexp: '^[^#](.*swap*)'\n replace: '#\\1' \n become: yes\n\n- name: Server reboo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3505, "all_permissive": false }
ansible_role
chus-95/wordpress-azure
1142d32652fde4bb54ac200b2317bc78869d34f7
0
ansible/roles/k8s_master
3,538
[ "no_license" ]
[ { "path": "ansible/roles/k8s_master/tasks/main.yml", "content": "---\n# tasks file for k8s_master\n\n- name: \"Allow Network Ports in Firewalld 1\"\n firewalld:\n permanent: yes\n immediate: yes\n port: \"{{ ports }}\"\n state: enabled\n become: yes\n\n- name: Allow Network Ports in Firewalld ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3361, "all_permissive": false }
ansible_role
chus-95/wordpress-azure
1142d32652fde4bb54ac200b2317bc78869d34f7
0
ansible/roles/k8s_slave
3,538
[ "no_license" ]
[ { "path": "ansible/roles/k8s_slave/tasks/main.yml", "content": "---\n# tasks file for k8s_worker\n\n- name: \"Allow Network Ports in Firewalld\"\n firewalld:\n port: \"{{ item }}\" \n state: enabled\n permanent: yes\n immediate: yes \n become: yes\n with_items:\n - \"{{ ports_slave }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 613, "all_permissive": false }
ansible_role
chus-95/wordpress-azure
1142d32652fde4bb54ac200b2317bc78869d34f7
0
ansible/roles/kube-wordpress
3,538
[ "no_license" ]
[ { "path": "ansible/roles/kube-wordpress/tasks/main.yml", "content": "---\n# tasks file for kube-wordpress\n\n- name: Copying Kube Wordpress files \n copy: \n src: \"K8s-WordPress\"\n dest: \"/root\" \n become: true\n\n- name: Copying Kube Storage Class file\n template:\n src: \"storage.yml.j2\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 392, "all_permissive": false }
ansible_role
chus-95/wordpress-azure
1142d32652fde4bb54ac200b2317bc78869d34f7
0
ansible/roles/nfs-server
3,538
[ "no_license" ]
[ { "path": "ansible/roles/nfs-server/tasks/main.yml", "content": "---\n# tasks file for nfs-server\n\n#- name: Staring & enabling nfs-server\n# systemd:\n# name: \"{{ item }}\" \n# state: started\n# enabled: yes\n# masked: no\n# become: yes\n# with_items:\n# - \"{{ service_names }}\"\n \n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1379, "all_permissive": false }
ansible_role
majikjohnson/locust-grafana
b2ef8e9c35ca2dfde5285114fd78d8f05a1b913e
0
infra/ansible/roles/grafana
3,538
[ "no_license" ]
[ { "path": "infra/ansible/roles/grafana/templates/add_user.json.j2", "content": "{\n \"name\":\"{{ grafana_user_name }}\",\n \"email\":\"{{ grafana_user_email }}\",\n \"login\":\"{{ grafana_user_login }}\",\n \"password\":\"{{ <PASSWORD> }}\"\n}\n", "license_type": "no_license", "detected_license...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 11735, "all_permissive": false }
ansible_role
majikjohnson/locust-grafana
b2ef8e9c35ca2dfde5285114fd78d8f05a1b913e
0
infra/ansible/roles/influxdb
3,538
[ "no_license" ]
[ { "path": "infra/ansible/roles/influxdb/tasks/main.yml", "content": "---\n- name: Add apt key for InfluxDB repository\n apt_key:\n url: https://repos.influxdata.com/influxdb.key\n state: present\n\n- name: Add apt repository for InfluxDB\n apt_repository:\n repo: deb https://repos.influxdata.com/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 448, "all_permissive": false }
ansible_role
aehlke/dotfiles
8c2a612167a93540f2b2e1d641ab0f537650e329
5
playbooks/roles/oh-my-zsh
3,518
[ "no_license" ]
[ { "path": "playbooks/roles/oh-my-zsh/tasks/main.yml", "content": "---\n\n- name: Install zsh and utilities\n homebrew:\n name: '{{ item }}'\n update_homebrew: no\n with_items:\n - zsh\n - zsh-syntax-highlighting\n - zsh-autosuggestions\n\n- name: Backup existing ~/.zshrc\n shell: if [ -f ~...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1091, "all_permissive": false }
ansible_role
aehlke/dotfiles
8c2a612167a93540f2b2e1d641ab0f537650e329
5
playbooks/roles/powerline
3,518
[ "no_license" ]
[ { "path": "playbooks/roles/powerline/tasks/main.yml", "content": "---\n\n- name: Clone Powerline fonts\n git:\n repo: <EMAIL>:powerline/fonts.git\n dest: /tmp/powerline-fonts\n accept_hostkey: yes\n depth: 1\n update: yes\n become: yes\n\n- name: Install Powerline fonts\n command: /tmp/pow...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 820, "all_permissive": false }
ansible_role
aehlke/dotfiles
8c2a612167a93540f2b2e1d641ab0f537650e329
5
playbooks/roles/ssh
3,518
[ "no_license" ]
[ { "path": "playbooks/roles/ssh/tasks/main.yml", "content": "---\n\n- name: Link SSH configuration\n file:\n src: '{{ playbook_dir }}/roles/ssh/files/ssh_config'\n dest: ~/.ssh/config\n state: link\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 141 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 141, "all_permissive": false }
ansible_role
aehlke/dotfiles
8c2a612167a93540f2b2e1d641ab0f537650e329
5
playbooks/roles/vim
3,518
[ "no_license" ]
[ { "path": "playbooks/roles/vim/files/vim/install-dein.sh", "content": "#!/usr/bin/env bash\nset -e\n\nFILE_DIR=`dirname \"$(stat -f \"$0\")\"`\ncd $FILE_DIR\n\nmkdir -p ./dein\ncurl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > ./dein/dein-installer.sh\nchmod 755 ./dein/dein-in...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 522, "all_permissive": false }
ansible_role
brusq-RH/ansible-examples
a285a0c04197229c15ca85b7e8cfdb614ab6c8bf
0
lamp_haproxy/aws/roles/base-apache
3,518
[ "no_license" ]
[ { "path": "lamp_haproxy/aws/roles/base-apache/tasks/main.yml", "content": "---\n# This role installs httpd\n\n- name: Install http\n yum:\n name: \n - httpd\n - php\n - php-mysql\n - git\n state: present\n\n- name: Configure SELinux to allow httpd to connect to remote database\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 422, "all_permissive": false }
ansible_role
brusq-RH/ansible-examples
a285a0c04197229c15ca85b7e8cfdb614ab6c8bf
0
lamp_haproxy/aws/roles/common
3,518
[ "no_license" ]
[ { "path": "lamp_haproxy/aws/roles/common/tasks/main.yml", "content": "---\n# This role contains common plays that will run on all nodes.\n\n- name: Install python bindings for SE Linux\n yum:\n name:\n - libselinux-python\n - libsemanage-python\n state: present\n\n- name: Update the curl an...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2512, "all_permissive": false }
ansible_role
brusq-RH/ansible-examples
a285a0c04197229c15ca85b7e8cfdb614ab6c8bf
0
lamp_haproxy/aws/roles/nagios
3,518
[ "no_license" ]
[ { "path": "lamp_haproxy/aws/roles/nagios/files/ansible-managed-services.cfg", "content": "# {{ ansible_managed }}\n\n# define the check_nrpe command used for contacting the other hosts\ndefine command{\n command_name check_nrpe\n command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -t 30 -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2699, "all_permissive": false }
ansible_role
wgkevin666/ai08finallyproject
2f77bcc304673bb42d07347e4ba64a78b80efd5a
0
function/ansible/roles/project
3,518
[ "no_license" ]
[ { "path": "function/ansible/roles/project/tasks/main.yml", "content": "---\n- name: node setting\n command: curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -\n\n- name: install nodejs\n apt:\n name: nodejs \n\n- name: only upgrade\n apt:\n only_upgrade: yes\n\n- name: install pip3\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1409, "all_permissive": false }
ansible_role
planetary-social/ansible-scripts
dd7c1b7915c26949c1ff913f4f2f3f138989b10f
1
deprecated/roles/new-do-droplet
3,518
[ "no_license" ]
[ { "path": "deprecated/roles/new-do-droplet/defaults/main.yml", "content": "---\nadmin_username: admin\ndo_droplet_size: s-1vcpu-1gb\ndo_droplet_region: SFO3\ndo_droplet_image: ubuntu-24-10-x64\ndo_droplet_enable_monitoring: true\ndo_droplet_enable_backups: true\ndo_droplet_name: \"{{do_droplet_image + '.' a...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 6151, "all_permissive": false }
ansible_role
planetary-social/ansible-scripts
dd7c1b7915c26949c1ff913f4f2f3f138989b10f
1
roles/blob-reporter
3,518
[ "no_license" ]
[ { "path": "roles/blob-reporter/tasks/main.yml", "content": "# Sets up a cron job to sync blobs to google cloud storage\n- name: Schedule gsutil rsync\n ansible.builtin.cron:\n name: \"sync blobs\"\n minute: \"0\"\n hour: \"*\"\n job: \"perl -le 'sleep rand 3600' && /root/google-cloud-sdk/bin/gs...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 317, "all_permissive": false }
ansible_role
planetary-social/ansible-scripts
dd7c1b7915c26949c1ff913f4f2f3f138989b10f
1
roles/certbot-cloudflare
3,518
[ "no_license" ]
[ { "path": "roles/certbot-cloudflare/templates/cloudflare.ini.tpl", "content": "dns_cloudflare_api_token={{ cloudflare_api_token }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 52 }, { "path": "roles/certbot-cloudflare/README.md", "content": "# Certbot and ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4751, "all_permissive": false }
ansible_role
planetary-social/ansible-scripts
dd7c1b7915c26949c1ff913f4f2f3f138989b10f
1
roles/common
3,518
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "# This are leftovers from an old method of installing the Digital Ocean metrics agent, and they are causing\n# problems now.\n- name: Delete old Digital Ocean Metrics agent files \n become: true\n ansible.builtin.file:\n path: '{{ item }}'\n state...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2338, "all_permissive": false }
ansible_role
planetary-social/ansible-scripts
dd7c1b7915c26949c1ff913f4f2f3f138989b10f
1
roles/debugging
3,518
[ "no_license" ]
[ { "path": "roles/debugging/tasks/main.yml", "content": "- name: Install niceties for working on server\n ansible.builtin.apt:\n pkg:\n - curl\n - rsync\n - tmux\n - jq\n state: latest\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 148 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 148, "all_permissive": false }
ansible_role
planetary-social/ansible-scripts
dd7c1b7915c26949c1ff913f4f2f3f138989b10f
1
roles/digital-ocean
3,518
[ "no_license" ]
[ { "path": "roles/digital-ocean/tasks/main.yml", "content": "---\n# Tasks that should be run on all Digital Ocean droplets\n\n- name: Remove old Digital Ocean Repository\n become: true\n ansible.builtin.file:\n path: \"{{ item }}\"\n state: absent\n with_items:\n - /etc/apt/sources.list.d/droplet...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 943, "all_permissive": false }
ansible_role
planetary-social/ansible-scripts
dd7c1b7915c26949c1ff913f4f2f3f138989b10f
1
roles/docker
3,518
[ "no_license" ]
[ { "path": "roles/docker/files/daemon.json", "content": "{\n \"log-driver\": \"local\",\n \"log-opts\": {\n \"max-size\": \"20m\",\n \"max-file\": \"10\"\n }\n}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 }, { "path": "roles/docker/tasks/main.yml",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2891, "all_permissive": false }
ansible_role
planetary-social/ansible-scripts
dd7c1b7915c26949c1ff913f4f2f3f138989b10f
1
roles/flumedb-delete
3,518
[ "no_license" ]
[ { "path": "roles/flumedb-delete/tasks/main.yml", "content": "# This role installs the flumedb-delete tool used for purging feeds from pub databases.\n---\n- name: Install nvm\n git: repo=https://github.com/creationix/nvm.git dest=~/.nvm version=v0.33.11\n tags: nvm\n\n- name: Source nvm in ~/.{{ item }}\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 967, "all_permissive": false }
ansible_role
planetary-social/ansible-scripts
dd7c1b7915c26949c1ff913f4f2f3f138989b10f
1
roles/followers_server
3,518
[ "no_license" ]
[ { "path": "roles/followers_server/templates/docker-compose.yml.tpl", "content": "---\nversion: \"3.3\"\n\nservices:\n followers_server:\n image: \"{{ followers_server_image }}:{{ followers_server_image_tag }}\"\n container_name: \"followers_server\"\n ports:\n - \"127.0.0.1:3001:3001\" # 127.0...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 6578, "all_permissive": false }