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
MarcSahib/k3s
52b48022237377ce5a13cbeb6cfcc580e9ce44be
0
roles/upgrade
6,716
[ "permissive" ]
[ { "path": "roles/upgrade/tasks/main.yml", "content": "---\n\n- name: Run the equivalent of \"apt update\" as a separate step.\n ansible.builtin.apt:\n update_cache: yes\n\n- name: Run the equivalent of \"apt ugrade\" as a separate step.\n ansible.builtin.apt:\n name: \"*\"\n state: latest\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 232, "all_permissive": true }
ansible_role
miohtama/LibertyMusicStore
d87fbfcb1e6d594cbc5f88e5881b0af300c6e942
31
ansible/roles/libertymusicstore
6,716
[ "no_license" ]
[ { "path": "ansible/roles/libertymusicstore/tasks/main.yml", "content": "- name: Install Liberty Music Store dependencies\n apt: pkg={{ item }} update_cache=no cache_valid_time=86400\n with_items:\n - git\n - supervisor\n - build-essential\n - libfreetype6-dev\n - libncurses5-dev\n - libx...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4742, "all_permissive": false }
ansible_role
miohtama/LibertyMusicStore
d87fbfcb1e6d594cbc5f88e5881b0af300c6e942
31
ansible/roles/ssl_self_signed
6,716
[ "no_license" ]
[ { "path": "ansible/roles/ssl_self_signed/defaults/main.yml", "content": "self_signed_certificate_base: /etc/server.ssl", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 }, { "path": "ansible/roles/ssl_self_signed/tasks/main.yml", "content": "---\n# Handle crea...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 645, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/apache
6,716
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "--- \n - name: Add apache ondrej latest repository\n apt_repository: \n repo: 'ppa:ondrej/apache2'\n - name: Install Apache HTTP Server\n apt:\n name: apache2\n state: present\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2992, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/awstools
6,716
[ "no_license" ]
[ { "path": "roles/awstools/tasks/main.yml", "content": "---\n - name: Install Perl packages through APT\n apt: \n name: \"{{ item }}\"\n update_cache: yes \n force_apt_get: yes\n state: present\n with_items:\n - 'libwww-perl'\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 792, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/elasticsearch
6,716
[ "no_license" ]
[ { "path": "roles/elasticsearch/tasks/main.yml", "content": "---\n - name: Install prerequisites for Elasticsearch \n apt: \n name: gnupg2\n update_cache: yes\n force_apt_get: yes\n state: present\n - name: Install Java\n apt:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 875, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/firewall
6,716
[ "no_license" ]
[ { "path": "roles/firewall/tasks/main.yml", "content": "---\n - name: Enable ufw \n ufw:\n state: enabled\n logging: 'on'\n - name: Allow OpenSSH on ufw\n ufw:\n rule: allow\n name: OpenSSH\n - name: Allow port 80 on ufw\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 475, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/mongodb
6,716
[ "no_license" ]
[ { "path": "roles/mongodb/tasks/main.yml", "content": "---\n - name: Install MongoDB\n apt: \n name: mongodb\n update_cache: yes \n force_apt_get: yes\n state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 166, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/mysql
6,716
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n - name: Install MySQL\n apt: \n name: \"{{ item }}\"\n update_cache: yes \n force_apt_get: yes\n state: present\n with_items:\n - 'mysql-server'\n - 'mysql...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 690, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/nginx
6,716
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "--- \n - name: Install nginx\n apt: \n name: nginx \n state: latest\n\n - name: Setup php VirtualHost\n template:\n src: \"roles/nginx/templates/nginxphp.j2\"\n dest: \"/etc/nginx/sites-available/{{ http_conf }}\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1724, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/node
6,716
[ "no_license" ]
[ { "path": "roles/node/tasks/main.yml", "content": "---\n - name: Node Version Manager\n shell: >\n curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash\n args:\n creates: \"{{ ansible_env.HOME }}/.nvm/nvm.sh\"\n \n - name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 459, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/php
6,716
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "--- \n - name: Add PHP PPA repository\n apt_repository:\n repo: 'ppa:ondrej/php'\n - name: Install PHP packages through APT\n apt: \n name: \"{{ item }}\"\n update_cache: yes \n fo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 951, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/postgres
6,716
[ "no_license" ]
[ { "path": "roles/postgres/tasks/main.yml", "content": "---\n - name: Install PostgreSQL\n apt: \n name: postgresql\n update_cache: yes \n force_apt_get: yes\n state: present \n ", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 178, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/redis
6,716
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yml", "content": "---\n - name: Install redis\n apt: \n name: redis-server\n update_cache: yes \n force_apt_get: yes\n state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 169, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/ssl
6,716
[ "no_license" ]
[ { "path": "roles/ssl/tasks/main.yml", "content": "---\n - name: Add certbot repository\n apt_repository:\n repo: 'ppa:certbot/certbot'\n - name: Install certbot\n apt:\n name: certbot\n update_cache: yes\n force_apt_get: yes\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 696, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/supervisor
6,716
[ "no_license" ]
[ { "path": "roles/supervisor/tasks/main.yml", "content": "---\n - name: Install supervisor\n apt: \n name: supervisor\n update_cache: yes \n force_apt_get: yes\n state: present", "license_type": "no_license", "detected_licenses": [], "si...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 172, "all_permissive": false }
ansible_role
squareboat/ansible-webserver-scripts
58f66519cc99f00628e5ada81034341b291bdd4e
9
roles/system
6,716
[ "no_license" ]
[ { "path": "roles/system/tasks/main.yml", "content": "--- \n - name: Create SSH-Key using ssh-keygen for ubuntu user\n user:\n name: ubuntu\n generate_ssh_key: yes\n ssh_key_bits: 4096\n ssh_key_file: .ssh/id_rsa\n\n - name: Set system timezo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1712, "all_permissive": false }
ansible_role
xseededucation/ansible-max-automation
3e61a9fbd190a748db283cbf69c8274c7384581b
0
roles/setup_app
6,716
[ "no_license" ]
[ { "path": "roles/setup_app/vars/main.yaml", "content": "---\npackages: \"aes-js request request-promise crypto\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 54 }, { "path": "roles/setup_app/tasks/run_apps.yaml", "content": "---\n- name: Tear down existing...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 4165, "all_permissive": false }
ansible_role
xseededucation/ansible-max-automation
3e61a9fbd190a748db283cbf69c8274c7384581b
0
roles/zerotier
6,716
[ "no_license" ]
[ { "path": "roles/zerotier/tasks/install_zero_tier.yaml", "content": "---\n- name: Installing ZERO Tier\n shell:\n 'curl -s https://raw.githubusercontent.com/zerotier/ZeroTierOne/master/doc/contact%40zerotier.com.gpg | gpg --import && \\\n if z=$(curl -s https://install.zerotier.com/ | gpg); then echo...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 563, "all_permissive": false }
ansible_role
emacslisp/automation
8cf5066f24a443c7f21bc8e580b3c25f6e27c895
0
ansible/roles/jdk8
6,716
[ "permissive" ]
[ { "path": "ansible/roles/jdk8/tasks/main.yml", "content": "---\n- name: java | install java\n apt: name=default-jdk state=present\n sudo: true", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 82 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 82, "all_permissive": true }
ansible_role
termlen0/network-engine-roledemo
116c92193a0cc6bf026e7d7fc4669bfe98318cbb
1
roles/ios_check_acls
6,716
[ "no_license" ]
[ { "path": "roles/ios_check_acls/tasks/main.yaml", "content": "#TODO: Check if the needed vars are supplied:\n # protocol\n # SRC: IP/network\n # DST: IP/network\n # DST: port\n\n#TODO: Check that the IOS(provider) role is included\n- name: INVOKE THE ACL CHECKER FROM THE IOS PROVIDER ROLE\n include_rol...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 8483, "all_permissive": false }
ansible_role
EugenMol/Md-SA2-24-23
0c22d8ee3f6ff8ce360d31a902dd8707802a59ad
0
2.Ansible/roles/web_server
6,716
[ "no_license" ]
[ { "path": "2.Ansible/roles/web_server/tasks/main.yml", "content": "\n---\n# tasks file for web_server\n- name: Set authorized key taken from file\n authorized_key: \n user: root\n state: present\n key: \"{{ lookup('file', '~/.ssh/id_rsa.pub') }}\"\n- name: Install package\n apt:\n name: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 839, "all_permissive": false }
ansible_role
benjiao/airports
2990febb7ce04218dbeaab3c9fc5e8abf9b68588
0
vagrant/playbooks/roles/airports
6,716
[ "no_license" ]
[ { "path": "vagrant/playbooks/roles/airports/tasks/main.yml", "content": "---\n- name: Install app apt dependencies\n become: true\n apt: name={{item}} state=installed\n with_items:\n - libgeos-dev\n\n- name: Install python dependencies\n become: true\n apt: name={{item}} state=installed\n with_item...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1585, "all_permissive": false }
ansible_role
benjiao/airports
2990febb7ce04218dbeaab3c9fc5e8abf9b68588
0
vagrant/playbooks/roles/postgis
6,716
[ "no_license" ]
[ { "path": "vagrant/playbooks/roles/postgis/tasks/main.yml", "content": "---\n\n- name: Ensure PostGIS dependencies are installed\n become: true\n apt: name={{item}} state=installed\n with_items:\n - libgdal-dev\n - libpq-dev\n - python-psycopg2\n\n- name: Ensure apt key for PostgreSQL is downloa...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2750, "all_permissive": false }
ansible_role
mykaua/docker-swarm-vagrant
1ff7ba5d5435b24b38f194c68d07b705b58a4fe2
0
roles/docker_install
6,756
[ "no_license" ]
[ { "path": "roles/docker_install/tasks/main.yml", "content": "---\n##Docker Install\n- name: Install Docker from repo for Centos 7\n yum:\n name: \"{{repo_docker}}\"\n state: present\n notify: Restart docker\n\n- name: add user '{{ansible_user}}' to group docker\n user:\n name: '{{ansible_user}}'...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 426, "all_permissive": false }
ansible_role
jasonlee06/mytest
17b9feefdbd85d1bda6a351f937392d0ff07dae9
0
code/roles/create_banner_template
6,756
[ "no_license" ]
[ { "path": "code/roles/create_banner_template/tasks/post_feature_banner.yml", "content": "---\n - name: Create Feature Template\n uri:\n url: https://{{ansible_host}}:{{ansible_port}}/dataservice/device\n method: GET\n return_content: yes\n validate_certs: no\n body_format: json\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1194, "all_permissive": false }
ansible_role
jasonlee06/mytest
17b9feefdbd85d1bda6a351f937392d0ff07dae9
0
code/roles/deactive_policy
6,756
[ "no_license" ]
[ { "path": "code/roles/deactive_policy/tasks/post_feature_banner.yml", "content": "---\n - name: Create Feature Template\n uri:\n url: https://{{ansible_host}}:{{ansible_port}}/dataservice/template/policy/vsmart/activate/{{policyid}}\n method: POST\n return_content: yes\n validate_cer...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 517, "all_permissive": false }
ansible_role
ktenzer/pitbull
542cbf2f14cd71a68fa30ad94ba0c7c4d741d909
0
roles/validate-role-binding
6,756
[ "permissive" ]
[ { "path": "roles/validate-role-binding/handlers/main.yml", "content": "---\n# handlers file for pitbull\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 32 }, { "path": "roles/validate-role-binding/defaults/main.yml", "content": "---\n#...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 392, "all_permissive": true }
ansible_role
ktenzer/pitbull
542cbf2f14cd71a68fa30ad94ba0c7c4d741d909
0
roles/validate-service-accounts
6,756
[ "permissive" ]
[ { "path": "roles/validate-service-accounts/tasks/main.yml", "content": "---\n- name: Remove unauthorized service accounts\n k8s:\n state: absent\n api_version: v1\n kind: ServiceAccount\n namespace: \"{{ meta.namespace }}\"\n name: \"{{ meta.name }}\"\n when: meta.name not in allowed_sas\n"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 276, "all_permissive": true }
ansible_role
tingting-xu-antea/ansible_tutorial
10aca1ef1a96a0af69049093937879626f0a0be6
0
roles/base
6,756
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "- name: add ssh key for simone\n authorized_key:\n user: simone\n key: \"<KEY>\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 83 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 83, "all_permissive": false }
ansible_role
OscarLopezEns/oracle
d4438f2ade0bb5561df00a1397e81a14c26a21f7
0
roles/oracle_ansible
6,756
[ "no_license" ]
[ { "path": "roles/oracle_ansible/tasks/identify.yml", "content": "---\n- name: Find small tablespaces (< 40 GB) in Critical alert status\n oracle_sql: hostname={{ hostname }} service_name={{ service_name }} user={{ user }} password={{ <PASSWORD> }} sql=\"{{ sql_list_small_tbs_critical }}\"\n environment: \...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3550, "all_permissive": false }
ansible_role
OscarLopezEns/oracle
d4438f2ade0bb5561df00a1397e81a14c26a21f7
0
roles/solaris_ansible
6,756
[ "no_license" ]
[ { "path": "roles/solaris_ansible/tasks/main.yml", "content": "---\n# Test\n- include: dependencies.yml\n- include: configuration.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 68 }, { "path": "roles/solaris_ansible/files/test.yml", "content": "# Test pla...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1739, "all_permissive": false }
ansible_role
nullconfig/ansible_designs
6593861b1805a3d30d931d155e0a0e7fb7f80eec
0
roles/doube_push
6,756
[ "no_license" ]
[ { "path": "roles/doube_push/tasks/main.yml", "content": "- name: Get latest deploy script - Stage\r\n get_url:\r\n url: \"{{ URL }}\"\r\n dest: /root/java-deploy.sh\r\n mode: '0755'\r\n url_username: \"{{ deploy_user }}\"\r\n url_password: '{{ deploy_pass }}'\r\n validate_certs: no\r\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 273, "all_permissive": false }
ansible_role
charliek/ansible-example
636ccd6a0810712adba3715452b8e621dfcf7208
0
roles/mysql
6,756
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n- name: Install MySQL server and client\n apt: pkg={{ item }} update_cache=yes\n sudo: yes\n with_items:\n - mysql-common-5.6\n - mysql-server-5.6\n - mysql-client-5.6\n - python-mysqldb\n\n- name: Change root user password on first run...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1944, "all_permissive": false }
ansible_role
rockymadden/canvas-lms-cloud
9910ed12bd162fbad2df7b8eed800314bca59d0e
50
ansible/roles/apache
6,756
[ "no_license" ]
[ { "path": "ansible/roles/apache/templates/etc/apache2/sites-available/canvas.conf.j2", "content": "<VirtualHost *:8080>\n ServerName {{ environments[this_environment].canvas.hostname }}\n{% if environments[this_environment].canvas.file_store == 'local' %}\n ServerAlias {{ environments[this_environment].ca...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2174, "all_permissive": false }
ansible_role
rockymadden/canvas-lms-cloud
9910ed12bd162fbad2df7b8eed800314bca59d0e
50
ansible/roles/canvas
6,756
[ "no_license" ]
[ { "path": "ansible/roles/canvas/templates/var/canvas/config/database.yml.j2", "content": "{% for k, v in environments.items() %}\n{{ k }}:\n adapter: postgresql\n encoding: utf8\n database: canvas_{{ k }}\n{% if this_size == 'localhost' %}\n host: 127.0.0.1\n{% elif this_size == 'small' %}\n host: {{ h...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 16, "total_bytes": 10471, "all_permissive": false }
ansible_role
rockymadden/canvas-lms-cloud
9910ed12bd162fbad2df7b8eed800314bca59d0e
50
ansible/roles/common
6,756
[ "no_license" ]
[ { "path": "ansible/roles/common/handlers/main.yml", "content": "---\n\n- name: reload iptables-persistent service\n service: name=iptables-persistent state=restarted\n\n- name: reload sysctl configuration\n command: /sbin/sysctl -p\n\n- name: restart networking service\n service: name=networking state=re...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 6874, "all_permissive": false }
ansible_role
rockymadden/canvas-lms-cloud
9910ed12bd162fbad2df7b8eed800314bca59d0e
50
ansible/roles/nginx
6,756
[ "no_license" ]
[ { "path": "ansible/roles/nginx/templates/etc/nginx/nginx.conf.j2", "content": "user www-data;\n{% if this_size == 'localhost' %}\nworker_processes 1;\n{% else %}\nworker_processes {{ ansible_processor_cores }};\n{% endif %}\npid /run/nginx.pid;\n\nevents {\n\tworker_connections 1024;\n}\n\nhttp {\n\tinclude...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 6535, "all_permissive": false }
ansible_role
rockymadden/canvas-lms-cloud
9910ed12bd162fbad2df7b8eed800314bca59d0e
50
ansible/roles/postgresql
6,756
[ "no_license" ]
[ { "path": "ansible/roles/postgresql/templates/etc/postgresql/9.3/main/pg_ctl.conf.j2", "content": "pg_ctl_options = ''\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 20 }, { "path": "ansible/roles/postgresql/templates/var/lib/postgresql/9.3/main/recovery.conf.j2...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 7013, "all_permissive": false }
ansible_role
rockymadden/canvas-lms-cloud
9910ed12bd162fbad2df7b8eed800314bca59d0e
50
ansible/roles/redis
6,756
[ "no_license" ]
[ { "path": "ansible/roles/redis/tasks/main.yml", "content": "---\n\n- name: install redis related packages\n apt: pkg=redis-server state=latest update_cache=yes cache_valid_time=3600\n tags: redis\n\n- name: configure redis\n template: src=etc/redis/redis.conf.j2 dest=/etc/redis/redis.conf\n notify: rest...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 352, "all_permissive": false }
ansible_role
mmahmoodictbd/devops-for-developers-workshop
0ed9665f84a140d698ab379b7ec2f77c7a9cea4f
0
examples/sample-ansible-playbook/roles/deploy-java-app
6,756
[ "no_license" ]
[ { "path": "examples/sample-ansible-playbook/roles/deploy-java-app/tasks/redeploy.yml", "content": "---\n\n\n- name: Git pull {{ app_git_repo }}\n git:\n repo: '{{ app_git_repo }}'\n dest: /usr/{{ app_name }}/{{ app_git_repo_name }}\n update: yes\n\n\n", "license_type": "no_license", "detec...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2405, "all_permissive": false }
ansible_role
neokjames/PurpleLab
07122247ad0ca237e6177c2e3e1d936d54d68e21
1
ESXi/ansible/roles/common
6,756
[ "no_license" ]
[ { "path": "ESXi/ansible/roles/common/tasks/main.yml", "content": "---\n\n- name: Installing SysInternals Tools\n win_shell: \".\\\\install-sysinternals.ps1\"\n args:\n chdir: 'c:\\vagrant\\scripts'\n register: sysinternals\n failed_when: \"'Exception' in sysinternals.stdout\"\n\n- debug: msg=\"{{ sys...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1573, "all_permissive": false }
ansible_role
neokjames/PurpleLab
07122247ad0ca237e6177c2e3e1d936d54d68e21
1
ESXi/ansible/roles/cribl
6,756
[ "no_license" ]
[ { "path": "ESXi/ansible/roles/cribl/tasks/main.yml", "content": "- name: Download and extract Cribl\n become: yes\n unarchive:\n src: https://cdn.cribl.io/dl/2.2.2/cribl-2.2.2-daa210f8-linux-x64.tgz\n dest: /opt/\n creates: /opt/cribl/bin/\n remote_src: yes\n\n- name: Install Cribl\n args: \n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 566, "all_permissive": false }
ansible_role
neokjames/PurpleLab
07122247ad0ca237e6177c2e3e1d936d54d68e21
1
ESXi/ansible/roles/dc
6,756
[ "no_license" ]
[ { "path": "ESXi/ansible/roles/dc/tasks/main.yml", "content": "---\n\n- name: Hostname -> DC\n win_hostname:\n name: dc\n register: res\n\n- name: Reboot\n win_reboot:\n when: res.reboot_required\n\n- name: Set HostOnly IP Address\n win_shell: \"New-NetIPAddress –InterfaceAlias Ethernet1 –AddressFami...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3445, "all_permissive": false }
ansible_role
neokjames/PurpleLab
07122247ad0ca237e6177c2e3e1d936d54d68e21
1
ESXi/ansible/roles/guacamole
6,756
[ "no_license" ]
[ { "path": "ESXi/ansible/roles/guacamole/tasks/main.yml", "content": "- name: Download and extract Guacamole Server\n become: yes\n unarchive:\n src: http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/1.2.0/source/guacamole-server-1.2.0.tar.gz\n dest: /opt/\n creates: /opt/guacamo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1841, "all_permissive": false }
ansible_role
neokjames/PurpleLab
07122247ad0ca237e6177c2e3e1d936d54d68e21
1
ESXi/ansible/roles/splunk
6,756
[ "no_license" ]
[ { "path": "ESXi/ansible/roles/splunk/tasks/main.yml", "content": "---\n\n- name: Set hostname to splunk\n hostname:\n name: splunk\n become: yes\n\n- name: Create a directory if it does not exist\n file:\n path: /vagrant\n state: directory\n mode: '0755'\n become: yes\n\n- name: Copy vagrant...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 5630, "all_permissive": false }
ansible_role
neokjames/PurpleLab
07122247ad0ca237e6177c2e3e1d936d54d68e21
1
ESXi/ansible/roles/win10
6,756
[ "no_license" ]
[ { "path": "ESXi/ansible/roles/win10/tasks/main.yml", "content": "---\n\n- name: Hostname -> WIN10\n win_hostname:\n name: win10\n register: res\n\n- name: Reboot\n win_reboot:\n when: res.reboot_required\n\n- name: Set HostOnly IP Address\n win_shell: \"New-NetIPAddress –InterfaceAlias Ethernet1 –Ad...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1449, "all_permissive": false }
ansible_role
cockies13/cloud-lab
5407df15168098ef96496a913f92b584ff3ed38f
0
roles/osp-network
6,756
[ "no_license" ]
[ { "path": "roles/osp-network/tasks/main.yml", "content": " - os_network:\n cloud: ospcloud\n state: present\n name: ext_network_1196\n external: true\n - os_subnet:\n cloud: ospcloud\n state: present\n network_name: ext_network_1196\n name: external_subnet_1196\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1239, "all_permissive": false }
ansible_role
jquintero17/opencart-playbook
dc7cf83e3ffa5635bf952fbdb6366a7a83521af8
0
roles/common
6,796
[ "no_license" ]
[ { "path": "roles/common/tasks/main-old.yml", "content": "---\n- name: Update resolv.conf\n template: \n src=resolv.conf.j2\n dest=/etc/resolv.conf\n become: yes\n become_method: sudo\n\n- name: Install base packages\n yum:\n name:\n - wget\n - curl\n - zlib\n - wget\n - curl\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1291, "all_permissive": false }
ansible_role
jquintero17/opencart-playbook
dc7cf83e3ffa5635bf952fbdb6366a7a83521af8
0
roles/deploy-agents
6,796
[ "no_license" ]
[ { "path": "roles/deploy-agents/tasks/main.yml", "content": "---\n\n- name: Remove existing sensor if it exists\n yum:\n name: tet-sensor\n state: absent\n vars:\n ansible_python_interpreter: /usr/bin/python\n become: yes\n become_method: sudo\n\n- name: Cleanup installation folder\n file:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 832, "all_permissive": false }
ansible_role
jquintero17/opencart-playbook
dc7cf83e3ffa5635bf952fbdb6366a7a83521af8
0
roles/nfs-client
6,796
[ "no_license" ]
[ { "path": "roles/nfs-client/tasks/main.yml", "content": "---\n- name: Install NFS Client packages\n yum:\n name: nfs-utils\n state: present\n vars:\n ansible_python_interpreter: /usr/bin/python\n become: yes\n become_method: sudo\n\n- name: Configure NFS (avoid dynamic ports)\n template:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 913, "all_permissive": false }
ansible_role
jquintero17/opencart-playbook
dc7cf83e3ffa5635bf952fbdb6366a7a83521af8
0
roles/nginx
6,796
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Add NGINX repository (7.x)\n yum_repository:\n name: nginx\n description: NGINX YUM repo\n baseurl: http://nginx.org/packages/centos/7/$basearch/\n gpgcheck: no\n vars:\n ansible_python_interpreter: /usr/bin/python\n become: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1047, "all_permissive": false }
ansible_role
jquintero17/opencart-playbook
dc7cf83e3ffa5635bf952fbdb6366a7a83521af8
0
roles/opencart
6,796
[ "no_license" ]
[ { "path": "roles/opencart/tasks/mysql.yml", "content": "---\n - name: Install MySQL utils\n yum:\n name:\n - MySQL-python\n - perl-Digest-MD5\n - python2-PyMySQL\n state: latest\n vars:\n ansible_python_interpreter: /usr/bin/python\n become: yes\n become_meth...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 896, "all_permissive": false }
ansible_role
jquintero17/opencart-playbook
dc7cf83e3ffa5635bf952fbdb6366a7a83521af8
0
roles/percona
6,796
[ "no_license" ]
[ { "path": "roles/percona/tasks/main.yml", "content": "---\n - include: install.yml\n - include: configure.yml\n - include: bootstrap.yml\n - include: secure.yml\n\n - name: Start MySQL Service\n command: systemctl start <EMAIL>\n become: yes\n become_method: sudo\n when: bootstrapping == fa...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1518, "all_permissive": false }
ansible_role
jquintero17/opencart-playbook
dc7cf83e3ffa5635bf952fbdb6366a7a83521af8
0
roles/remove-agents
6,796
[ "no_license" ]
[ { "path": "roles/remove-agents/tasks/main.yml", "content": "---\n\n- name: Remove existing sensor\n yum:\n name: tet-sensor\n state: absent\n vars:\n ansible_python_interpreter: /usr/bin/python\n become: yes\n become_method: sudo\n\n- name: Remove installation folder\n file:\n state: absent...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 297, "all_permissive": false }
ansible_role
jquintero17/opencart-playbook
dc7cf83e3ffa5635bf952fbdb6366a7a83521af8
0
roles/ssh
6,796
[ "no_license" ]
[ { "path": "roles/ssh/tasks/main.yml", "content": "---\n- name: Install SSH keys\n authorized_key:\n user: root\n state: present\n key: '{{ item }}'\n with_file:\n - public_keys/rtappend.pub\n become: yes\n become_method: sudo\n tags:\n - ssh\n - ssh-keys\n", "license_type": "no_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 216, "all_permissive": false }
ansible_role
jquintero17/opencart-playbook
dc7cf83e3ffa5635bf952fbdb6366a7a83521af8
0
roles/tetration
6,796
[ "no_license" ]
[ { "path": "roles/tetration/tasks/main.yml", "content": "---\n\n- name: Remove existing sensor\n yum:\n name: tet-sensor\n state: absent\n vars:\n ansible_python_interpreter: /usr/bin/python\n become: yes\n become_method: sudo\n\n- name: Ensure dependencies installed\n yum:\n name: \"{{ pack...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1183, "all_permissive": false }
ansible_role
jquintero17/opencart-playbook
dc7cf83e3ffa5635bf952fbdb6366a7a83521af8
0
roles/wordpress
6,796
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/configure.yml", "content": "---\n# - name: Fetch random salts for WordPress config\n# local_action: command curl https://api.wordpress.org/secret-key/1.1/salt/\n# register: wp_salt\n# when: \"'wp01' in inventory_hostname\"\n\n - name: Copy WordPress config file\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3331, "all_permissive": false }
ansible_role
benabineri/ubuntu-xenial-cis-benchmark
da73a848c627acb7fc3a3f872a33297e9fc8b383
0
roles/benabineri.ubuntu-xenial-cis-benchmark
6,796
[ "no_license" ]
[ { "path": "roles/benabineri.ubuntu-xenial-cis-benchmark/tasks/main.yml", "content": "---\n- name: blacklist filesystems\n copy:\n src: cis-blacklist-filesystems.conf\n dest: /etc/modprobe.d/\n owner: root\n group: root\n mode: 0644\n register: reboot\n\n- include: check_filesystems.yml\n\n-...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 7624, "all_permissive": false }
ansible_role
OlehKuryshko/IF-108.DevOps-Demo-2-D-tester
db4809ae13b2e8951744ebee788f30db02fe90f9
0
ansible/roles/docker
6,796
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n- name: Add Docker repo\n get_url:\n url: https://download.docker.com/linux/centos/docker-ce.repo\n dest: /etc/yum.repos.d/docer-ce.repo\n become: yes\n\n- name: Enable Docker Edge repo\n ini_file:\n dest: /etc/yum.repos.d/docer-c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1241, "all_permissive": false }
ansible_role
OlehKuryshko/IF-108.DevOps-Demo-2-D-tester
db4809ae13b2e8951744ebee788f30db02fe90f9
0
ansible/roles/kubectl
6,796
[ "no_license" ]
[ { "path": "ansible/roles/kubectl/tasks/main.yml", "content": "---\n- name: generate ingress-nginx file\n local_action: template src=/home/centos/ansible/roles/kubectl/template/ingress.yml.j2 dest=/home/centos/kuber/ingress-nginx.yml mode=0777\n\n- name: generate bastion.sh file\n local_action: template sr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2553, "all_permissive": false }
ansible_role
OlehKuryshko/IF-108.DevOps-Demo-2-D-tester
db4809ae13b2e8951744ebee788f30db02fe90f9
0
ansible/roles/mysql
6,796
[ "no_license" ]
[ { "path": "ansible/roles/mysql/tasks/main.yml", "content": "- name: install mysql script\n shell: mkdir -p /home/centos/db/\n\n- name: copy dtapi_full.sql\n template: src=/home/centos/ansible/roles/mysql/template/dtapi_full.sql dest=/home/centos/db/dtapi_full.sql owner=root group=root mode=0777\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 666, "all_permissive": false }
ansible_role
RedHatCRE/toolbox
7cd1ddfeb79f0d47a8893bba7181d343e86b7b38
6
provision/roles/docker
6,796
[ "permissive" ]
[ { "path": "provision/roles/docker/vars/ubuntu.yaml", "content": "---\ndocker_dependency_packages:\n - ca-certificates\n - curl\n - gnupg\n - lsb-release\n\ndocker_packages:\n - docker-ce\n - docker-ce-cli\n - containerd.io\n\ndocker_download_base_url: \"https://download.docker.com/linux\"\n\narchitec...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2541, "all_permissive": true }
ansible_role
RedHatCRE/toolbox
7cd1ddfeb79f0d47a8893bba7181d343e86b7b38
6
provision/roles/gitlab_runner
6,796
[ "permissive" ]
[ { "path": "provision/roles/gitlab_runner/vars/fedora.yaml", "content": "---\ngitlab_runner_download_base_url: \"https://gitlab-runner-downloads.s3.amazonaws.com/latest/rpm/gitlab-runner_{{ repository_architecture }}.rpm\"\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2821, "all_permissive": true }
ansible_role
vskiev/ansible2
cd5f8d1fc09b544a2fecece24e52f5d134578ba9
0
lamp/roles/common
6,796
[ "no_license" ]
[ { "path": "lamp/roles/common/tasks/main.yml", "content": "---\n - name: install ntp\n yum: name=ntp state=present\n tags: ntp\n \n - name: configure ntp file\n template: src=ntp.conf.j2 dest=/etc/ntp.conf \n tags: ntp\n notify: restart ntp \n \n - name: start ntp server\n service...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 439, "all_permissive": false }
ansible_role
vskiev/ansible2
cd5f8d1fc09b544a2fecece24e52f5d134578ba9
0
lamp/roles/db
6,796
[ "no_license" ]
[ { "path": "lamp/roles/db/templates/my.cnf.j2", "content": "[mysqld]\ndatadir=/var/lib/mysql\nsocket=/var/lib/mysql/mysql.sock\nuser=mysql\nsymbolic-links=0\nport={{ mysql_port }}\n\n[mysql_safe]\nlog-error=/var/log/mysqld.log\npid-file=/var/run/mysqld/mysqld.pid", "license_type": "no_license", "dete...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1276, "all_permissive": false }
ansible_role
sfromm/ansible-playbooks
b11eb68a24c568a3c404396d569b9e6c412fbc27
65
roles/chromium
6,796
[ "no_license" ]
[ { "path": "roles/chromium/tasks/main.yml", "content": "---\n- name: install fedora-chromium yum repo\n command: yum-config-manager --add-repo {{chromium_repo}}\n creates=/etc/yum.repos.d/fedora-chromium-stable.repo\n\n- name: install rpm gpg key\n rpm_key: key={{chromium_key}} state=present\n\n-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 484, "all_permissive": false }
ansible_role
sfromm/ansible-playbooks
b11eb68a24c568a3c404396d569b9e6c412fbc27
65
roles/common
6,796
[ "no_license" ]
[ { "path": "roles/common/defaults/main.yml", "content": "---\ndebian:\n prereq_pkgs: \n - python-apt \n - python-pycurl\n signing_key: https://ftp-master.debian.org/keys/archive-key-7.0.asc\n apt:\n sources:\n - url: http://http.us.debian.org/debian\n components: \"{{ansible_distr...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1105, "all_permissive": false }
ansible_role
sfromm/ansible-playbooks
b11eb68a24c568a3c404396d569b9e6c412fbc27
65
roles/elasticsearch
6,796
[ "no_license" ]
[ { "path": "roles/elasticsearch/handlers/main.yml", "content": "---\n- name: restart elasticsearch\n action: service name=elasticsearch state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 87 }, { "path": "roles/elasticsearch/files/elasticsearch.yml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 3723, "all_permissive": false }
ansible_role
sfromm/ansible-playbooks
b11eb68a24c568a3c404396d569b9e6c412fbc27
65
roles/home
6,796
[ "no_license" ]
[ { "path": "roles/home/tasks/main.yml", "content": "---\n- name: install packages for home\n yum: name={{item}} state=installed\n with_items: home_packages\n\n- name: create groups\n group: name={{item.name}} gid={{item.gid}}\n with_items: accounts.groups\n when: accounts.groups is defined\n notify: re...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1314, "all_permissive": false }
ansible_role
sfromm/ansible-playbooks
b11eb68a24c568a3c404396d569b9e6c412fbc27
65
roles/java
6,796
[ "no_license" ]
[ { "path": "roles/java/tasks/main.yml", "content": "---\n- name: install upstream java packages\n yum: name=java state=installed\n\n- name: check for oracle jre\n stat: path={{oracle_jre.path}}/bin/java\n register: stat_oracle_jre_path\n\n- name: Define Oracle alternative\n when: stat_oracle_jre_path.sta...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3639, "all_permissive": false }
ansible_role
sfromm/ansible-playbooks
b11eb68a24c568a3c404396d569b9e6c412fbc27
65
roles/logstash
6,796
[ "no_license" ]
[ { "path": "roles/logstash/tasks/main.yml", "content": "---\n- name: install dependencies\n action: yum pkg=redis state=installed\n\n- name: download logstash release\n action: get_url url={{logstash_url}} dest=/tmp/{{logstash_file}}\n\n- name: create toplevel logstash directory\n action: file path=/opt/l...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1102, "all_permissive": false }
ansible_role
sfromm/ansible-playbooks
b11eb68a24c568a3c404396d569b9e6c412fbc27
65
roles/mosquitto
6,796
[ "no_license" ]
[ { "path": "roles/mosquitto/vars/main.yml", "content": "---\nredhat_pkgs:\n - mosquitto\n - mosquitto-python\ndebian_pkgs:\n - mosquitto\n - mosquitto-clients\n - python-mosquitto", "license_type": "no_license", "detected_licenses": [], "size_bytes": 121 }, { "path": "roles/mosquitto...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 7151, "all_permissive": false }
ansible_role
sfromm/ansible-playbooks
b11eb68a24c568a3c404396d569b9e6c412fbc27
65
roles/tor
6,796
[ "no_license" ]
[ { "path": "roles/tor/tasks/main.yml", "content": "---\n- name: install tor repo\n copy: src=torproject.repo dest=/etc/yum.repos.d/torproject.repo\n owner=root group=root mode=0644\n\n- name: import tor project gpg key\n command: rpm --import http://deb.torproject.org/torproject.org/rpm/RPM-GPG-KEY-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1902, "all_permissive": false }
ansible_role
sfromm/ansible-playbooks
b11eb68a24c568a3c404396d569b9e6c412fbc27
65
roles/workstation
6,796
[ "no_license" ]
[ { "path": "roles/workstation/vars/main.yml", "content": "---\nworkstation_repos:\n - rpm: http://rpm.livna.org/livna-release.rpm\n filename: livna.repo\n - rpm: http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm\n filename: rpmfusion-free.repo\n - rpm: htt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2763, "all_permissive": false }
ansible_role
sfromm/ansible-playbooks
b11eb68a24c568a3c404396d569b9e6c412fbc27
65
roles/yum
6,796
[ "no_license" ]
[ { "path": "roles/yum/tasks/repos_livna.yml", "content": "---\n- name: install livna repo rpm\n command: rpm -Uvh http://rpm.livna.org/livna-release.rpm\n creates=/etc/yum.repos.d/livna.repo\n when: ansible_distribution == 'Fedora'\n", "license_type": "no_license", "detected_licenses": []...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2891, "all_permissive": false }
ansible_role
TomasBlanco98/UTNFRA_SO_2do_Parcial_Blanco
7ffae8b9f5205454894a24ff34d91e478f84ca44
0
202406/ansible/roles/estructura
6,736
[ "no_license" ]
[ { "path": "202406/ansible/roles/estructura/tasks/main.yml", "content": "---\n# tasks file for estructura\n- name: \"Crear directorios en /tmp/2do_parcial/\"\n file:\n path: \"/tmp/2do_parcial/{{ item }}\"\n state: directory\n mode: '0775'\n recurse: yes\n with_items:\n - \"alumno\"\n - \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 889, "all_permissive": false }
ansible_role
harapeko/mac-provisioning
1dffc7105c4b7fcf16cc34cbc1cb9a6cb5c07faa
0
provisioning/roles/fish
6,736
[ "no_license" ]
[ { "path": "provisioning/roles/fish/tasks/main.yml", "content": "---\n- name: Register fish shell path\n ansible.builtin.command: which fish\n register: fish_path\n changed_when: false\n\n- name: Register zsh shell path\n ansible.builtin.command: which zsh\n register: zsh_path\n changed_when: false\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1455, "all_permissive": false }
ansible_role
harapeko/mac-provisioning
1dffc7105c4b7fcf16cc34cbc1cb9a6cb5c07faa
0
provisioning/roles/homebrew
6,736
[ "no_license" ]
[ { "path": "provisioning/roles/homebrew/tasks/main.yml", "content": "---\n# Install packages\n- name: update homebrew\n homebrew:\n state: latest\n update_homebrew: yes\n become: false\n\n- name: Add homebrew taps\n homebrew_tap:\n name: \"{{ homebrew_taps }}\"\n state: present\n become: fals...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 812, "all_permissive": false }
ansible_role
harapeko/mac-provisioning
1dffc7105c4b7fcf16cc34cbc1cb9a6cb5c07faa
0
provisioning/roles/homebrew-cask
6,736
[ "no_license" ]
[ { "path": "provisioning/roles/homebrew-cask/tasks/main.yml", "content": "---\n- name: Install casks\n community.general.homebrew_cask:\n name: \"{{ homebrew_cask_packages }}\"\n state: present\n install_options: 'appdir=/Applications'\n\n- name: Upgrade all casks\n community.general.homebrew_cask...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1112, "all_permissive": false }
ansible_role
harapeko/mac-provisioning
1dffc7105c4b7fcf16cc34cbc1cb9a6cb5c07faa
0
provisioning/roles/mas
6,736
[ "no_license" ]
[ { "path": "provisioning/roles/mas/vars/main.yml", "content": "mas_applications:\n # - 1206246482 # EdgeView 2\n - 661532686 # GPX Binder\n - 498944723 # JPEGmini\n - 562184107 # LanScan\n - 715768417 # Microsoft Remote Desktop\n - 425424353 # The Unarchiver\n - 497799835 # Xcode\n - 1429033973...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1205, "all_permissive": false }
ansible_role
harapeko/mac-provisioning
1dffc7105c4b7fcf16cc34cbc1cb9a6cb5c07faa
0
provisioning/roles/osx-defaults
6,736
[ "no_license" ]
[ { "path": "provisioning/roles/osx-defaults/vars/main.yml", "content": "# SEE: https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/defaults.1.html (404)\n# https://ss64.com/osx/syntax-defaults.html\n# https://github.com/lafarer/ansible-role-osx-defaults\n# http...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 11622, "all_permissive": false }
ansible_role
rshahrami/kuber-cluster
71bb2a8a65977b5b56be8dda7919a46fc009db4f
0
roles/docker
6,736
[ "no_license" ]
[ { "path": "roles/docker/vars/main.yml", "content": "# dockerFileDirectory: /home/ubuntu/kubernetes/ansible/kuber-cluster/roles\n\ndockerFileDirectory: /home/ubuntu/kubernetes/ansible/kuber-cluster/roles", "license_type": "no_license", "detected_licenses": [], "size_bytes": 148 }, { "path...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4558, "all_permissive": false }
ansible_role
rshahrami/kuber-cluster
71bb2a8a65977b5b56be8dda7919a46fc009db4f
0
roles/hostname
6,736
[ "no_license" ]
[ { "path": "roles/hostname/tasks/main.yml", "content": "---\n# tasks file for hostname\n\n- name: set hostname and ip to /etc/hosts\n shell: |\n cat <<EOF | sudo tee -a /etc/hosts\n\n 192.168.143.21 kuber-master\n 192.168.143.41 kuber-worker1\n 192.168.143.42 kuber-worker2\n 192.168.143.43...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 337, "all_permissive": false }
ansible_role
rshahrami/kuber-cluster
71bb2a8a65977b5b56be8dda7919a46fc009db4f
0
roles/java
6,736
[ "no_license" ]
[ { "path": "roles/java/vars/main.yml", "content": "---\n# vars file for java\n\nJAVA_DIRECTORY: /usr/java", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 }, { "path": "roles/java/tasks/main.yml", "content": "---\n# tasks file for java\n\n- name: Create a dire...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1567, "all_permissive": false }
ansible_role
rshahrami/kuber-cluster
71bb2a8a65977b5b56be8dda7919a46fc009db4f
0
roles/kuber_add_worker
6,736
[ "no_license" ]
[ { "path": "roles/kuber_add_worker/tasks/main.yml", "content": "---\n# tasks file for kuber_add_worker\n\n\n- name: copy the join command to worker nodes\n copy:\n src: /home/ubuntu/kubernetes/ansible/kuber-cluster/roles/kuber_take_token/files/join-command\n dest: /root/join-command.sh\n mode: 0777...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 624, "all_permissive": false }
ansible_role
rshahrami/kuber-cluster
71bb2a8a65977b5b56be8dda7919a46fc009db4f
0
roles/kuber_init
6,736
[ "no_license" ]
[ { "path": "roles/kuber_init/tasks/main.yml", "content": "---\n# tasks file for kuber_init\n\n- name: initialize kubernetes cluster using kubeadm\n command: kubeadm init --pod-network-cidr=\"{{ network_cidr }}\" --node-name=kuber-master --apiserver-advertise-address=\"{{ apiserver_address }}\" \\\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 799, "all_permissive": false }
ansible_role
rshahrami/kuber-cluster
71bb2a8a65977b5b56be8dda7919a46fc009db4f
0
roles/kuber_kubeadm_let_ctl
6,736
[ "no_license" ]
[ { "path": "roles/kuber_kubeadm_let_ctl/tasks/main.yml", "content": "---\n# tasks file for kuber_kubeadm_let_ctl\n\n# - name: add sd kubernetes.repo\n# yum_repository:\n# name: kubernetes\n# baseurl: https://packages.cloud.google.com/yum/repos/kubernetes-el7-\\$basearch\n# enabled: yes\n# g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2973, "all_permissive": false }
ansible_role
rshahrami/kuber-cluster
71bb2a8a65977b5b56be8dda7919a46fc009db4f
0
roles/kuber_kubeadm_let_ctl_secondary
6,736
[ "no_license" ]
[ { "path": "roles/kuber_kubeadm_let_ctl_secondary/tasks/main.yml", "content": "---\n# tasks file for kuber_kubeadm_let_ctl_secondary\n\n\n- name: \"Check if path exists\"\n stat:\n path: \"{{ FILE_DIR }}cni-plugins-linux-{{ ARCH }}-{{ CNI_VERSION }}.tgz\"\n register: result\n delegate_to: localhost\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4223, "all_permissive": false }
ansible_role
rshahrami/kuber-cluster
71bb2a8a65977b5b56be8dda7919a46fc009db4f
0
roles/kuber_network_calico
6,736
[ "no_license" ]
[ { "path": "roles/kuber_network_calico/tasks/main.yml", "content": "---\n# tasks file for kuber_network_calico\n\n- name: copy docker rpm file to server\n copy:\n src: /home/ubuntu/kubernetes/ansible/kuber-cluster/roles/kuber_network_calico/files/calico.yaml\n dest: /root/\n\n- name: cahnge setting of...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 642, "all_permissive": false }
ansible_role
rshahrami/kuber-cluster
71bb2a8a65977b5b56be8dda7919a46fc009db4f
0
roles/kuber_take_token
6,736
[ "no_license" ]
[ { "path": "roles/kuber_take_token/tasks/main.yml", "content": "---\n# tasks file for kuber_take_token\n\n- name: generate join command\n command: kubeadm token create --print-join-command\n register: join_command\n\n\n- name: copy join command to local file\n copy:\n content: \"{{ join_command.stdout_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 386, "all_permissive": false }
ansible_role
rshahrami/kuber-cluster
71bb2a8a65977b5b56be8dda7919a46fc009db4f
0
roles/update_all
6,736
[ "no_license" ]
[ { "path": "roles/update_all/tasks/main.yml", "content": "---\n- name: upgrade all packages\n yum:\n name: '*'\n state: latest\n when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'\n\n\n- name: Upgrade debian family.\n apt:\n update_cache: yes\n force_a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1224, "all_permissive": false }
ansible_role
JudgeGlass/linux-setup
45b35e7ca151633a146ab26f66da1af360b35b65
0
roles/common
6,736
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Make Temp Directory\n ansible.builtin.file:\n path: /tmp/linux-setup\n state: directory\n\n- name: Update APT Cache\n become: true\n ansible.builtin.apt:\n update_cache: true\n\n- name: APT Upgrade\n become: true\n ansible.built...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1074, "all_permissive": false }
ansible_role
JudgeGlass/linux-setup
45b35e7ca151633a146ab26f66da1af360b35b65
0
roles/cppdev
6,736
[ "no_license" ]
[ { "path": "roles/cppdev/tasks/main.yml", "content": "- name: Install Base C++ APT Packages\n become: true\n ansible.builtin.apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - g++\n - gcc\n - make\n - cmake\n - gdb\n - clang-format\n - binutils\n\n- name: Inst...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 850, "all_permissive": false }
ansible_role
JudgeGlass/linux-setup
45b35e7ca151633a146ab26f66da1af360b35b65
0
roles/gui
6,736
[ "no_license" ]
[ { "path": "roles/gui/tasks/main.yml", "content": "---\n- name: Add Signal Keyring\n become: true\n ansible.builtin.apt_key:\n url: https://updates.signal.org/desktop/apt/keys.asc\n keyring: /etc/apt/trusted.gpg.d/signal-desktop.gpg\n- name: Add Signal Repo\n become: true\n ansible.builtin.apt_repo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1832, "all_permissive": false }
ansible_role
JudgeGlass/linux-setup
45b35e7ca151633a146ab26f66da1af360b35b65
0
roles/pythondev
6,736
[ "no_license" ]
[ { "path": "roles/pythondev/tasks/main.yml", "content": "- name: Install Base Python APT Packages\n become: true\n ansible.builtin.apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - python3\n - python3-pip\n\n- name: Install Other Python APT Packages\n become: true\n ansible.builtin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 337, "all_permissive": false }
ansible_role
smacphee-45d/nextcloud-ansible
a3d171a545d8b372b5dd4d2738599507d741985b
0
roles/nextcloud
6,736
[ "permissive" ]
[ { "path": "roles/nextcloud/tasks/setup_container.yml", "content": "- name: setup directories\n file: \n path: \"/opt/45drives/containers/nextcloud/{{item}}\"\n owner: root\n group: root\n mode: 0755\n recurse: yes\n state: directory\n with_items: [\"db\", \"nginx\", \"html\"]\n\n- name: ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1728, "all_permissive": true }
ansible_role
smacphee-45d/nextcloud-ansible
a3d171a545d8b372b5dd4d2738599507d741985b
0
roles/nginx
6,736
[ "permissive" ]
[ { "path": "roles/nginx/defaults/main.yml", "content": "security_rules:\n - 921110\n - 949110\n - 920420", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 48 }, { "path": "roles/nginx/templates/nextcloudmodsec.conf.j2", "content": "{% fo...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1188, "all_permissive": true }
ansible_role
smacphee-45d/nextcloud-ansible
a3d171a545d8b372b5dd4d2738599507d741985b
0
roles/run-containers
6,736
[ "permissive" ]
[ { "path": "roles/run-containers/tasks/generate-systemd.yml", "content": "- name: Generate systemd for pod and container\n ansible.builtin.command: podman generate systemd --new --files --name nextcloud_pod\n args:\n chdir: /etc/systemd/system\n", "license_type": "permissive", "detected_licenses...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 3240, "all_permissive": true }
ansible_role
MROHITH068/roboshop-jenkins
f0c6039e4e79fe9d5d7e8de14b8cc64eab3713ad
0
roles/jenkins-jobs
6,736
[ "no_license" ]
[ { "path": "roles/jenkins-jobs/tasks/main.yml", "content": "- name: Single Pipeline Setup\n ansible.builtin.include_tasks:\n file: sp_jobs.yml\n loop: \"{{sp_jobs}}\"\n\n- name: Multi Pipeline Setup\n ansible.builtin.include_tasks:\n file: mp_jobs.yml\n loop: \"{{mp_jobs}}\"", "license_type": "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 213, "all_permissive": false }