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
JeanneSimon/DemoAnsible_WordPress
ca32541bdbe05b9957f7fd3f68631e00d1f134c2
0
roles/dbserver
24
[ "no_license" ]
[ { "path": "roles/dbserver/handlers/main.yml", "content": "---\n# handlers file for dbserver\n- name: restart_mariadb\n ansible.builtin.service:\n name: mariadb\n state: restarted", "license_type": "no_license", "detected_licenses": [], "size_bytes": 122 }, { "path": "roles/dbserve...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1038, "all_permissive": false }
ansible_role
JeanneSimon/DemoAnsible_WordPress
ca32541bdbe05b9957f7fd3f68631e00d1f134c2
0
roles/webserver
24
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "---\n# tasks file for webserver\n\n- name: Installation des paquets apache2, php\n apt:\n name: \n - apache2\n - php\n - php-cli\n - php-common\n - php-curl\n - php-zip\n - php-gd\n - php-mysql\n - php-x...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 458, "all_permissive": false }
ansible_role
JeanneSimon/DemoAnsible_WordPress
ca32541bdbe05b9957f7fd3f68631e00d1f134c2
0
roles/wordpress-install
24
[ "no_license" ]
[ { "path": "roles/wordpress-install/templates/wp-config.php.j2", "content": "<?php\n\ndefine( 'DB_NAME', '{{ mysql_dbname }}' );\ndefine( 'DB_USER', '{{ mysql_user }}' );\ndefine( 'DB_PASSWORD', '{{ mysql_password }}' );\ndefine( 'DB_HOST', '{{ dbserver_host }}' );\n\ndefine( 'DB_CHARSET', 'utf8mb4' );\ndefi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3710, "all_permissive": false }
ansible_role
sarmistha-jena/AnsibleProjects
a6c057236b64ea57e8fb993f28c70d15e943acaa
0
BookAssignments/Chapter3-Vars/roles/base
24
[ "no_license" ]
[ { "path": "BookAssignments/Chapter3-Vars/roles/base/tasks/main.yaml", "content": "- name: Create devops group\n group:\n name: devops\n state: present\n- name: Create devops user\n user:\n name: devops\n state: present\n group: devops\n\n- name: Install the \"htop\" utility\n apt:\n nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 238, "all_permissive": false }
ansible_role
sarmistha-jena/AnsibleProjects
a6c057236b64ea57e8fb993f28c70d15e943acaa
0
BookAssignments/Chapter3-Vars/roles/mysql
24
[ "no_license" ]
[ { "path": "BookAssignments/Chapter3-Vars/roles/mysql/tasks/main.yml", "content": "---\n## This is main tasks file for mysql role\n## filename: roles/mysql/tasks/main.yml\n## Load vars specific to OS Family.\n#- include_vars: \"{{ ansible_os_family }}.yml\"\n# when: ansible_os_family != 'Debian'\n#- include...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1181, "all_permissive": false }
ansible_role
sarmistha-jena/AnsibleProjects
a6c057236b64ea57e8fb993f28c70d15e943acaa
0
CertGeneration/roles/client
24
[ "no_license" ]
[ { "path": "CertGeneration/roles/client/tasks/main.yaml", "content": "---\n\n- name: Create Client private key\n community.crypto.openssl_privatekey:\n path: /etc/pki/CA/private/{{ clientcert_hostname }}.key.pem\n mode: '0400'\n state: \"{{ clientcert_state }}\"\n\n- name: Create Client CSR\n comm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1470, "all_permissive": false }
ansible_role
sarmistha-jena/AnsibleProjects
a6c057236b64ea57e8fb993f28c70d15e943acaa
0
CertGeneration/roles/root
24
[ "no_license" ]
[ { "path": "CertGeneration/roles/root/defaults/main.yaml", "content": "\nrootca_country: \"\"\n\nrootca_email: \"{{ omit }}\"\n\nrootca_state_or_province: \"\"\n\nrootca_org: \"\"\n\nrootca_password: \"<PASSWORD>\"\n\nrootca_state: present", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2515, "all_permissive": false }
ansible_role
sarmistha-jena/AnsibleProjects
a6c057236b64ea57e8fb993f28c70d15e943acaa
0
JavaBuildServer/roles/docker
24
[ "no_license" ]
[ { "path": "JavaBuildServer/roles/docker/tasks/main.yaml", "content": "- name: Apt Update repositories cache\n apt:\n update_cache: yes\n\n- name: Install docker.io\n package: name=docker.io state=present\n\n- name: Install docker compose\n package: name=docker-compose state=present\n\n- name: Start do...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 358, "all_permissive": false }
ansible_role
sarmistha-jena/AnsibleProjects
a6c057236b64ea57e8fb993f28c70d15e943acaa
0
Jenkins-SetUp/roles/master
24
[ "no_license" ]
[ { "path": "Jenkins-SetUp/roles/master/tasks/main.yaml", "content": "---\n- name: Apt Update repositories cache\n apt:\n update_cache: yes\n\n- name: Install java-JRE\n package: name=openjdk-17-jre state=present\n\n- name: Install fontconfig\n package: name=fontconfig state=present\n\n- name: Add the ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 716, "all_permissive": false }
ansible_role
sarmistha-jena/AnsibleProjects
a6c057236b64ea57e8fb993f28c70d15e943acaa
0
Jenkins-SetUp/roles/slave
24
[ "no_license" ]
[ { "path": "Jenkins-SetUp/roles/slave/tasks/main.yaml", "content": "---\n- name: Apt Update repositories cache\n apt:\n update_cache: yes\n\n- name: Install java-JRE\n package: name=openjdk-17-jre state=present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 142 } ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 142, "all_permissive": false }
ansible_role
sarmistha-jena/AnsibleProjects
a6c057236b64ea57e8fb993f28c70d15e943acaa
0
logrotate/roles/test
24
[ "no_license" ]
[ { "path": "logrotate/roles/test/tasks/main.yaml", "content": "- name: Create a dummy file\n community.general.filesize:\n path: /tempo/test.log\n size: 100m\n- name: Run Logrotate\n command: logrotate -f /etc/logrotate.d/tempo\n tags:\n - logrotate", "license_type": "no_license", "detect...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 191, "all_permissive": false }
ansible_role
ashishkarnad/terrasible
069e854bd60b7768cca58c33287ee9ca47ee2195
0
cm/roles/app
24
[ "no_license" ]
[ { "path": "cm/roles/app/tasks/deploy_app.yml", "content": "- name: Creating {{app_user}} user\n become: true\n user: name={{ app_user }} state=present\n\n- name: Creating {{ app_group }} group\n become: true\n group: name={{ app_group }} state=present\n\n- name: Installing init script\n become: true\n ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2988, "all_permissive": false }
ansible_role
ashishkarnad/terrasible
069e854bd60b7768cca58c33287ee9ca47ee2195
0
cm/roles/web
24
[ "no_license" ]
[ { "path": "cm/roles/web/vars/main.yml", "content": "---\n\nsource_config_file: \"files/nginx.conf\"\ndest_config_fie: \"/etc/nginx/nginx.conf\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 84 }, { "path": "cm/roles/web/tasks/main.yml", "content": "---\n\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1006, "all_permissive": false }
ansible_role
Wassim-Kallel/devopsxb
65788e6532684195f60f3f26936eba1bc83085e2
0
roles/httpd
24
[ "no_license" ]
[ { "path": "roles/httpd/tasks/main.yml", "content": "--- \n- name: Check install apache2 \n stat: path={{INSTALL_DIR}}/apache2\n register: st\n \n- name: Creates directory log http\n file: path={{HTTP_LOG}}/{{APP_NAME}}/http state=directory mode=0777\n when: not st.stat.exists\n \n- name: Télecharger h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2222, "all_permissive": false }
ansible_role
Wassim-Kallel/devopsxb
65788e6532684195f60f3f26936eba1bc83085e2
0
roles/redis
24
[ "no_license" ]
[ { "path": "roles/redis/templates/init-redis-server.sh.j2", "content": "#! /bin/sh\n### BEGIN INIT INFO\n# Provides: redis-server\n# Required-Start: $syslog\n# Required-Stop: $syslog\n# Should-Start: $local_fs\n# Should-Stop: $local_fs\n# Default-Start: 2 3 4 5\n# Default-Stop: 0 1 6...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3047, "all_permissive": false }
ansible_role
Wassim-Kallel/devopsxb
65788e6532684195f60f3f26936eba1bc83085e2
0
roles/tomcat
24
[ "no_license" ]
[ { "path": "roles/tomcat/templates/setenv.sh.j2", "content": "export CATALINA_OPTS=\"{{HEAP_SIZE}}\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "roles/tomcat/handlers/main.yml", "content": "---\n\n- name: Start Apache Tomcat\n shell: tomcat...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2267, "all_permissive": false }
ansible_role
arifit11/hallodoc-assignment
2e8579b4f314f8ee1e96a7bbdf08870a6609ad0d
0
roles/apache2
23
[ "no_license" ]
[ { "path": "roles/apache2/tasks/main.yml", "content": "---\n# tasks file for apache2\n- name: install web components\n apt: name={{item}} state=present update_cache=yes\n with_items:\n - apache2\n - libapache2-mod-wsgi\n\n\n- name: ensure apache2 started\n service: name=apache2 state=started enabled...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 249, "all_permissive": false }
ansible_role
arifit11/hallodoc-assignment
2e8579b4f314f8ee1e96a7bbdf08870a6609ad0d
0
roles/tomcat
23
[ "no_license" ]
[ { "path": "roles/tomcat/tasks/main.yml", "content": "---\n# tasks file for tomcat\n- name: installing repo for Java 8 in Ubuntu\n apt_repository: repo='ppa:openjdk-r/ppa'\n\n- name: Install basic software\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - openjdk-8-jdk\n - tomca...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 246, "all_permissive": false }
ansible_role
Otus-DevOps-2018-09/AlexeyKondratyev_infra
be1a872da21f8dd242924fd1476726c3119a8203
0
ansible/roles/db
23
[ "no_license" ]
[ { "path": "ansible/roles/db/tasks/main.yml", "content": "---\n# tasks file for db\n- name: Show info about the env thsis host belongs to\n debug:\n msg: \"This host is in {{ env }} environment!!!\"\n- include: install_mongo.yml\n- include: config_mongo.yml\n", "license_type": "no_license", "dete...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 196, "all_permissive": false }
ansible_role
challevato/platform
f94bd4aa6d6fdbfee5b2a50a2990a429b7ec396f
0
roles/basic
23
[ "no_license" ]
[ { "path": "roles/basic/tasks/main.yml", "content": "\n- name: \"Installing Git\"\n package: pkg=git state=installed\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 63 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 63, "all_permissive": false }
ansible_role
challevato/platform
f94bd4aa6d6fdbfee5b2a50a2990a429b7ec396f
0
roles/hlprobe
23
[ "no_license" ]
[ { "path": "roles/hlprobe/defaults/main.yml", "content": "hlprobe_pypi_dependencies:\n - requests[security]\n - twisted \n - pyopenssl \n - service_identity \n - ipaddr\n\nhlprobe_apt:\n - python-pip\n - python-all-dev\n - python-pynetsnmp\n - python-geoip\n - libffi-dev\n - fping\n - nagios-plug...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 6159, "all_permissive": false }
ansible_role
challevato/platform
f94bd4aa6d6fdbfee5b2a50a2990a429b7ec396f
0
roles/webserver
23
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "- name: \"install webserver software\"\n package: name={{ item }} \n with_items:\n - httpd\n\n- name: \"Enabling proxy module\"\n apache2_module: name=proxy_http\n\n- name: \"Adding proxy configuration\"\n template: src=../files/proxy.conf dest=/e...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 330, "all_permissive": false }
ansible_role
sibinnediyoram/ansibleworks
1e19d2ad43f9ca4387e19252179ca3b511d831fc
0
playbooks/roles/mongodb
23
[ "no_license" ]
[ { "path": "playbooks/roles/mongodb/tasks/main.yml", "content": "---\n# tasks file for mongodb\n - name: copy repo file to server\n copy: src={{ mongo_repo }} dest=/etc/yum.repos.d\n\n - name: install mongodb\n yum: pkg={{ item }} state=present update_cache=yes\n with_items:\n - m...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 857, "all_permissive": false }
ansible_role
sibinnediyoram/ansibleworks
1e19d2ad43f9ca4387e19252179ca3b511d831fc
0
playbooks/roles/rabbitmq
23
[ "no_license" ]
[ { "path": "playbooks/roles/rabbitmq/tasks/main.yml", "content": "---\n# tasks file for rabbitmq\n - name: install compiler and packages\n yum: pkg={{ item }} state=present update_cache=yes\n with_items:\n - gcc\n - glibc-devel\n - make\n - ncurses-devel\n - op...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2098, "all_permissive": false }
ansible_role
sibinnediyoram/ansibleworks
1e19d2ad43f9ca4387e19252179ca3b511d831fc
0
playbooks/roles/webvirtmgr
23
[ "no_license" ]
[ { "path": "playbooks/roles/webvirtmgr/defaults/main.yml", "content": "---\n# defaults file for webvirtmgr\n when:\n \"ansible_os_family == 'CentOS'\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 }, { "path": "playbooks/roles/webvirtmgr/templates/webvirt...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3776, "all_permissive": false }
ansible_role
RageKnify/ansible-roles
3a703cc5d3cb2535aab1cb1df55a6383a3e59f59
1
roles/bot
23
[ "no_license" ]
[ { "path": "roles/bot/templates/bot-update.sh.j2", "content": "#!/bin/sh\n# {{ ansible_managed }}\n\n( docker pull {{ image_name }}:{{ image_tag }} && \\\n\t# if running we need to stop it\n\tif docker ps -a --format {{ \"'{{.Names}}'\" }} | grep -Eq \"^{{ bot_name }}\\$\"; then\n\t\tdocker stop {{ bot_name ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1831, "all_permissive": false }
ansible_role
RageKnify/ansible-roles
3a703cc5d3cb2535aab1cb1df55a6383a3e59f59
1
roles/caddy
23
[ "no_license" ]
[ { "path": "roles/caddy/handlers/main.yml", "content": "- name: caddy reload\n community.docker.docker_container_exec:\n container: caddy\n command: \"caddy reload --config /config/Caddyfile\"\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 153 }, ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2226, "all_permissive": false }
ansible_role
RageKnify/ansible-roles
3a703cc5d3cb2535aab1cb1df55a6383a3e59f59
1
roles/diun
23
[ "no_license" ]
[ { "path": "roles/diun/defaults/main.yml", "content": "gotify_endpoint: \"https://gotify.jplborges.pt\"\ngotify_token: \"<PASSWORD>\"\ngotify_priority: \"7\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 95 }, { "path": "roles/diun/tasks/main.yml", "content"...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1310, "all_permissive": false }
ansible_role
RageKnify/ansible-roles
3a703cc5d3cb2535aab1cb1df55a6383a3e59f59
1
roles/docker
23
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n# tasks for docker role\n\n- name: Install docker and python3-docker\n ansible.builtin.package:\n name:\n - docker\n - python3-docker\n state: present\n become: yes\n tags:\n - setup\n when: ansible_distribution == \"Fedora\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 485, "all_permissive": false }
ansible_role
RageKnify/ansible-roles
3a703cc5d3cb2535aab1cb1df55a6383a3e59f59
1
roles/focalboard
23
[ "no_license" ]
[ { "path": "roles/focalboard/templates/focalboard-caddyfile.j2", "content": "# {{ ansible_managed }}\n\nfocalboard.{{ common_name }} {\n\treverse_proxy focalboard:{{ focalboard_port }}\n}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 106 }, { "path": "roles/foca...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1809, "all_permissive": false }
ansible_role
RageKnify/ansible-roles
3a703cc5d3cb2535aab1cb1df55a6383a3e59f59
1
roles/gotify
23
[ "no_license" ]
[ { "path": "roles/gotify/tasks/main.yml", "content": "# play for gotify role\n\n- name: Ensure host is part of docker and caddy\n ansible.builtin.assert:\n that:\n - docker\n - caddy\n msg: \"'gotify' requires 'docker' and 'caddy'\"\n tags:\n - always\n\n- name: Create gotify directories...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1485, "all_permissive": false }
ansible_role
RageKnify/ansible-roles
3a703cc5d3cb2535aab1cb1df55a6383a3e59f59
1
roles/portainer
23
[ "no_license" ]
[ { "path": "roles/portainer/handlers/main.yml", "content": "- import_tasks: roles/caddy/handlers/main.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 46 }, { "path": "roles/portainer/tasks/main.yml", "content": "# play for portainer role\n\n- name: Ensure ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1293, "all_permissive": false }
ansible_role
RageKnify/ansible-roles
3a703cc5d3cb2535aab1cb1df55a6383a3e59f59
1
roles/wallabag
23
[ "no_license" ]
[ { "path": "roles/wallabag/defaults/main.yml", "content": "wallabag_port: 80\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 18 }, { "path": "roles/wallabag/templates/wallabag-caddyfile.j2", "content": "# {{ ansible_managed }}\n\nwallabag.{{ common_name }} {\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1527, "all_permissive": false }
ansible_role
sbaerlocher/ansible.virtualization
a5ce25aa2dfcaaeadb1debe2bb7163930fce27d1
4
roles/packer
23
[ "no_license" ]
[ { "path": "roles/packer/vars/Linux.yml", "content": "---\n# vars file for packer\n\n__packer_path: /usr/local/bin\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 58 }, { "path": "roles/packer/vars/Windows.yml", "content": "---\n# vars file for packer in Windo...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 11, "total_bytes": 4416, "all_permissive": false }
ansible_role
sbaerlocher/ansible.virtualization
a5ce25aa2dfcaaeadb1debe2bb7163930fce27d1
4
roles/qemu_guest_agent
23
[ "no_license" ]
[ { "path": "roles/qemu_guest_agent/meta/main.yml", "content": "---\ngalaxy_info:\n author: '<NAME> (https://sbaerlocher.ch)'\n description: 'Role for installing Qemu Guest Agent on Linux or Windows'\n license: MIT\n min_ansible_version: 2.9\n platforms:\n - name: EL\n versions:\n - 5\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 2763, "all_permissive": false }
ansible_role
sbaerlocher/ansible.virtualization
a5ce25aa2dfcaaeadb1debe2bb7163930fce27d1
4
roles/vagrant
23
[ "no_license" ]
[ { "path": "roles/vagrant/defaults/main.yml", "content": "---\n# defaults file for vagrant\n\n# here you can specify the version to be installed.\n# By default, the role itself searches for the latest version.\nvagrant_version: '{{ current_version }}'\n", "license_type": "no_license", "detected_licen...
{ "task_files": 7, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 11, "total_bytes": 3519, "all_permissive": false }
ansible_role
sbaerlocher/ansible.virtualization
a5ce25aa2dfcaaeadb1debe2bb7163930fce27d1
4
roles/virtio
23
[ "no_license" ]
[ { "path": "roles/virtio/README.md", "content": "# Ansible Role: virtio\n\n## Description\n\nThis Ansible role installs the VirtIO driver and updates it also for new releases under Windows.\n\n## Role Variables\n\n### virtio_version\n\nhere you can specify the version to be installed.\nBy default, the role i...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 8922, "all_permissive": false }
ansible_role
sbaerlocher/ansible.virtualization
a5ce25aa2dfcaaeadb1debe2bb7163930fce27d1
4
roles/virtualbox
23
[ "no_license" ]
[ { "path": "roles/virtualbox/defaults/main.yml", "content": "---\n# defaults file for virtualbox\n\n# Here you can specify the version to be installed.\n# By default, the role itself searches for the latest version.\nvirtualbox_version: '{{ current_version }}'\n\n# Repository url from where virtualbox can be...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 4111, "all_permissive": false }
ansible_role
sbaerlocher/ansible.virtualization
a5ce25aa2dfcaaeadb1debe2bb7163930fce27d1
4
roles/virtualbox_extension_pack
23
[ "no_license" ]
[ { "path": "roles/virtualbox_extension_pack/tasks/main.yml", "content": "---\n# tasks file for virtualbox_extension_pack\n\n- name: add OS specific variables\n include_vars: '{{ loop_vars }}'\n with_first_found:\n - files:\n - '{{ distribution }}-{{ distribution_verion }}.yml'\n - '{{ dist...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 4693, "all_permissive": false }
ansible_role
sbaerlocher/ansible.virtualization
a5ce25aa2dfcaaeadb1debe2bb7163930fce27d1
4
roles/virtualbox_guest_additions
23
[ "no_license" ]
[ { "path": "roles/virtualbox_guest_additions/meta/main.yml", "content": "---\ngalaxy_info:\n author: '<NAME> (https://sbaerlocher.ch)'\n description: 'Ansible galaxy role for installing VirtualBox guest additions on Windows images.'\n license: MIT\n min_ansible_version: 2.9\n platforms:\n - name: Win...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 4762, "all_permissive": false }
ansible_role
navidpaya/automaton
f21569f932cf431b88a19dd24ed71bb62a40d8a8
1
roles/workstation
23
[ "no_license" ]
[ { "path": "roles/workstation/tasks/zsh.yml", "content": "---\n- name: Symlink few configuration files from the repo\n file: src={{ dotfiles }}/zshrc\n dest=~/.zshrc\n state=link\n force=yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 150 }, ...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2305, "all_permissive": false }
ansible_role
Learning-aws-devops/ansible
d64e03b9a7792d540d6a61162bcf941dcea53444
0
roles/backend
23
[ "no_license" ]
[ { "path": "roles/backend/vars/main.yml", "content": "COMPONENT: \"backend\"\nAPP_PATH: \"/app\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/backend/tasks/main.yml", "content": "- name: Disabling Nodejs ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1818, "all_permissive": false }
ansible_role
Learning-aws-devops/ansible
d64e03b9a7792d540d6a61162bcf941dcea53444
0
roles/common
23
[ "no_license" ]
[ { "path": "roles/common/tasks/pre-req.yml", "content": "- name: Cleanup Of Old App Directory\n ansible.builtin.file:\n path: \"{{APP_PATH}}\"\n state: absent\n\n- name: Creating App Directory\n ansible.builtin.file:\n path: \"{{APP_PATH}}\"\n state: directory\n\n- name: Download & Extracting {...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 396, "all_permissive": false }
ansible_role
Learning-aws-devops/ansible
d64e03b9a7792d540d6a61162bcf941dcea53444
0
roles/frontend
23
[ "no_license" ]
[ { "path": "roles/frontend/tasks/main.yml", "content": "- name: Install nginx\n ansible.builtin.package:\n name: nginx\n state: present \n\n- name: Copying proxy file \n ansible.builtin.template:\n src: proxy.conf\n dest: /etc/nginx/default.d/expense.conf \n\n- name: App Prequisite Tasks\n an...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 632, "all_permissive": false }
ansible_role
Learning-aws-devops/ansible
d64e03b9a7792d540d6a61162bcf941dcea53444
0
roles/mysql
23
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "- name: Install {{COMPONENT}}\n ansible.builtin.package:\n name: mysql-server\n state: present \n\n- name: Starting {{COMPONENT}}\n ansible.builtin.systemd_service:\n name: mysqld \n state: started\n enabled: true\n\n- name: Configuring ho...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 332, "all_permissive": false }
ansible_role
TovmasHovhannisyan/Docker_pxc_Ansible
9702d2d1c4b90ca68e7b1c0e1f3ab7265896e4ec
0
roles/Docker_container_pxc
23
[ "no_license" ]
[ { "path": "roles/Docker_container_pxc/tasks/main.yml", "content": "---\n\n \n - name: Create pxc container\n docker_container:\n name: \"{{ ansible_hostname }}\"\n image: percona/percona-xtradb-cluster:5.7\n env:\n MYSQL_ROOT_PASSWORD: \"{{ mysql_root_pass }}\"\n CLUSTER_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 410, "all_permissive": false }
ansible_role
TovmasHovhannisyan/Docker_pxc_Ansible
9702d2d1c4b90ca68e7b1c0e1f3ab7265896e4ec
0
roles/Docker_create_service_pxc_bootstrap_container
23
[ "no_license" ]
[ { "path": "roles/Docker_create_service_pxc_bootstrap_container/tasks/main.yml", "content": "---\n\n - name: Set command and arguments\n docker_swarm_service:\n name: \"{{ service_name }}\"\n mode: replicated\n replicas: 3\n networks:\n - \"{{ overlay_network_pxc }}\"\n imag...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 859, "all_permissive": false }
ansible_role
TovmasHovhannisyan/Docker_pxc_Ansible
9702d2d1c4b90ca68e7b1c0e1f3ab7265896e4ec
0
roles/Docker_swarm_init
23
[ "no_license" ]
[ { "path": "roles/Docker_swarm_init/tasks/main.yml", "content": "---\n\n- name: Check if Swarm is Already Initialized\n shell: docker node ls\n register: swarm_status\n ignore_errors: true\n \n- name: Init a new swarm with default parameters\n docker_swarm:\n state: present\n when: swarm_status.rc ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 487, "all_permissive": false }
ansible_role
TovmasHovhannisyan/Docker_pxc_Ansible
9702d2d1c4b90ca68e7b1c0e1f3ab7265896e4ec
0
roles/Docker_swarm_join
23
[ "no_license" ]
[ { "path": "roles/Docker_swarm_join/tasks/main.yml", "content": "---\n\n- name: Add nodes\n docker_swarm:\n state: join\n advertise_addr: \"{{ ansible_hostname }}\"\n join_token: \"{{ hostvars['swarm_manager']['swarm']['stdout'] }}\"\n remote_addrs: \"{{ hostvars['swarm_manager']['ansible_defaul...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 260, "all_permissive": false }
ansible_role
TovmasHovhannisyan/Docker_pxc_Ansible
9702d2d1c4b90ca68e7b1c0e1f3ab7265896e4ec
0
roles/Install_Packages
23
[ "no_license" ]
[ { "path": "roles/Install_Packages/tasks/main.yml", "content": "---\n \n \n - name: Add Docker GPG key\n apt_key: url=https://download.docker.com/linux/ubuntu/gpg\n\n - name: Add Docker APT repository\n apt_repository:\n repo: deb [arch=amd64] https://download.docker.com/linux/{{ansible_distribution|l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 488, "all_permissive": false }
ansible_role
dereksamuel/Platziverse-1
fe196ad336132d04de2163b56808d9e8f793194f
0
platziverse-deploy/roles/database
23
[ "no_license" ]
[ { "path": "platziverse-deploy/roles/database/vars/main.yml", "content": "postgresql_database:\n - name: platziverse\n owner: derek\n hstore: yes\npostgresql_users:\n - name: derek\n pass: <PASSWORD>\n encrypted: no\npostgresql_user_privileges:\n - name: derek\n db: platziverse\n priv: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 382, "all_permissive": false }
ansible_role
acirimia/testora
b8dea8e91c68f9f6d7b2ab638cde37704d4c1605
0
ansible_playground/Roles/Firewalld
21
[ "no_license" ]
[ { "path": "ansible_playground/Roles/Firewalld/tasks/main.yml", "content": "---\n- name: Install Firewalld\n yum:\n name: firewalld\n state: latest\n\n- name: Start and Enable the Firewalld Service\n service:\n name: firewalld\n state: started\n enabled: true\n\n- name: Allow connection from...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 711, "all_permissive": false }
ansible_role
acirimia/testora
b8dea8e91c68f9f6d7b2ab638cde37704d4c1605
0
ansible_playground/Roles/JenkinsDependencies
21
[ "no_license" ]
[ { "path": "ansible_playground/Roles/JenkinsDependencies/tasks/main.yml", "content": "- name: Install Epel-Release\n yum: \n name: epel-release\n state: latest\n\n- name: Install Python-Pip\n yum: \n name: python-pip\n state: latest\n \n- name: Install Docker-Py\n command: pip install python-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 219, "all_permissive": false }
ansible_role
acirimia/testora
b8dea8e91c68f9f6d7b2ab638cde37704d4c1605
0
ansible_playground/Roles/Nexus
21
[ "no_license" ]
[ { "path": "ansible_playground/Roles/Nexus/tasks/main.yml", "content": "---\n- name: Pull nexus image\n docker_image:\n name: sonatype/nexus3\n source: pull\n\n- name: Run nexus container\n command: docker run -dit -p 8081:8081 --restart=always --name nexus sonatype/nexus3\n ignore_errors: yes\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 955, "all_permissive": false }
ansible_role
acirimia/testora
b8dea8e91c68f9f6d7b2ab638cde37704d4c1605
0
ansible_playground/Roles/Tomcat
21
[ "no_license" ]
[ { "path": "ansible_playground/Roles/Tomcat/tasks/main.yml", "content": "---\n- name: Pull tomcat image\n docker_image:\n name: tomcat\n source: pull\n\n- name: Run tomcat container\n command: >\n docker run -dit \\\n --publish 8080:8080 \\\n --mount source=/shared_folder,target \\\n --re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 288, "all_permissive": false }
ansible_role
Demo2886/Cyb04-onl
c9c72c5d01a609ea72a4f69877d7c1100b8c176c
0
💀Task14/Ansible/ansible-project/roles/password_policy
21
[ "no_license" ]
[ { "path": "💀Task14/Ansible/ansible-project/roles/password_policy/tasks/main.yml", "content": "- name: Установить libpam-cracklib\n apt:\n name: libpam-cracklib\n state: present\n\n- name: Настроить политику паролей в /etc/login.defs\n lineinfile:\n dest: /etc/login.defs\n regexp: '^{{ item.ke...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1231, "all_permissive": false }
ansible_role
turbana/systemsetup
5afcda39bc33f499c461adb1f5ed7a7121d26ee9
0
roles/auth-services
21
[ "no_license" ]
[ { "path": "roles/auth-services/blueprints/stages/standard-source-enrollment-prompt.yaml", "content": "version: 1\nmetadata:\n name: Stage - standard-source-enrollment-prompt\ncontext: {}\nentries:\n#~~~~~~~~~~~~~~~~~~~~~~~~~~~ Dependency blueprints ~~~~~~~~~~~~~~~~~~~~~~~~~~~~#\n- model: authentik_blueprin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 28, "total_bytes": 38838, "all_permissive": false }
ansible_role
turbana/systemsetup
5afcda39bc33f499c461adb1f5ed7a7121d26ee9
0
roles/configure-arr-apps
21
[ "no_license" ]
[ { "path": "roles/configure-arr-apps/templates/_sonarr.yml.j2", "content": " server:\n address: http://media-server_sonarr\n # address: 127.0.0.1\n port: {{ service_catalog.sonarr.port }}\n config:\n host:\n analyticsEnabled: false\n ui:\n{% include \"_ui_common.yml.j2\" +%}\n naming...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 38941, "all_permissive": false }
ansible_role
turbana/systemsetup
5afcda39bc33f499c461adb1f5ed7a7121d26ee9
0
roles/dns-host
21
[ "no_license" ]
[ { "path": "roles/dns-host/tasks/cloudflare.yml", "content": "- name: CF ({{ dns_name }}) - Create temp file\n local_action:\n module: ansible.builtin.tempfile\n register: tmp\n changed_when: false\n \n- name: CF ({{ dns_name }}) - Copy script to temp file\n local_action:\n module: ansible.builtin...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2153, "all_permissive": false }
ansible_role
turbana/systemsetup
5afcda39bc33f499c461adb1f5ed7a7121d26ee9
0
roles/docker-core-services
21
[ "no_license" ]
[ { "path": "roles/docker-core-services/vars/main.yml", "content": "docker_site: docker-core-services\n\ndocker_services:\n - homepage\n - dozzle\n # - portainer\n \nXXX_docker_services:\n homepage:\n port: 3000\n proxy:\n base:\n https://homepage.{{ site_name }}\n socket_proxy_env:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 705, "all_permissive": false }
ansible_role
turbana/systemsetup
5afcda39bc33f499c461adb1f5ed7a7121d26ee9
0
roles/docker-host
21
[ "no_license" ]
[ { "path": "roles/docker-host/defaults/main.yml", "content": "docker_group: docker\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 21 }, { "path": "roles/docker-host/vars/main.yml", "content": "docker_user: lab-admin\ndocker_group: docker\ndocker_timezone: \"{...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1835, "all_permissive": false }
ansible_role
turbana/systemsetup
5afcda39bc33f499c461adb1f5ed7a7121d26ee9
0
roles/docker-services
21
[ "no_license" ]
[ { "path": "roles/docker-services/templates/ombi.yml.j2", "content": "services:\n {{ container_name }}:\n image: lscr.io/linuxserver/ombi:latest\n container_name: {{ container_name }}\n security_opt:\n - no-new-privileges:true\n restart: unless-stopped\n networks:\n - {{ container_n...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 37, "total_bytes": 37333, "all_permissive": false }
ansible_role
turbana/systemsetup
5afcda39bc33f499c461adb1f5ed7a7121d26ee9
0
roles/lab-host
21
[ "no_license" ]
[ { "path": "roles/lab-host/defaults/main.yml", "content": "update_cf_dns: false\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 21 }, { "path": "roles/lab-host/tasks/main.yml", "content": "- name: Install basic packages\n ansible.builtin.apt:\n pkg:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 289, "all_permissive": false }
ansible_role
turbana/systemsetup
5afcda39bc33f499c461adb1f5ed7a7121d26ee9
0
roles/media-server
21
[ "no_license" ]
[ { "path": "roles/media-server/tasks/main.yml", "content": "- name: Install media tools\n ansible.builtin.apt:\n pkg:\n - radeontop\n\n- name: Setup systcl tweaks\n ansible.builtin.copy:\n src: files/sysctl.conf\n dest: /etc/sysctl.conf\n mode: 0644\n\n- name: Ensure group {{ media_group }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1115, "all_permissive": false }
ansible_role
turbana/systemsetup
5afcda39bc33f499c461adb1f5ed7a7121d26ee9
0
roles/reverse-proxy
21
[ "no_license" ]
[ { "path": "roles/reverse-proxy/templates/zetian.conf.j2", "content": "# zetian service\nserver {\n server_name zetian.{{ site_name }};\n include includes/listen_ssl.conf;\n include includes/gzip.conf;\n include includes/proxy_auth_server.conf;\n\n root /var/www/zetian;\n index index.html;\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1111, "all_permissive": false }
ansible_role
turbana/systemsetup
5afcda39bc33f499c461adb1f5ed7a7121d26ee9
0
roles/ssl-controller
21
[ "no_license" ]
[ { "path": "roles/ssl-controller/tasks/main.yml", "content": "- name: Setup SSL directory\n ansible.builtin.file:\n dest: \"{{ ssl_root }}\"\n state: directory\n owner: root\n group: root\n mode: 0700\n \n- name: Write Cloudflare credential file(s)\n ansible.builtin.copy:\n dest: \"{{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1974, "all_permissive": false }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/chronos-sync
21
[ "permissive" ]
[ { "path": "roles/chronos-sync/tasks/main.yml", "content": "## Chronos-sync\n#\n# Install the `chronos-sync` ruby script distributed as part of Chronos. Once\n# installed the script can be used for keeping version controlled Chronos job\n# definitions up-to-date with a Chronos instance.\n---\n- name: Install...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 707, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/common
21
[ "permissive" ]
[ { "path": "roles/common/tasks/main.yml", "content": "## Common\n#\n# Install base packages and updates `/etc/hosts` with mappings to all hosts in\n# the cluster.\n---\n- name: Set facts\n set_fact:\n mesos_zk_url: \"zk://{{ groups.zookeeper | join(':2181,') }}:2181/mesos\"\n mesos_hostname: \"{{ansib...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 5188, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/dcos-cli
21
[ "permissive" ]
[ { "path": "roles/dcos-cli/tasks/main.yml", "content": "## DCOS Command Line Interface\n#\n# Install DCOS CLI and configure for use \"inside the cluster\" with configured\n# master nodes. The configuration relies on Mesos DNS to provide the Mesos master\n# and Marathon endpoints.\n---\n- name: Install PIP\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 992, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/docker-engine
21
[ "permissive" ]
[ { "path": "roles/docker-engine/handlers/main.yml", "content": "- name: docker_restart\n service: name=docker state=restarted\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 62 }, { "path": "roles/docker-engine/tasks/main.yml", "conten...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1676, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/docker-engine-auth
21
[ "permissive" ]
[ { "path": "roles/docker-engine-auth/defaults/main.yml", "content": "---\n# Credentials for authenticating access to private Docker registries.\n#\n# For each registry, specify the server, username, password\n# and email. E.g.:\n#```yaml\n#docker_credentials:\n# - server: docker.example.com\n# username: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1433, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/docker-registry
21
[ "permissive" ]
[ { "path": "roles/docker-registry/defaults/main.yml", "content": "---\n# Settings that will be used when creating the Marathon application descriptor.\n#\n# Example:\n#```yaml\n#---\n#docker_registry:\n# vhost: docker.mesos.dev\n# auth:\n# htpasswd:\n# realm: Mediative\n# credentials: []\n# s...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3320, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/glusterfs
21
[ "permissive" ]
[ { "path": "roles/glusterfs/tasks/main.yml", "content": "## GlusterFS\n#\n# Install GlusterFS and configure peers and a cluster-wide volume to mount.\n---\n- name: add GlusterFS repo\n apt_repository: repo=\"deb http://ppa.launchpad.net/gluster/glusterfs-{{ glusterfs_version }}/ubuntu trusty main\" state=pr...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2057, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/java
21
[ "permissive" ]
[ { "path": "roles/java/tasks/main.yml", "content": "## Java\n#\n# Install the Java SDK.\n---\n- name: install Debian\n include: Debian.yml\n when: ansible_os_family == \"Debian\"\n\n- name: install Redhat\n include: RedHat.yml\n when: ansible_os_family == \"RedHat\"\n", "license_type": "permissive", ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 685, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/marathon-lb
21
[ "permissive" ]
[ { "path": "roles/marathon-lb/tasks/main.yml", "content": "## Marathon Load Balancer\n#\n# Install and configure HAProxy and marathon-lb as system services. Once\n# installed it will automatically map external domains to internal Marathon\n# services using application descriptor labels.\n---\n# FIXME: Switch...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3213, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/mesos
21
[ "permissive" ]
[ { "path": "roles/mesos/tasks/Debian.yml", "content": "---\n- name: Add Mesosphere APT key\n apt_key: keyserver=keyserver.ubuntu.com id=E56151BF state=present\n ignore_errors: true\n\n- name: Add Mesosphere APT repo\n apt_repository: repo=\"deb http://repos.mesosphere.io/{{ ansible_distribution | lower }}...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 5206, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/mesos-dns
21
[ "permissive" ]
[ { "path": "roles/mesos-dns/handlers/main.yml", "content": "---\n- name: Restart Mesos DNS service\n service: name=mesos-dns state=restarted\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 80 }, { "path": "roles/mesos-dns/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1775, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/mesos-master
21
[ "permissive" ]
[ { "path": "roles/mesos-master/defaults/main.yml", "content": "---\n# The Marathon and Chronos framework versions\n#\n# A `*` is added after the version when installing, which permits to leave out\n# version suffixes added by Mesosphere. To install the latest use `latest`,\n# to install latest 0.13 use `0.13...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3296, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/mesos-slave
21
[ "permissive" ]
[ { "path": "roles/mesos-slave/tasks/main.yml", "content": "## Mesos Agent\n#\n# Configure the Mesos agent to use both the docker and mesos containerizers and\n# enable the `cgroup` isolator, since the default POSIX isolator doesn’t provide\n# the same robust isolation guarantees. To gracefully handle larger ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2567, "all_permissive": true }
ansible_role
mediative/mesos-stack
1a0b0287016816717fac5ab4e63aacdb0c5456d9
5
roles/zookeeper
21
[ "permissive" ]
[ { "path": "roles/zookeeper/tasks/main.yml", "content": "## ZooKeeper\n#\n# Install ZooKeeper as a system service.\n#\n### Inventory Configuration\n#\n# - `zoo_id`\n#\n# Set the ZooKeeper node ID for a specific host. Each node must have a\n# cluster unique ID. The preferred way to set this is via the Ans...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 865, "all_permissive": true }
ansible_role
Abdoul31/preprod-az-devops
78384e296a8e2dd6e28c6e7c383988673785a32d
0
ansible-project/roles/nginx
21
[ "no_license" ]
[ { "path": "ansible-project/roles/nginx/tasks/main.yml", "content": "- name: Installer Nginx\n apt:\n name: nginx\n state: present\n update_cache: yes\n\n- name: Activer et démarrer Nginx\n service:\n name: nginx\n state: started\n enabled: yes\n\n- name: Ouvrir le port 80 dans UFW\n ufw...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 275, "all_permissive": false }
ansible_role
andremanzanosp/vagrant-cd
943e90f76534d59f093bca64adbe7507969ad765
0
ansible/roles/crontab
21
[ "permissive" ]
[ { "path": "ansible/roles/crontab/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - /etc/ansible/roles/crontab", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 84 }, { "path": "ansible/roles/crontab/han...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 459, "all_permissive": true }
ansible_role
andremanzanosp/vagrant-cd
943e90f76534d59f093bca64adbe7507969ad765
0
ansible/roles/deploy-goapp
21
[ "permissive" ]
[ { "path": "ansible/roles/deploy-goapp/tasks/main.yml", "content": "---\n# tasks file for /etc/ansible/roles/deploy-goapp\n\n- name: Build goapp image\n docker_image:\n path: /vagrant/docker-goapp\n name: goapp\n source: build\n- name: Run Goapp container\n docker_container:\n name: goapp\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 425, "all_permissive": true }
ansible_role
andremanzanosp/vagrant-cd
943e90f76534d59f093bca64adbe7507969ad765
0
ansible/roles/https-proxy
21
[ "permissive" ]
[ { "path": "ansible/roles/https-proxy/handlers/main.yml", "content": "---\n# handlers file for /etc/ansible/roles/https-proxy", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 54 }, { "path": "ansible/roles/https-proxy/tests/test.yml", "con...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 560, "all_permissive": true }
ansible_role
phongnx1/test-ansible-apache-nginx
41b6434a74b9834f86b31da28d6d3f086561538a
0
roles/app.apache_conf
21
[ "no_license" ]
[ { "path": "roles/app.apache_conf/tasks/main.yml", "content": "---\r\n\r\n- name: Create document root directory if it doesn't exist\r\n file:\r\n path: /usr/local/apache2/htdocs/point.gmo.jp/\r\n state: directory\r\n\r\n- name: Create vhosts config directory if it doesn't exist\r\n file:\r\n path...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 4827, "all_permissive": false }
ansible_role
phongnx1/test-ansible-apache-nginx
41b6434a74b9834f86b31da28d6d3f086561538a
0
roles/app.apache_install
21
[ "no_license" ]
[ { "path": "roles/app.apache_install/tasks/main.yml", "content": "---\n- name: install yum packages\n yum:\n name: \"{{ item }}\"\n state: present\n with_items:\n - wget\n - gcc\n - openssl\n - openssl-devel\n - openldap-devel\n\n- name: download sourse\n get_url:\n url: \"{{ apach...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1424, "all_permissive": false }
ansible_role
phongnx1/test-ansible-apache-nginx
41b6434a74b9834f86b31da28d6d3f086561538a
0
roles/app.nginx_conf
21
[ "no_license" ]
[ { "path": "roles/app.nginx_conf/templates/conf/nginx.conf", "content": "user nginx;\r\n\r\nworker_processes 1;\r\npid /var/run/nginx.pid;\r\nworker_rlimit_nofile 3072;\r\n\r\nevents {\r\n worker_connections 1024;\r\n}\r\n\r\n\r\nhttp {\r\n include /etc/nginx/mime.types;\r\n de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2678, "all_permissive": false }
ansible_role
phongnx1/test-ansible-apache-nginx
41b6434a74b9834f86b31da28d6d3f086561538a
0
roles/pcextreme.repo-remi
21
[ "no_license" ]
[ { "path": "roles/pcextreme.repo-remi/README.md", "content": "# Ansible Role: Remi repository\n\nInstalls Remi repository\n\n## Supported platforms\n\n```\nCentOS 6 & 7\n```\n\n## Requirements\n\nNone\n\n## Role Variables\n\nEnable remi-php55:\n\n```\nremi_enable_php55: true\n```\n\nEnable remi-php56:\n\n```...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 993, "all_permissive": false }
ansible_role
wickett/continuous-delivery-class
6b165148f6394a484f2ec61be6d5943061aa7e9e
5
jenkins_home/ansible/roles/word-cloud-generator
21
[ "no_license" ]
[ { "path": "jenkins_home/ansible/roles/word-cloud-generator/tasks/main.yml", "content": "---\n- name: Create app directory\n file:\n path: /opt/cd_class\n state: directory\n\n- name: Download word cloud generator\n get_url:\n url: http://{{ lookup('env','nexus_pwd') }}@nexus:8081/repository/word-c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1329, "all_permissive": false }
ansible_role
kzkick2nd/lamp-vm-vagrant
f66de126b857c8b10a89912100e8e45dfc6425f0
0
provision/roles/centos6-init
21
[ "no_license" ]
[ { "path": "provision/roles/centos6-init/tasks/main.yml", "content": "---\n# - name: Upgrade all packages.\n# yum: name=* state=latest\n\n# SELinux\n\n- name: Install package for SELinux management\n yum: name={{ item }} state=present\n with_items:\n - libselinux-python\n\n- name: Set SELinux turned o...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1511, "all_permissive": false }
ansible_role
kzkick2nd/lamp-vm-vagrant
f66de126b857c8b10a89912100e8e45dfc6425f0
0
provision/roles/centos6-lamp
21
[ "no_license" ]
[ { "path": "provision/roles/centos6-lamp/tasks/main.yml", "content": "---\n- name: Install LAMP Basic.\n yum: name={{ item }} state=present\n with_items:\n - httpd\n - mysql-server\n - php\n - php-mysql\n\n- name: Install LAMP Optional.\n yum: name={{ item }} state=present\n with_items:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1187, "all_permissive": false }
ansible_role
kzkick2nd/lamp-vm-vagrant
f66de126b857c8b10a89912100e8e45dfc6425f0
0
provision/roles/centos6-timezone-ja
21
[ "no_license" ]
[ { "path": "provision/roles/centos6-timezone-ja/tasks/main.yml", "content": "---\n# ServerTime\n- name: Set localtimezone jp\n command: cp -p /usr/share/zoneinfo/Japan /etc/localtime\n\n- name: Install ntpd\n yum: name=ntp state=present\n\n- name: ntpd should be stopped\n service:\n name: ntpd\n sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 568, "all_permissive": false }
ansible_role
hogehoge789/play-book_nginx-install
1e77098e08b9f02919acdf9a2d5442e8724d28ba
0
roles/nginx-service
25
[ "no_license" ]
[ { "path": "roles/nginx-service/tasks/main.yml", "content": "---\n# tasks file for nginx-service\n\n- name: EPEL Repository Install\n yum_repository:\n name: epel\n description: EPEL YUM repo\n baseurl: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm\n\n- name: Nginx Install\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 409, "all_permissive": false }
ansible_role
colmoc/k8smicroservicesapp_aws
47f3e7be300f7f717b7bc01dbc59bd5ec62b29eb
0
.circleci/ansible/roles/setup
25
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/setup/tasks/main.yml", "content": "---\n- name: Create directory\n file:\n path: ~/backend\n state: directory\n \n- name: \"testing\"\n shell: |\n ls -l\n pwd\n cd /home/ec2-user/\n mkdir testdir\n cd testdir\n touch testfile.txt\n whoami > ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 929, "all_permissive": false }
ansible_role
corrupt952/home
3988f8202f8e46cb94a97786a5d0568102416ae7
0
ansible/roles/kubernetes-common
25
[ "no_license" ]
[ { "path": "ansible/roles/kubernetes-common/tasks/main.yaml", "content": "---\n- name: Apt\n become: yes\n block:\n # The reason for updating /etc/apt/sources list.d/kubernetes.list first is that running Playbook on a device that already exists will result in an error if the key has been updated.\n #...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 7558, "all_permissive": false }
ansible_role
corrupt952/home
3988f8202f8e46cb94a97786a5d0568102416ae7
0
ansible/roles/kubernetes-control-plane
25
[ "no_license" ]
[ { "path": "ansible/roles/kubernetes-control-plane/tasks/main.yaml", "content": "---\n- name: Configure kubeadm and kubelet\n become: yes\n block:\n - name: Check for kubeadm\n register: check_kubeadm\n ansible.builtin.stat:\n path: /etc/kubernetes/admin.conf\n - name: Initialize kub...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 930, "all_permissive": false }
ansible_role
corrupt952/home
3988f8202f8e46cb94a97786a5d0568102416ae7
0
ansible/roles/rtx1300
25
[ "no_license" ]
[ { "path": "ansible/roles/rtx1300/tasks/main.yaml", "content": "---\n# The following configurations are not managed using:\n# - administrator\n# - login\n# - user\n# - console\n# - schedule\n# - ssh host key\n# - Lua scripts\n\n- name: Configure home network\n yamaha_network.rtx.rtx_config:\n save_when: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 9842, "all_permissive": false }
ansible_role
PacktPublishing/Mastering-Ansible-Third-Edition
8c355ec6695f057f409d45097b0a6c3d4c460a9e
54
Chapter01/example08/roles/simple
25
[ "no_license" ]
[ { "path": "Chapter01/example08/roles/simple/tasks/main.yaml", "content": "--- \n- name: print a variable \n debug: \n var: derp \n changed_when: true \n notify: say hi \n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 100, "all_permissive": false }
ansible_role
PacktPublishing/Mastering-Ansible-Third-Edition
8c355ec6695f057f409d45097b0a6c3d4c460a9e
54
Chapter07/example18/roles/simple
25
[ "no_license" ]
[ { "path": "Chapter07/example18/roles/simple/tasks/main.yml", "content": "--- \n- name: print a variable \n debug: \n var: derp\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 55 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 55, "all_permissive": false }
ansible_role
PacktPublishing/Mastering-Ansible-Third-Edition
8c355ec6695f057f409d45097b0a6c3d4c460a9e
54
Chapter10/example08/roles/microA
25
[ "no_license" ]
[ { "path": "Chapter10/example08/roles/microA/tasks/main.yaml", "content": "--- \n- name: install microA package \n debug: \n msg: \"This is installing A\" \n changed_when: true \n notify: restart microA \n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 128 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 245, "all_permissive": false }