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
pranavbhardwaj91/ansible-projects
ddd60532fe825426e8496854de39b663aa61b75b
0
my_ansible/zookeeper-3-node/roles/zookeeper
7,400
[ "no_license" ]
[ { "path": "my_ansible/zookeeper-3-node/roles/zookeeper/vars/main.yml", "content": "---\n zookeeper_dir: /usr/local/zookeeper-{{ zookeeper_version }}\n zookeeper_init: /etc/init.d/\n zookeeper_local_dir: /usr/local\n tick_time: 2000\n zookeeper_data_dir: \"{{ zookeeper_dir }}/data\"\n client_port: 2181\n ini...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 1993, "all_permissive": false }
ansible_role
oliverjms/ansible_tutorial
145e63610db88e47d00b8c463a27c2d159ac5b3c
0
roles/base
7,400
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "- name: add ssh key for david\n authorized_key:\n user: david\n key: \"<KEY>\" \n\n\n- name: generate sshd_config file from template\n tags: ssh\n template:\n src: \"{{ ssh_template_file }}\"\n dest: /etc/ssh/sshd_config\n owner: root\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 292, "all_permissive": false }
ansible_role
oliverjms/ansible_tutorial
145e63610db88e47d00b8c463a27c2d159ac5b3c
0
roles/workstations
7,400
[ "no_license" ]
[ { "path": "roles/workstations/tasks/main.yml", "content": "- name: install unzip\n package:\n name: unzip\n\n\n- name: install terraform\n unarchive:\n src: https://releases.hashicorp.com/terraform/1.7.3/terraform_1.7.3_linux_amd64.zip\n dest: /usr/local/bin\n remote_src: yes\n mode: 0755\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 272, "all_permissive": false }
ansible_role
EugenePapkou/ansible_install_jenkins_behind_httpd
a22ffac74ac9edef3d11275069d4aa41566724fb
0
roles/common
7,400
[ "no_license" ]
[ { "path": "roles/common/handlers/main.yml", "content": "- name: gathering facts about vim\n shell: vim --version | grep compiled\n register: vim_version\n changed_when: false\n\n- name: save vim details\n copy: \n content: >\n {\n \"vim_details\": \"{{ vim_version.stdout }}\",\n \"...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 617, "all_permissive": false }
ansible_role
EugenePapkou/ansible_install_jenkins_behind_httpd
a22ffac74ac9edef3d11275069d4aa41566724fb
0
roles/create_user
7,400
[ "no_license" ]
[ { "path": "roles/create_user/handlers/main.yml", "content": "- name: get user details\n shell: cat /etc/passwd | grep {{ user }}\n register: user_details\n changed_when: false\n\n- name: save user details\n copy: \n content: >\n {\n \"User details\": \"{{ user_details.stdout }}\"\n }...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 833, "all_permissive": false }
ansible_role
EugenePapkou/ansible_install_jenkins_behind_httpd
a22ffac74ac9edef3d11275069d4aa41566724fb
0
roles/httpd
7,400
[ "no_license" ]
[ { "path": "roles/httpd/tasks/main.yml", "content": "- name: install the httpd server\n yum: \n name: httpd\n state: latest\n notify:\n - get httpd version\n - get httpd built\n - save httpd details\n\n- name: start the httpd service\n service: name=httpd state=started\n\n- name: configurin...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1283, "all_permissive": false }
ansible_role
EugenePapkou/ansible_install_jenkins_behind_httpd
a22ffac74ac9edef3d11275069d4aa41566724fb
0
roles/java
7,400
[ "no_license" ]
[ { "path": "roles/java/handlers/main.yml", "content": "- name: Java Version\n shell: java -version 2>&1 | grep version | awk '{print $3}' | sed 's/[^0-9._]//g'\n register: java_version\n changed_when: false\n\n- name: Java Build\n shell: java -version 2>&1 | grep \"Server VM .build\"\n register: java_bu...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 705, "all_permissive": false }
ansible_role
EugenePapkou/ansible_install_jenkins_behind_httpd
a22ffac74ac9edef3d11275069d4aa41566724fb
0
roles/jenkins
7,400
[ "no_license" ]
[ { "path": "roles/jenkins/templates/service.j2", "content": "[Unit]\nDescription=Jenkins Daemon\n[Service]\nEnvironment=JENKINS_HOME=JENKINS_HOME=/opt/jenkins/master\nExecStart=/usr/bin/java -D${JENKINS_HOME} -jar /opt/jenkins.war\nUser=jenkins\n[Install]\nWantedBy=multi-user.target\n", "license_type": "...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1807, "all_permissive": false }
ansible_role
P9129/openvpn_setup
ace765d89d186b3872a442e39a833c752819c51f
0
ansible/roles/delete-ami1
7,400
[ "no_license" ]
[ { "path": "ansible/roles/delete-ami1/tasks/main.yml", "content": "---\r\n\r\n- name: Get AMI facts\r\n amazon.aws.ec2_ami_info: \r\n region: \"{{ region }}\"\r\n filters: {\"image-type\": \"machine\", \"is-public\": \"false\"}\r\n register: ami_facts\r\n\r\n- name: Print raw AMI facts\r\n debug:\r\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1090, "all_permissive": false }
ansible_role
P9129/openvpn_setup
ace765d89d186b3872a442e39a833c752819c51f
0
ansible/roles/delete-amis
7,400
[ "no_license" ]
[ { "path": "ansible/roles/delete-amis/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - delete-amis\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 }, { "path": "ansible/roles/delete-amis/tasks/main.yml", "content": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 288, "all_permissive": false }
ansible_role
P9129/openvpn_setup
ace765d89d186b3872a442e39a833c752819c51f
0
ansible/roles/ec2-provision
7,400
[ "no_license" ]
[ { "path": "ansible/roles/ec2-provision/meta/main.yml", "content": "---\r\n#galaxy_info:\r\n# author: Harsimran/priyanka\r\n# description: Role for ec2 instances lunch.\r\n# company: IGP\r\n# license: GPL\r\n# min_ansible_version: 2.0\r\ndependencies: []", "license_type": "no_license", "detected...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1307, "all_permissive": false }
ansible_role
P9129/openvpn_setup
ace765d89d186b3872a442e39a833c752819c51f
0
ansible/roles/find_ami
7,400
[ "no_license" ]
[ { "path": "ansible/roles/find_ami/defaults/main.yml", "content": "filters:\r\n \"tag:name\": \"test-ami\"\r\nregion: \"us-east-1\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 55 }, { "path": "ansible/roles/find_ami/tasks/main.yml", "content": "---\n- name:...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 183, "all_permissive": false }
ansible_role
P9129/openvpn_setup
ace765d89d186b3872a442e39a833c752819c51f
0
ansible/roles/openvpn-setup
7,400
[ "no_license" ]
[ { "path": "ansible/roles/openvpn-setup/templates/base.conf.j2", "content": "client\r\nremote \"$PUBLIC_IP\" 1194\r\nproto udp\r\nuser nobody\r\ngroup nobody\r\npersist-key\r\npersist-tun\r\ndev tun\r\ncipher AES-256-GCM\r\nauth SHA256\r\nverb 3\r\nmute 20\r\nroute 10.0.0.0 255.255.0.0 vpn_gateway\r\n", ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 6142, "all_permissive": false }
ansible_role
sasaxing/ansible-playground
bb44f7aebe4ac3f0e23b4fb80c0e39b2e67549f4
0
roles/print
7,400
[ "no_license" ]
[ { "path": "roles/print/tasks/main.yml", "content": "---\n - name: Print my name\n shell: echo Hello xiaosha!\n\n - name: Print env variable\n shell: echo $PATH\n register: print_result\n\n - name: print message\n debug:\n msg: \"{{ print_result.stdout_lines }}\"", "license_type": "no_license...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 210, "all_permissive": false }
ansible_role
Litocruz/90daysdevops
cefbfa8461e7736e7f3623a501c87ae6bca4c4db
0
semana1/dia6/desafio/roles/nginx
7,403
[ "no_license" ]
[ { "path": "semana1/dia6/desafio/roles/nginx/tasks/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# tasks file for nginx\n\n\n- name: Instalar nginx\n apt:\n name: nginx\n state: present\n update_cache: yes\n\n- name: Habilitar y arrancar Nginx\n service:\n name: nginx\n state:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 394, "all_permissive": false }
ansible_role
Litocruz/90daysdevops
cefbfa8461e7736e7f3623a501c87ae6bca4c4db
0
semana1/dia6/desafio/roles/user
7,403
[ "no_license" ]
[ { "path": "semana1/dia6/desafio/roles/user/tasks/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# tasks file for user\n\n- name: Crear usuario devops\n user:\n name: \"{{ user }}\"\n groups: sudo\n append: yes\n password: \"{{ <PASSWORD> | password_hash('<PASSWORD>') }}\"\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 306, "all_permissive": false }
ansible_role
Litocruz/90daysdevops
cefbfa8461e7736e7f3623a501c87ae6bca4c4db
0
semana1/dia7/roxs-devops-project90/ansible/roles/common
7,403
[ "no_license" ]
[ { "path": "semana1/dia7/roxs-devops-project90/ansible/roles/common/tasks/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# tasks file for common\n\n- name: Instalar dependencias\n apt:\n name: \"{{ system_packages }}\"\n state: present\n update_cache: yes\n\n- name: Instalar Node.js y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 631, "all_permissive": false }
ansible_role
Litocruz/90daysdevops
cefbfa8461e7736e7f3623a501c87ae6bca4c4db
0
semana1/dia7/roxs-devops-project90/ansible/roles/flask_vote
7,403
[ "no_license" ]
[ { "path": "semana1/dia7/roxs-devops-project90/ansible/roles/flask_vote/templates/vote_app.service.j2", "content": "[Unit]\nDescription=Gunicorn instance to serve Flask Vote app\nAfter=network.target postgresql.service redis-server.service # Asegurar que DBs estén antes\n\n[Service]\nUser=vagrant\nGroup=vagr...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1711, "all_permissive": false }
ansible_role
Litocruz/90daysdevops
cefbfa8461e7736e7f3623a501c87ae6bca4c4db
0
semana1/dia7/roxs-devops-project90/ansible/roles/nodejs_result
7,403
[ "no_license" ]
[ { "path": "semana1/dia7/roxs-devops-project90/ansible/roles/nodejs_result/tasks/main.yml", "content": "---\n- name: Instalar dependencias de Node.js para Result\n community.general.npm:\n path: \"{{ app_base_path }}/{{ app_base_name }}/result\"\n state: present\n #ci: yes\n\n- name: Crear script...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 695, "all_permissive": false }
ansible_role
Litocruz/90daysdevops
cefbfa8461e7736e7f3623a501c87ae6bca4c4db
0
semana1/dia7/roxs-devops-project90/ansible/roles/nodejs_worker
7,403
[ "no_license" ]
[ { "path": "semana1/dia7/roxs-devops-project90/ansible/roles/nodejs_worker/tasks/main.yml", "content": "---\n- name: Instalar dependencias de Node.js para Worker\n community.general.npm:\n path: \"{{ app_base_path }}/{{ app_base_name }}/worker\"\n state: present\n # Añadir esto para asegurar la ins...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 934, "all_permissive": false }
ansible_role
Litocruz/90daysdevops
cefbfa8461e7736e7f3623a501c87ae6bca4c4db
0
semana1/dia7/roxs-devops-project90/ansible/roles/postgresql
7,403
[ "no_license" ]
[ { "path": "semana1/dia7/roxs-devops-project90/ansible/roles/postgresql/tasks/main.yml", "content": "---\n- name: Instalar PostgreSQL\n ansible.builtin.apt:\n name: \"postgresql-{{ pg_version }}\"\n state: present\n update_cache: yes\n\n- name: Asegurar que el servicio PostgreSQL esté corriendo\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 670, "all_permissive": false }
ansible_role
Litocruz/90daysdevops
cefbfa8461e7736e7f3623a501c87ae6bca4c4db
0
semana1/dia7/roxs-devops-project90/ansible/roles/redis
7,403
[ "no_license" ]
[ { "path": "semana1/dia7/roxs-devops-project90/ansible/roles/redis/tasks/main.yml", "content": "---\n- name: Instalar Redis\n ansible.builtin.apt:\n name: redis-server\n state: present\n update_cache: yes\n\n- name: Asegurar que el servicio Redis esté corriendo y habilitado\n ansible.builtin.syste...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 273, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/chrome-headless
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/chrome-headless/tasks/main.yml", "content": "---\r\n- name: Add chrome repo key \r\n apt_key: url=https://dl-ssl.google.com/linux/linux_signing_key.pub state=present \r\n\r\n- name: Add chrome repo to apt list\r\n apt_repository: repo='deb http://dl.google.com/linux...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 367, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/common
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/common/tasks/main.yml", "content": "---\r\n- name: forbid SSH root login \r\n lineinfile: destfile=/etc/ssh/sshd_config regexp=\"^PermitRootLogin\" line=\"PermitRootLogin no\" state=present\r\n notify:\r\n - restart ssh\r\n \r\n- name: forbid SSH password login...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 826, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/php7
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/php7/tasks/main.yml", "content": "---\r\n- name: add ppa key \r\n apt_key: id=E5267A6C keyserver=keyserver.ubuntu.com state=present \r\n\r\n- name: add ppa repository\r\n apt_repository: repo='deb http://ppa.launchpad.net/ondrej/php/ubuntu trusty main' state=present...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1131, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/php7-cli
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/php7-cli/defaults/main.yml", "content": "---\n\n# PHP.INI vars\n\nphp_cli_max_execution_time: \"{{ php_max_execution_time }}\"\nphp_cli_max_input_time: \"{{ php_max_input_time }}\"\n\nphp_cli_memory_limit: -1\n\nphp_cli_log_errors_max_len: \"{{ php_log_errors_max_len }}...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1383, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/php7-fpm
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/php7-fpm/defaults/main.yml", "content": "---\n\n# PHP.INI vars\n\nphp_fpm_max_execution_time: \"{{ php_max_execution_time }}\"\nphp_fpm_max_input_time: \"{{ php_max_input_time }}\"\n\nphp_fpm_memory_limit: 128M\n\nphp_fpm_log_errors_max_len: \"{{ php_log_errors_max_len ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1383, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/postgres95
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/postgres95/tasks/main.yml", "content": "---\n- name: add ppa key \n apt_key: url=https://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc state=present \n\n- name: add ppa repository \n apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 577, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/selenium
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/selenium/tasks/main.yml", "content": "---\r\n- name: Create selenium dir\r\n file: path=/usr/lib/selenium state=directory mode=755 \r\n\r\n- name: Download the latest selenium jar\r\n get_url: \r\n url: http://selenium-release.storage.googleapis.com/3.0/selenium-se...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 727, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/timezone
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/timezone/tasks/vhost.yml", "content": "---\n- name: create log directories\n file: path=/var/log/md-timezone state=directory owner=www-data group=root\n mode=750 \n \n- name: copy nginx vhost file\n template: src=\"vhost\" dest=/etc/nginx/sites-available/md-tim...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3017, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/ubuntu-updates
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/ubuntu-updates/tasks/main.yml", "content": "---\r\n- name: install unatended updates\r\n apt: pkg=unattended-upgrades state=present\r\n \r\n- name: setup periodic upgrade\r\n template: src=10periodic dest=/etc/apt/apt.conf.d/10periodic\r\n ", "license_type": "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 190, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/webserver
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/webserver/tasks/main.yml", "content": "---\n- name: install webserver packages \n apt: pkg={{ item }} state=latest\n with_items:\n - build-essential\n - nginx\n notify:\n - restart nginx\n \n- name: modify access log format to capture request time\n c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 769, "all_permissive": false }
ansible_role
matheusd/timezone
dbd8ae3c2ef0078fe1974622cd601c3764e7a479
0
provisioning/ansible/roles/xvfb-server
7,403
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/xvfb-server/tasks/main.yml", "content": "---\n- name: Install required packages\n apt: pkg={{item}} state=present\n with_items:\n - xvfb\n - x11-xserver-utils\n - imagemagick\n - cups\n - cups-pdf\n \n- name: copy upstart daemons\n copy: src={{ item...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 609, "all_permissive": false }
ansible_role
shuja-git/learn-ansible-3
cb12c48f00689a713e3eee6820d930a1e7fffe96
0
roles/demo
7,403
[ "no_license" ]
[ { "path": "roles/demo/tasks/main.yml", "content": "- name: task to print role level variable\n ansible.builtin.debug:\n msg: \"{{ URL }}\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 87 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 87, "all_permissive": false }
ansible_role
notdryft/ansible-raspberry-pi-prepare-images
af5c7a949adf552a4ea269c2d2ed6ceca76f718c
1
roles/host
7,403
[ "no_license" ]
[ { "path": "roles/host/tasks/main.yml", "content": "---\n\n- name: Change hostname\n hostname: name={{ pi_hostname }}\n\n- name: Also change /etc/hosts entry\n lineinfile: name=/etc/hosts\n regexp='^127\\.0\\.1\\.1\\t(raspberrypi|{{ pi_hostname }})'\n line=\"127.0.1.1\\t{{ pi_host...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 280, "all_permissive": false }
ansible_role
notdryft/ansible-raspberry-pi-prepare-images
af5c7a949adf552a4ea269c2d2ed6ceca76f718c
1
roles/keyboard
7,403
[ "no_license" ]
[ { "path": "roles/keyboard/tasks/main.yml", "content": "---\n\n- name: Make sure xkblayout is set to \"fr\"\n lineinfile: name=/etc/default/keyboard\n regexp='^XKBLAYOUT'\n line='XKBLAYOUT=\"fr\"'\n state=present\n", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 187, "all_permissive": false }
ansible_role
notdryft/ansible-raspberry-pi-prepare-images
af5c7a949adf552a4ea269c2d2ed6ceca76f718c
1
roles/qemu
7,403
[ "no_license" ]
[ { "path": "roles/qemu/tasks/main.yml", "content": "---\n\n- name: Uncomment preload file\n lineinfile: name=/etc/ld.so.preload\n regexp='^#?/usr/lib/arm-linux-gnueabihf/libcofi_rpi.so'\n line='/usr/lib/arm-linux-gnueabihf/libcofi_rpi.so'\n state=present\n", "licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 237, "all_permissive": false }
ansible_role
notdryft/ansible-raspberry-pi-prepare-images
af5c7a949adf552a4ea269c2d2ed6ceca76f718c
1
roles/users
7,403
[ "no_license" ]
[ { "path": "roles/users/tasks/main.yml", "content": "---\n\n- name: Create group for wanted user\n action: group\n name={{ wanted_username }}\n state=present\n\n- name: Create wanted user\n action: user\n name={{ wanted_username }}\n group={{ wanted_username }}\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1464, "all_permissive": false }
ansible_role
notdryft/ansible-raspberry-pi-prepare-images
af5c7a949adf552a4ea269c2d2ed6ceca76f718c
1
roles/wifi
7,403
[ "no_license" ]
[ { "path": "roles/wifi/tasks/main.yml", "content": "---\n\n- name: Install network interfaces\n template: src=interfaces\n dest=/etc/network/interfaces\n\n- name: Install DNS resolver\n template: src=resolv.conf\n dest=/etc/resolv.conf\n\n- name: Disable wifi dongle power management\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1295, "all_permissive": false }
ansible_role
notdryft/ansible-raspberry-pi-prepare-images
af5c7a949adf552a4ea269c2d2ed6ceca76f718c
1
roles/wifi_drivers
7,403
[ "no_license" ]
[ { "path": "roles/wifi_drivers/tasks/main.yml", "content": "---\n\n# http://www.raspberrypi.org/forums/viewtopic.php?p=462982#p462982\n\n- name: Deliver 8188eu firmware file\n copy: src=rtl8188eufw.bin\n dest=/lib/firmware/rtlwifi\n when: wifi_mod == '8188eu'\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 202, "all_permissive": false }
ansible_role
ksaley/ansiblehw
3816e5c407ecd8e2c5acec6905da22440d9eb1bb
0
roles/kafka
7,403
[ "no_license" ]
[ { "path": "roles/kafka/templates/kafka.properties.j2", "content": "broker.id={{ kafka_broker_id }}\n\nport={{ kafka_port }}\nlog.dirs={{ kafka_log_dirs }}\nzookeeper.connect=localhost:{{ zookeeper_port }}\n\nauto.create.topics.enable=false\n\noffsets.topic.replication.factor=1\ntransaction.state.log.replica...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 2244, "all_permissive": false }
ansible_role
mgaebler/product_test
b85e9e4171f40ccf94a1fb53c8528c6403bfe9c4
0
ansible/roles/common
7,403
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/bootstrap.yml", "content": "---\n- name: update apt cache\n raw: apt-get update\n sudo: true\n tags: bootstrap\n\n- name: install ansible prerequisites\n raw: apt-get install python-apt python-keyczar python-pycurl -y\n sudo: true\n tags: bootstrap\n\n- name: mark...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1047, "all_permissive": false }
ansible_role
mgaebler/product_test
b85e9e4171f40ccf94a1fb53c8528c6403bfe9c4
0
ansible/roles/nginx
7,403
[ "no_license" ]
[ { "path": "ansible/roles/nginx/templates/virtual_host.j2", "content": "\nupstream django {\n server {{ nginx.location.uwsgi_pass }};\n}\n\nserver {\n listen {{ nginx.listen }};\n server_name {{ nginx.server_name }};\n access_log {{ nginx.access_log }};\n error_log {{ nginx.error_log }};\n client_max...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1887, "all_permissive": false }
ansible_role
mgaebler/product_test
b85e9e4171f40ccf94a1fb53c8528c6403bfe9c4
0
ansible/roles/postgres
7,403
[ "no_license" ]
[ { "path": "ansible/roles/postgres/tasks/main.yml", "content": "---\n- apt: name='{{ item }}'\n with_items:\n - libpq-dev\n - python-dev\n - postgresql\n - postgresql-contrib\n - python-psycopg2\n sudo: true\n\n\n- postgresql_user: user='{{ app.id }}' password='{{ <PASSWORD> }}' role_attr_fl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 469, "all_permissive": false }
ansible_role
mgaebler/product_test
b85e9e4171f40ccf94a1fb53c8528c6403bfe9c4
0
ansible/roles/redis
7,403
[ "no_license" ]
[ { "path": "ansible/roles/redis/tasks/main.yml", "content": "---\n- name: add redis ppa\n sudo: true\n apt_repository: repo='ppa:rwky/redis' state=present update_cache=yes\n tags: redis\n\n- name: Install required apt packages for redis\n apt: pkg={{ item }} state=latest\n sudo: true\n with_items:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 286, "all_permissive": false }
ansible_role
mgaebler/product_test
b85e9e4171f40ccf94a1fb53c8528c6403bfe9c4
0
ansible/roles/uwsgi
7,403
[ "no_license" ]
[ { "path": "ansible/roles/uwsgi/templates/site_uwsgi.ini.j2", "content": "[uwsgi]\n\nchdir = {{ uwsgi.chdir }}\nmodule = {{ uwsgi.module }}\nhome = {{ uwsgi.home }}\nmaster = {{ uwsgi.master }}\nprocesses = {{ uwsgi.processes }}\nthreads = {{ uwsgi.threads }}\nsocket = {{ uw...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1612, "all_permissive": false }
ansible_role
mgaebler/product_test
b85e9e4171f40ccf94a1fb53c8528c6403bfe9c4
0
ansible/roles/webapp
7,403
[ "no_license" ]
[ { "path": "ansible/roles/webapp/readme.md", "content": "# Everything you need to build and configure a web app", "license_type": "no_license", "detected_licenses": [], "size_bytes": 54 }, { "path": "ansible/roles/webapp/tasks/main.yml", "content": "---\n- apt_repository: repo='ppa:ch...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2619, "all_permissive": false }
ansible_role
charlo92/homeserver
7c153acb8738db7d3413f04af195bc75f62038e6
0
roles/ec3
7,403
[ "no_license" ]
[ { "path": "roles/ec3/templates/configbackup.sh.j2", "content": "#/bin/sh\n\nTODAY=$(date +\"%m%d%y\")\n\n\ndocker stop $(docker ps -a -q)\n\ntar -czvf configbackup-$TODAY.tar.gz {{containers_folder}}\n\ndocker start $(docker ps -a -q)", "license_type": "no_license", "detected_licenses": [], "siz...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2845, "all_permissive": false }
ansible_role
uzukwujp/terraform-cloud
49b77be6be407848e5a98533cd195f3881292c5a
0
Ansible/roles/tooling
7,403
[ "no_license" ]
[ { "path": "Ansible/roles/tooling/tasks/setup-db.yml", "content": "- name: Install PyMySQL\n pip:\n name: pymysql\n state: present\n\n- name: create database\n community.mysql.mysql_db:\n login_host: \"terraform-2022061209234475800000000c.cvyrpdhgqalj.us-east-1.rds.amazonaws.com\"\n login_user:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 833, "all_permissive": false }
ansible_role
uzukwujp/terraform-cloud
49b77be6be407848e5a98533cd195f3881292c5a
0
Ansible/roles/wordpress
7,403
[ "no_license" ]
[ { "path": "Ansible/roles/wordpress/tasks/setup-db.yml", "content": "- name: Install PyMySQL\n pip:\n name: pymysql\n state: present\n\n- name: create database\n community.mysql.mysql_db:\n login_host: \"terraform-2022061209234475800000000c.cvyrpdhgqalj.us-east-1.rds.amazonaws.com\"\n login_use...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 845, "all_permissive": false }
ansible_role
eyalg1972/devops-exercise-eyal
c5b453b1a5a705759b2ffc8074ac6fce44c3c80b
0
roles/img-panda
7,403
[ "no_license" ]
[ { "path": "roles/img-panda/tasks/main.yml", "content": "---\r\n- name: copy img-panda app\r\n copy: src=img-panda dest=/tmp/ owner=root group=root mode=0755\r\n\r\n- name: npm install\r\n npm: path=/tmp/img-panda\r\n\r\n- name: Stop APP\r\n command: pm2 stop img-panda\r\n args:\r\n chdir: /tmp/img-pa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 374, "all_permissive": false }
ansible_role
eyalg1972/devops-exercise-eyal
c5b453b1a5a705759b2ffc8074ac6fce44c3c80b
0
roles/smart-panda
7,403
[ "no_license" ]
[ { "path": "roles/smart-panda/tasks/main.yml", "content": "---\r\n- name: copy smart-panda app\r\n copy: src=smart-panda dest=/tmp/ owner=root group=root mode=0755\r\n\r\n- name: npm install\r\n npm: path=/tmp/smart-panda\r\n\r\n- name: Stop APP\r\n command: pm2 stop smart-panda\r\n args:\r\n chdir: /...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 390, "all_permissive": false }
ansible_role
luckyriverr/vagrant
8204dceb4bb26edfff3d95abb43b04df77f8b415
0
golang/ansible/roles/common
7,403
[ "no_license" ]
[ { "path": "golang/ansible/roles/common/tasks/vim.yml", "content": "---\n\n- name: yum install vim\n yum: name=vim state=latest\n\n#- name: mkdir vim-neobundle dir\n# file: path=/home/{{ login_user }}/.vim/bundle state=directory\n# sudo: yes\n\n#- name: install NeoBundle\n# git: repo=https://github.com/S...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 686, "all_permissive": false }
ansible_role
luckyriverr/vagrant
8204dceb4bb26edfff3d95abb43b04df77f8b415
0
golang/ansible/roles/go
7,403
[ "no_license" ]
[ { "path": "golang/ansible/roles/go/vars/main.yml", "content": "---\n\nsrc_dir: '/usr/local/src'\n\ngo_version: '1.6'\ngo_name: \"go{{ go_version }}.linux-amd64\"\ngo_dl_url: \"https://storage.googleapis.com/golang/{{ go_name }}.tar.gz\"\nlogin_user: vagrant\n", "license_type": "no_license", "detecte...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1271, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/analytics
7,403
[ "no_license" ]
[ { "path": "roles/analytics/tasks/main.yml", "content": "---\n\n# Tip from Splunk to change admin password and avoid password change error:\n#[ec2-user@ip-172-16-14-236 ~]$ curl -sk -u admin:i-3c97bf10 -H Content-type: application/json -X POST -d '{\"username\":\"admin\",\"password”:”<PASSWORD>\"}' https://l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 6045, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/app
7,403
[ "no_license" ]
[ { "path": "roles/app/templates/docker_containers.cfg.j2", "content": "---\n\"docker_containers\": \n{{ launched_containers.ansible_facts.docker_containers | to_nice_yaml }}\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "path": "roles/app/tasks/main.y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 462, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/bigip_app1
7,403
[ "no_license" ]
[ { "path": "roles/bigip_app1/tasks/provision_waf_depends.yml", "content": "---\n# We need to retry this tasks until it succeeds, ASM takes longer to boot\n# than some of the other LTM functionality we have been provisioning against\n# so far. \n- name: Create the ASM policy\n delegate_to: localhost\n big...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 22059, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/bigip_app2
7,403
[ "no_license" ]
[ { "path": "roles/bigip_app2/files/irule_random_snat.tcl", "content": "when RULE_INIT {\n expr srand(\"[clock clicks]\")\n set static::TARGET_VIP \"/Common/Vip1_iApp.app/Vip1_iApp_vs\"\n}\nwhen CLIENT_ACCEPTED {\n\n set a [expr int(223*rand())]\n set b [expr int(255*rand())]\n set c [expr int(...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2902, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/bigip_base
7,403
[ "no_license" ]
[ { "path": "roles/bigip_base/tasks/main.yml", "content": "---\n## Some initial setup for big ip once we can login. We need a user for rest calls. We may also want the default shell\n## to be bash, rather than tmsh. The latter is difficult to use ansible...\n\n# We specifically us the bigip_facts library b...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1658, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/bigip_cluster
7,403
[ "no_license" ]
[ { "path": "roles/bigip_cluster/tasks/main.yml", "content": "---\n- name: Configuring DSC Device objects and clustering the bigips if more than one. \n This can take a couple of minutes...\n delegate_to: localhost\n bigip_cluster:\n state: present\n username: \"{{ bigip_rest_user }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 589, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/bigip_network
7,403
[ "no_license" ]
[ { "path": "roles/bigip_network/tasks/main.yml", "content": "---\n# ---------------------------------\n# Configure network, LTM, and ASM settings which are specific to each device.\n# ---------------------------------\n\n- name: Adding/updating internal vlan\n delegate_to: localhost\n bigip_config:\n na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4038, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/bigip_system
7,403
[ "no_license" ]
[ { "path": "roles/bigip_system/README.md", "content": "bigip_system\n=============\n\nThis role will configure general system settings such as:\n\n- NTP\n- DNS\n- Syslog\n- HTTP\n- SSH\n- SNMP\n- Traffic Profiles (tcp, fastL4, etc.) that can be shared by all\n- DB keys \n- Module Resource Provisioning (for g...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 6554, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/bigip_system_aws
7,403
[ "no_license" ]
[ { "path": "roles/bigip_system_aws/tasks/main.yml", "content": "---\n# ---------------------------------\n# AWS-specific system variables\n# ---------------------------------\n\n- name: Adding/updating AWS access and secret keys\n delegate_to: localhost\n bigip_config:\n name=\"Adding/updating AWS acces...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 806, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/client
7,403
[ "no_license" ]
[ { "path": "roles/client/tasks/main.yml", "content": "---\n- name: Ensure package manager is up-to-date\n apt: update_cache=yes\n ignore_errors: True\n\n- name: Make sure apt-get resources are up-to-date\n apt: update_cache=yes\n\n- name: Install list of packages required for jmeter\n apt: pkg={{item}} s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 88229, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/docker_base
7,403
[ "no_license" ]
[ { "path": "roles/docker_base/tasks/main.yml", "content": "---\n# Since we are installed docker ourselves on our \n# home rolled Ubuntu host, lets be careful to lock down all\n# aspects so we don't need to keep testing this stuff...\n\n- name: Ensuring 'pip' is available for python package upgrades\n easy_i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 863, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/gtm_app1
7,403
[ "no_license" ]
[ { "path": "roles/gtm_app1/tasks/main.yml", "content": "# - name: Gather EIPs for VIP1\n# set_fact:\n# VipPrivateIp={{ hostvars[inventory_hostname].stack_outputs.privateIpAddress }}\n# VipEip={{ hostvars[inventory_hostname].stack_outputs.eipAddress }}\n\n- name: Setup the App1 Virtual Server on eac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2270, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/gtm_app2
7,403
[ "no_license" ]
[ { "path": "roles/gtm_app2/tasks/main.yml", "content": "---\n- name: Setup the App2 Virtual Server on each BIG-IP object \n delegate_to: localhost\n bigip_config:\n name=\"Setup the App2 Virtual Server on each BIG-IP object \"\n state=present\n host={{ ansible_ssh_host }}\n user={{ bigi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2355, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/gtm_cluster
7,403
[ "no_license" ]
[ { "path": "roles/gtm_cluster/README.md", "content": "gtm_cluster\n=============\n\nThis role will: \n- add the GTMs to a sync group using gtm_add\n- add the BIG-IPs to the sync_group using bigip_add\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 141 }, { "path":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 5365, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/gtm_conf
7,403
[ "no_license" ]
[ { "path": "roles/gtm_conf/tasks/main.yml", "content": "---\n- name: Configure GTM UDP Listener\n delegate_to: localhost\n bigip_config:\n name=\"Configure GTM UDP Listener\"\n state=present\n host={{ ansible_ssh_host }}\n user={{ bigip_rest_user }}\n password={{ <PASSWORD> }}\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4482, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/gtm_network
7,403
[ "no_license" ]
[ { "path": "roles/gtm_network/README.md", "content": "bigip_network\n=============\n\nThis role will configure base networking items such as vlans, self-ips and routes.\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 }, { "path": "roles/gtm_network/tasks/main....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1980, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/infra
7,403
[ "no_license" ]
[ { "path": "roles/infra/tasks/deploy_vpc_cft.yml", "content": "---\n- name: Determining state of deployed cloudformation stacks\n shell: \"python {{ install_path }}/bin/get_cfn_stack_state.py {{ region }} {{ env_name }}-{{ inventory_hostname }}\"\n register: initial_cfn_state\n\n- name: Teardown previous s...
{ "task_files": 18, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 28, "total_bytes": 56178, "all_permissive": false }
ansible_role
f5devcentral/aws-deployments
3a55af06fca11508230263207a2ed402fca3cb29
24
roles/inventory_manager
7,403
[ "no_license" ]
[ { "path": "roles/inventory_manager/templates/group_vars_gtms.j2", "content": "# ansible group vars for all gtm bigips which are provisioned\nansible_ssh_user: admin\nversion: {{ gtm_version }}\nlicense_throughput: {{ gtm_license_throughput }}\nlicense_model: {{ gtm_license_model }}\nlicense_package: {{ gtm_...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 5068, "all_permissive": false }
ansible_role
ankit-mjain/CICD
6d150b63b2628e5057c67f706b3d504ff835a887
0
Ansible_CD/roles/apache
7,403
[ "no_license" ]
[ { "path": "Ansible_CD/roles/apache/tasks/main.yml", "content": "---\n- name: \"install apache2\"\n become: true\n apt:\n name: [\"apache\"]\n state: latest\n update_cache: yes\n \n- name: \"install index page\"\n copy:\n src: index.html\n dest: /var/www/html/index.html\n backup: yes", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 223, "all_permissive": false }
ansible_role
ankit-mjain/CICD
6d150b63b2628e5057c67f706b3d504ff835a887
0
Ansible_CD/roles/prepared
7,403
[ "no_license" ]
[ { "path": "Ansible_CD/roles/prepared/tasks/main.yml", "content": "---\n- name: \"update apt packages\"\n become: true\n become_method: sudo\n apt:\n update_cache: yes\n\n- name: \"remove dependencies that are not required\"\n become: true\n apt:\n autoremove: yes\n", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 195, "all_permissive": false }
ansible_role
flopezag/fiware-university
5f04b2ff66d808ba2e6063093a9b09f0f4c7f763
0
ansible/roles/docker-engine
7,397
[ "permissive" ]
[ { "path": "ansible/roles/docker-engine/tasks/main.yml", "content": "###############################################\n# Install Docker Engine\n###############################################\n- name: Configure Docker TLS on Servers\n block:\n - name: Update APT cache\n apt:\n update_cache: ye...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2398, "all_permissive": true }
ansible_role
flopezag/fiware-university
5f04b2ff66d808ba2e6063093a9b09f0f4c7f763
0
ansible/roles/docker-tls
7,397
[ "permissive" ]
[ { "path": "ansible/roles/docker-tls/tasks/main.yml", "content": "###############################################\n# Configure Docker TLS on Servers\n###############################################\n---\n\n- name: Configure Docker TLS on Servers\n block:\n - name: Configure Docker for TLS\n script: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1803, "all_permissive": true }
ansible_role
flopezag/fiware-university
5f04b2ff66d808ba2e6063093a9b09f0f4c7f763
0
ansible/roles/swarm-master
7,397
[ "permissive" ]
[ { "path": "ansible/roles/swarm-master/tasks/main.yml", "content": "###############################################\n# Configure Master Swarm Node\n###############################################\n---\n\n- name: Configure Docker Swarm Master Node\n block:\n - name: Check if Docker Swarm has already been ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1107, "all_permissive": true }
ansible_role
flopezag/fiware-university
5f04b2ff66d808ba2e6063093a9b09f0f4c7f763
0
ansible/roles/swarm-workers
7,397
[ "permissive" ]
[ { "path": "ansible/roles/swarm-workers/tasks/main.yml", "content": "###############################################\n# Configure Master Swarm Node\n###############################################\n---\n\n- name: Configure Docker Swarm Worker Nodes\n block:\n - name: Check if Swarm has already been Initi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 949, "all_permissive": true }
ansible_role
pmeulen/ansible-tools
cf2ef0a75752f0411a3f8f0d14df58147e0a86ee
4
roles/common
7,397
[ "no_license" ]
[ { "path": "roles/common/handlers/main.yml", "content": "---\n\n- name: restart netfilter-persistent\n service: name=netfilter-persistent state=restarted\n\n- name: restart ntpd\n service: name=ntpd state=restarted\n\n# Include handlers for environment specific tasks\n#- include_tasks: \"{{ inventory_dir }...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1823, "all_permissive": false }
ansible_role
pmeulen/ansible-tools
cf2ef0a75752f0411a3f8f0d14df58147e0a86ee
4
roles/example
7,397
[ "no_license" ]
[ { "path": "roles/example/tasks/include_syntax.yml", "content": "---\n\n- name: Plain include\n import_tasks: example_include.yml\n\n- name: Include with var=value syntax\n import_tasks: example_include.yml variable1=First variable2=Second\n\n- name: Include with var map syntax\n import_tasks: example_inc...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 4298, "all_permissive": false }
ansible_role
mmetc/crowdsecurity.testing
cfd3f25e731742dadc6eb51c73ec07ef7bc544a6
0
roles/gcc
7,397
[ "no_license" ]
[ { "path": "roles/gcc/tasks/main.yml", "content": "# vim: set ft=yaml.ansible:\n---\n\n- name: \"Install gcc\"\n become: true\n ansible.builtin.package:\n name:\n - gcc\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 119, "all_permissive": false }
ansible_role
mmetc/crowdsecurity.testing
cfd3f25e731742dadc6eb51c73ec07ef7bc544a6
0
roles/gnu_make
7,397
[ "no_license" ]
[ { "path": "roles/gnu_make/tasks/main.yml", "content": "# vim: set ft=yaml.ansible:\n---\n\n- name: \"Install make (Linux)\"\n become: true\n ansible.builtin.package:\n name:\n - make\n when:\n - ansible_facts.system == \"Linux\"\n\n- name: \"Install gmake (bsd)\"\n become: true\n ansible.bui...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 333, "all_permissive": false }
ansible_role
mmetc/crowdsecurity.testing
cfd3f25e731742dadc6eb51c73ec07ef7bc544a6
0
roles/install_package_from_repo
7,397
[ "no_license" ]
[ { "path": "roles/install_package_from_repo/tasks/install_from_deb_repo.yml", "content": "# vim: set ft=yaml.ansible:\n---\n\n- name: \"Install stuff\"\n become: true\n ansible.builtin.package:\n name:\n - apt-transport-https\n - gnupg\n\n- name: \"Install binaries under test from the package ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1143, "all_permissive": false }
ansible_role
mmetc/crowdsecurity.testing
cfd3f25e731742dadc6eb51c73ec07ef7bc544a6
0
roles/machine_id
7,397
[ "no_license" ]
[ { "path": "roles/machine_id/tasks/main.yml", "content": "# vim: set ft=yaml.ansible:\n---\n\n- name: \"Set /etc/machine-id\"\n become: true\n ansible.builtin.copy:\n dest: /etc/machine-id\n content: \"{{ machine_id }}\"\n mode: 0o444\n\n- name: \"See if /var/lib/dbus exists\"\n ansible.builtin.s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 559, "all_permissive": false }
ansible_role
bgrablin/pi-cluster
1ae1e9899805ef08c838edac517c2fe0154ddca9
0
roles/common
7,397
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n - name: install common packages\n action: apt pkg={{item}} state=installed\n with_items:\n - apt-transport-https\n - ca-certificates\n - curl\n - software-properties-common\n - locales\n - build-essential\n - acl\n - n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 805, "all_permissive": false }
ansible_role
bgrablin/pi-cluster
1ae1e9899805ef08c838edac517c2fe0154ddca9
0
roles/docker
7,397
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n - name: Install prerequisites\n apt: \n name: \"{{item}}\"\n state: present\n with_items:\n - apt-transport-https\n - ca-certificates\n - curl\n - software-properties-common\n - name: Add Docker GPG key\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1699, "all_permissive": false }
ansible_role
alexey-medvedchikov/ansible-pgha-example
749c661f481ba8d178ea2f5434ce047eb9c911c7
4
roles/apt
7,397
[ "no_license" ]
[ { "path": "roles/apt/tasks/main.yml", "content": "---\n\n- name: set up base apt repositories\n copy:\n dest: /etc/apt/sources.list\n content: |\n {% for repo in apt_repositories_base %}{% if repo.state == 'present' %}\n {{ repo.repo }}\n {% endif %}{% endfor %}\n when: apt_repositori...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1227, "all_permissive": false }
ansible_role
alexey-medvedchikov/ansible-pgha-example
749c661f481ba8d178ea2f5434ce047eb9c911c7
4
roles/pg-performance
7,397
[ "no_license" ]
[ { "path": "roles/pg-performance/defaults/main.yml", "content": "---\n\npg_performance_install_dir: /usr/local/bin\npg_performance_report_dir: /var/www/pgperf\n\npg_performance_packages:\n - python-jinja2\n - python-yaml\n - tidy\n - nginx-light\n", "license_type": "no_license", "detected_license...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 18809, "all_permissive": false }
ansible_role
alexey-medvedchikov/ansible-pgha-example
749c661f481ba8d178ea2f5434ce047eb9c911c7
4
roles/quirks
7,397
[ "no_license" ]
[ { "path": "roles/quirks/tasks/main.yml", "content": "---\n\n- name: FIXME -- raise postgres user nofile\n copy:\n dest: /etc/security/limits.d/postgres.conf\n content: |\n postgres soft nofile 65000\n postgres hard nofile 65535\n\n- name: FIXME -- Build hosts file\n lineinfile:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 777, "all_permissive": false }
ansible_role
alexey-medvedchikov/ansible-pgha-example
749c661f481ba8d178ea2f5434ce047eb9c911c7
4
roles/zabbix-userparameters
7,397
[ "no_license" ]
[ { "path": "roles/zabbix-userparameters/tasks/main.yml", "content": "---\n\n- name: Configure postgresql zabbix UserParameters\n copy:\n src: ../zabbix/postgresql.conf\n dest: \"{{ agent_include }}/postgresql.conf\"\n notify:\n - restart zabbix-agent\n", "license_type": "no_license", "dete...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 184, "all_permissive": false }
ansible_role
slok/favorshare-orchestration
df36375fa0918ec3fe422df33461baa41fa19c0d
8
roles/app-preparation
7,405
[ "no_license" ]
[ { "path": "roles/app-preparation/tasks/main.yml", "content": "---\n\n\n- name: Create necessary paths on start up\n lineinfile:\n dest: \"/etc/rc.local\"\n insertbefore: '^exit +0'\n line: \"install -d -m 2775 -o {{ service_runner_user }} -g {{ service_runner_group }} {{ item }}\"\n with_items:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 869, "all_permissive": false }
ansible_role
slok/favorshare-orchestration
df36375fa0918ec3fe422df33461baa41fa19c0d
8
roles/authorization
7,405
[ "no_license" ]
[ { "path": "roles/authorization/templates/sudoer.j2", "content": "{{ item.name }} ALL=(ALL) NOPASSWD:ALL\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "roles/authorization/files/public_keys/readme.txt", "content": "Place here your ssh public ...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 4313, "all_permissive": false }
ansible_role
slok/favorshare-orchestration
df36375fa0918ec3fe422df33461baa41fa19c0d
8
roles/common
7,405
[ "no_license" ]
[ { "path": "roles/common/templates/hostname.j2", "content": "{{ machine_hostname }}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 22 }, { "path": "roles/common/handlers/main.yml", "content": "\n- name: Save the hostname\n hostname:\n name: \"{{ machine_h...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1253, "all_permissive": false }
ansible_role
slok/favorshare-orchestration
df36375fa0918ec3fe422df33461baa41fa19c0d
8
roles/deployment
7,405
[ "no_license" ]
[ { "path": "roles/deployment/tasks/migrations.yml", "content": "---\n\n\n- name: Sync database\n django_manage:\n command: syncdb\n app_path: \"{{ item.value.app_dir }}\"\n virtualenv: \"{{ item.value.virtualenv }}\"\n environment:\n SYSTEM_ENV: \"{{ system_env_vars['SYSTEM_ENV'] }}\"\n with_d...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 5218, "all_permissive": false }
ansible_role
slok/favorshare-orchestration
df36375fa0918ec3fe422df33461baa41fa19c0d
8
roles/haproxy
7,405
[ "no_license" ]
[ { "path": "roles/haproxy/templates/49-haproxy.conf.j2", "content": "# .. otherwise consider putting these two in /etc/rsyslog.conf instead:\n$ModLoad imudp\n$UDPServerAddress 127.0.0.1\n$UDPServerRun 514\n\n# ..and in any case, put these two in /etc/rsyslog.d/49-haproxy.conf:\nlocal1.* -{{ haproxy_log_file ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2642, "all_permissive": false }
ansible_role
slok/favorshare-orchestration
df36375fa0918ec3fe422df33461baa41fa19c0d
8
roles/nginx
7,405
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n\n\n- name: Install Nginx\n apt:\n name: \"nginx={{ nginx_version }}\"\n state: \"present\"\n tags:\n - apt\n - nginx\n\n- name: Stop Nginx\n service:\n name: \"nginx\"\n state: \"stopped\"\n tags:\n - service\n - nginx\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 4194, "all_permissive": false }
ansible_role
slok/favorshare-orchestration
df36375fa0918ec3fe422df33461baa41fa19c0d
8
roles/ntp
7,405
[ "no_license" ]
[ { "path": "roles/ntp/tasks/main.yml", "content": "---\n\n\n- name: Install NTP package\n apt:\n name: \"ntp\"\n tags:\n - install\n - ntp\n\n- name: Configure NTP\n template:\n src: ntp.conf.j2\n dest: \"/etc/ntp.conf\"\n owner: \"root\"\n group: \"root\"\n mode: 0644\n notify: R...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1597, "all_permissive": false }
ansible_role
slok/favorshare-orchestration
df36375fa0918ec3fe422df33461baa41fa19c0d
8
roles/postgresql
7,405
[ "no_license" ]
[ { "path": "roles/postgresql/tasks/main.yml", "content": "---\n\n- include: install.yml\n\n- include: configuration.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 57 }, { "path": "roles/postgresql/tasks/configuration.yml", "content": "- name: PostgreSQL | M...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1689, "all_permissive": false }
ansible_role
slok/favorshare-orchestration
df36375fa0918ec3fe422df33461baa41fa19c0d
8
roles/postgresql-postinstall
7,405
[ "no_license" ]
[ { "path": "roles/postgresql-postinstall/defaults/main.yml", "content": "postgresql_run_path: \"/var/run/postgresql\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 42 }, { "path": "roles/postgresql-postinstall/tasks/main.yml", "content": "\n\n- include: config...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 4456, "all_permissive": false }
ansible_role
slok/favorshare-orchestration
df36375fa0918ec3fe422df33461baa41fa19c0d
8
roles/supervisord
7,405
[ "no_license" ]
[ { "path": "roles/supervisord/handlers/main.yml", "content": "\n- name: Start supervisord\n service:\n name: \"supervisord\"\n state: \"restarted\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "roles/supervisord/templates/supervisord....
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2072, "all_permissive": false }