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
BBRobert/terraform
ff3cc9e7a4b7431ab50b30bc7415cdbb76c1659d
0
ansible/roles/cleanup
482
[ "no_license" ]
[ { "path": "ansible/roles/cleanup/tasks/main.yml", "content": "---\n# tasks file for cleanup\n- name: Remove packages\n yum:\n name: \"{{ item }}\"\n state: absent\n with_items:\n - nano\n - tree\n tags: [remove_nano, cleanup, never]\n\n- name: Remove Apache\n yum:\n name: httpd\n state...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 404, "all_permissive": false }
ansible_role
BBRobert/terraform
ff3cc9e7a4b7431ab50b30bc7415cdbb76c1659d
0
ansible/roles/common
482
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/install_packages.yml", "content": "- name: Update all packages to latest version\n yum:\n name: '*'\n state: latest\n tags: [update, init]\n- name: Install packages (nano, tree)\n yum:\n name: \"{{ item }}\"\n state: installed\n with_items: \n - nano\...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 562, "all_permissive": false }
ansible_role
BBRobert/terraform
ff3cc9e7a4b7431ab50b30bc7415cdbb76c1659d
0
ansible/roles/web
482
[ "no_license" ]
[ { "path": "ansible/roles/web/handlers/main.yml", "content": "---\n# handlers file for web\n- name: Reload Apache\n service:\n name: httpd\n state: reloaded", "license_type": "no_license", "detected_licenses": [], "size_bytes": 96 }, { "path": "ansible/roles/web/tasks/install_apach...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 843, "all_permissive": false }
ansible_role
mbaldessari/kvm-sno
c98fc723a31a3516b4f52728b2c405b7ddb6069c
0
roles/acm_import
482
[ "no_license" ]
[ { "path": "roles/acm_import/templates/managedcluster.yml.j2", "content": "---\napiVersion: cluster.open-cluster-management.io/v1\nkind: ManagedCluster\nmetadata:\n name: {{ region_cluster_name }}\n labels:\n name: {{ region_cluster_name }}\n vendor: auto-detect\n cloud: auto-detect\n clusterGr...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 7319, "all_permissive": false }
ansible_role
mbaldessari/kvm-sno
c98fc723a31a3516b4f52728b2c405b7ddb6069c
0
roles/sno_destroy
482
[ "no_license" ]
[ { "path": "roles/sno_destroy/tasks/main.yml", "content": "---\n- name: Check if vms already exists\n community.libvirt.virt:\n command: list_vms\n register: all_vms\n\n- name: Destroy {{ item }}\n ansible.builtin.shell: |\n virsh destroy {{ item }}\n virsh undefine --nvram --remove-all-storage {...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 811, "all_permissive": false }
ansible_role
mbaldessari/kvm-sno
c98fc723a31a3516b4f52728b2c405b7ddb6069c
0
roles/sno_install
482
[ "no_license" ]
[ { "path": "roles/sno_install/tasks/pki-setup.yml", "content": "- name: Reset ca folder\n tags:\n - pki\n ansible.builtin.shell: |\n mkdir -p \"{{ ca_folder }}\"\n sudo chmod 1777 \"{{ ca_folder }}\"\n rm -f \"{{ ca_folder }}/{{ item }}-ca-kube\"\n with_items: \"{{ inventory_hostname_short }}\...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 16631, "all_permissive": false }
ansible_role
cheng93/infrastructure
2bae85504b95a304d462a113de379be83caec2e6
0
ansible/stack/roles/common
484
[ "no_license" ]
[ { "path": "ansible/stack/roles/common/tasks/main.yml", "content": "---\n - name: Upgrade all packages\n yum:\n name: \"*\"\n state: latest\n security: true\n become: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 118 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 118, "all_permissive": false }
ansible_role
cheng93/infrastructure
2bae85504b95a304d462a113de379be83caec2e6
0
ansible/stack/roles/db
484
[ "no_license" ]
[ { "path": "ansible/stack/roles/db/tasks/database.yml", "content": "---\n - name: \"Ensure databases exists\"\n postgresql_db:\n name: \"{{item.name}}\"\n state: present\n with_items: \"{{databases}}\"\n become: true\n become_user: \"{{user}}\"\n\n - name: \"Revoke all schema priviled...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 6574, "all_permissive": false }
ansible_role
cheng93/infrastructure
2bae85504b95a304d462a113de379be83caec2e6
0
ansible/stack/roles/web
484
[ "no_license" ]
[ { "path": "ansible/stack/roles/web/templates/nginx/conf.d/blog.conf.j2", "content": "server {\n listen 80;\n server_name {{ item[1] }}.{{ item[0].domain }};\n\n location /.well-known/acme-challenge/ {\n root {{ certificate_path }};\n }\n\n include /etc/nginx/conf.d/ssl/blog_ssl[.]conf;\n \n locati...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 17, "total_bytes": 11030, "all_permissive": false }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/automationcontroller
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/automationcontroller/tasks/dynamic_hostname_facts.yml", "content": "---\n- name: Set controller hostname\n set_fact:\n _controller_hostname: \"{{ controller_hostname | default(r...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 12819, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/automationedacontroller
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/automationedacontroller/tasks/dynamic_hostname_facts.yml", "content": "---\n- name: Set Automation Controller main URL for EDA with adjacent controller\n set_fact:\n automation_...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 29720, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/backup
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/backup/tasks/init.yml", "content": "---\n- name: Create a directory for a backup to live.\n file:\n path: '{{ backup_dir.rstrip(\"/\") }}/{{ now }}/'\n mode: 0755\n owner:...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 31958, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/certificate_authority
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/certificate_authority/defaults/main.yml", "content": "---\n## Operational parameters\naap_service_cert_extension: 'crt'\naap_service_hostname: '{{ routable_hostname | default(ansibl...
{ "task_files": 8, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 16, "total_bytes": 14525, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/check_config_static
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/check_config_static/defaults/main.yml", "content": "---\n## Operational parameters\ncheck_config_static_results: ''\n\n## Configurable parameters", "license_type": "permissive",...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 18338, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/config_dynamic
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/config_dynamic/tasks/main.yml", "content": "---\n- name: Set database to internal or external\n set_fact:\n config_dynamic_database: \"{{ ((pg_host is not defined or pg_host == ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3657, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/deprovision
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/deprovision/tasks/main.yml", "content": "---\n- name: 'include receptor variables'\n include_vars: '{{ item }}'\n with_first_found:\n - files:\n - 'main.yml'\n path...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 5531, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/firewall
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/firewall/tasks/deprovision.yml", "content": "---\n\n- include_tasks: discover.yml\n\n- set_fact:\n firewalld_http_port: \"{{ _nginx_http_port | default(80) }}\"\n firewalld_ht...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 10931, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/misc
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/misc/tasks/setup_ee_images.yml", "content": "---\n- block:\n - name: Ensure skopeo exists\n dnf:\n name: skopeo\n state: present\n register: installed_sko...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 9628, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/nginx
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/nginx/tasks/tasks.yml", "content": "---\n- name: Install nginx\n package:\n name: nginx\n state: latest\n\n- name: SELinux configuration for nginx\n when:\n - ansible_sel...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1944, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/packages_el
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/packages_el/tasks/upgrade_from_postgres_10.yml", "content": "---\n# When upgrading from 1.2.x to 2.2.x, the PostgreSQL data dir must\n# be migrated from 10 --> 12 --> 13\n\n- name: ...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 7342, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/podman
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/podman/defaults/main.yml", "content": "---\n## Operational parameters\n\ndefault_runtime: crun\ndefault_cgroup_manager: cgroupfs\npodman_force_selinux_relabel: false\nrun_podman_hom...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 5143, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/postgres
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/postgres/tasks/uninstall.yml", "content": "---\n- name: Stop and disable postgres services\n systemd:\n name: \"{{ pg_systemd_name }}\"\n state: stopped\n enabled: no\n w...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 8934, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/preflight
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/preflight/tasks/locale.yaml", "content": "---\n- name: Load /etc/locale.conf\n slurp:\n src: /etc/locale.conf\n register: locale_conf\n\n- fail:\n msg: \"The locale {{ item ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 12545, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/receptor
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/receptor/handlers/main.yml", "content": "---\n# Handlers for common notifications.\n\n- name: Restart Receptor\n systemd:\n name: receptor\n state: restarted\n enabled: ye...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 12647, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/redis
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/redis/tasks/module.yml", "content": "---\n- name: Enable redis module stream on RHEL 8\n when: ansible_distribution_major_version | int == 8\n block:\n - name: Disable Redis mo...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 945, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/repo_management
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/repo_management/vars/RedHat.yml", "content": "---\nyum_repo_keys:\n - 'RPM-GPG-KEY-redhat-release'\n\nredhat_automation_platform_rhsm_repo: 'ansible-automation-platform-{{ automati...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3100, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/restore
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/restore/tasks/postgres.yml", "content": "---\n- block:\n - name: Append .gz to database archive filename if use_compression\n set_fact:\n db_filename: tower.db.gz\n when...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 26823, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/sso
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/sso/tasks/create_policy.yml", "content": "- name: 'Set Policy Object'\n set_fact:\n policy_item:\n decisionStrategy: '{{ policy.decisionStrategy }}'\n description: '{{...
{ "task_files": 16, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 18, "total_bytes": 28146, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/supervisor
484
[ "permissive" ]
[ { "path": "ansible-automation-platform-setup-2.4-7/collections/ansible_collections/ansible/automation_platform_installer/roles/supervisor/tasks/main.yml", "content": "---\n# Tasks for configuring Supervisord.\n- include_tasks: vars.yml\n\n- include_tasks: tasks.yml\n when: not supervisor_exec_vars_only | b...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2225, "all_permissive": true }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
roles/kvm_provision
484
[ "no_license" ]
[ { "path": "roles/kvm_provision/templates/net-template.xml.j2", "content": "<network>\n <name>devel.net</name>\n <uuid>3e457264-b7a0-4ed5-8758-9aa35834b630</uuid>\n <forward mode=\"nat\">\n <nat>\n <port start=\"1024\" end=\"65535\"/>\n </nat>\n </forward>\n <bridge name=\"virbr3\" stp=\"on\"...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 4281, "all_permissive": false }
ansible_role
calvingsmith/example.com
6f8c0d9ea380f9586dc11c8c2754f47d72585ed0
0
roles/sat_provision
484
[ "no_license" ]
[ { "path": "roles/sat_provision/tasks/main.yml", "content": "---\n# code language=ansible\n# tasks file for sat_provision\n- name: Provision server # noqa: args[module]\n redhat.satellite.host:\n name: \"{{ server_name }}\"\n hostgroup: rhel8-server\n provision_method: image\n compute_resource: ...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 1690, "all_permissive": false }
ansible_role
BaagiK/LAMP_Mediawiki
cf498ec1373d4182328eafca5066ade2ff2dd510
0
roles/common
484
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- include: repos.yml\n\n\n- name: Install ntp on all servers\n yum: name=ntp state=present\n# tags: ntp\n\n\n- name: Configure ntp service on all servers\n template: src=ntp.conf.j2 dest=/etc/ntp.conf\n# tags: ntp\n\n notify: restart ntp\n\n- na...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 857, "all_permissive": false }
ansible_role
BaagiK/LAMP_Mediawiki
cf498ec1373d4182328eafca5066ade2ff2dd510
0
roles/db
484
[ "no_license" ]
[ { "path": "roles/db/tasks/main.yml", "content": "---\n# tasks file for db\n- name: create repo for mariadb\n yum_respository:\n name: mariadb\n description: MariaDB repo\n baseurl: http://yum.mariadb.org/10.2/rhel7-amd64\n gpgkey: https://yum.mariadb.org/RPM-GPG-KEY-MariaDB\n gpgcheck: yes\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 568, "all_permissive": false }
ansible_role
BaagiK/LAMP_Mediawiki
cf498ec1373d4182328eafca5066ade2ff2dd510
0
roles/web
484
[ "no_license" ]
[ { "path": "roles/web/tasks/main.yml", "content": "---\n# tasks file for web\n\n- name: install apache\n yum: name=httpd state=installed\n\n- name: Start apache service\n service: name=httpd state=started enabled=yes\n\n- name: copy index file to check php is working with apache\n copy: src=/var/www/html/...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 430, "all_permissive": false }
ansible_role
Davidoparah/JOBPLUS_SWARM
118b2ce11cf81577c143e32ac6aa7545973592a3
0
ansible/roles/common_tasks
484
[ "no_license" ]
[ { "path": "ansible/roles/common_tasks/tasks/main.yml", "content": "## run playbooks\n\n# ansible-playbook -i ansible/inventory.ini ansible/manager_playbook.yml -v\n# ansible-playbook -i ansible/inventory.ini ansible/worker_playbook.yml -v\n\n# ansible-playbook -i ansible/inventory.ini ansible/servers_playbo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1900, "all_permissive": false }
ansible_role
csdevtauri/-Infrastructure_OpenStack_OnCloud
8a84047979db8a7707ea192f64588547fd31e696
0
ansible/roles/openvpn
484
[ "no_license" ]
[ { "path": "ansible/roles/openvpn/tasks/main.yml", "content": "---\n# tasks file for roles/openvpn\n# Mettre à jour et installer les paquets\n\n# R1: Mise à jour des paquets apt\n- name: Update apt packages\n ansible.builtin.apt:\n upgrade: \"True\"\n cache_valid_time: 3600\n # Pourquoi: Cela garanti...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 10804, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/install-buildslave
484
[ "no_license" ]
[ { "path": "roles/install-buildslave/tasks/main.yml", "content": "- name: Make buildbot virtualenv\n action: pip virtualenv_command=\"{{python_exe}} -m virtualenv\" name=\"buildbot-slave\" virtualenv=\"/buildslave/venv/\"\n\n- name: Make buildbot virtualenv (again???)\n action: pip executable=\"/buildslave...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 422, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/install-jython
484
[ "no_license" ]
[ { "path": "roles/install-jython/tasks/main.yml", "content": "- name: Install Jython dependencies (Debian)\n action: apt pkg=ant\n when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'\n\n- name: Install Java PPA (Ubuntu)\n action: apt_repository repo='ppa:webupd8team/java'\n when: a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 730, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/install-pip
484
[ "no_license" ]
[ { "path": "roles/install-pip/tasks/main.yml", "content": "- name: Download pip\n action: command wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py\n args:\n creates: /tmp/get-pip.py\n\n- name: Install pip to {{python_exe}}\n action: command {{python_exe}} /tmp/get-pip.py\n\n- name: Install ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 336, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/install-pypy
484
[ "no_license" ]
[ { "path": "roles/install-pypy/tasks/main.yml", "content": "- name: Install PyPy (FreeBSD)\n action: pkgng name=py27-pypy\n when: ansible_distribution == 'FreeBSD'\n\n- name: Install PyPy (Debian)\n action: apt pkg=pypy,pypy-dev\n when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 396, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/install-python34
484
[ "no_license" ]
[ { "path": "roles/install-python34/tasks/main.yml", "content": "- name: Install Python 3.4 (FreeBSD)\n action: pkgng name=python34\n when: ansible_distribution == 'FreeBSD'\n\n- name: Install Python 3.4 (Debian)\n action: apt pkg=python3.4,python3.4-dev\n when: ansible_distribution == 'Debian' or ansible...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 429, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/install-python35
484
[ "no_license" ]
[ { "path": "roles/install-python35/tasks/main.yml", "content": "- name: Install Python 3.5 (FreeBSD)\n action: pkgng name=python35\n when: ansible_distribution == 'FreeBSD'\n\n- name: Install Python 3.5 (Debian)\n action: apt pkg=python3.5,python3.5-dev\n when: ansible_distribution == 'Debian' or ansible...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 429, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/requirements-debian
484
[ "no_license" ]
[ { "path": "roles/requirements-debian/tasks/main.yml", "content": "- name: Install locales\n action: apt pkg=locales\n\n- name: Set up locale\n action: locale_gen name=en_US.UTF-8\n\n- name: Install some tools\n action: apt pkg=git,debhelper\n\n- name: Install the Python 2.7 development headers\n action:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 421, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/requirements-fedora
484
[ "no_license" ]
[ { "path": "roles/requirements-fedora/tasks/main.yml", "content": "- name: Install the Python 2.7 development headers\n action: dnf name=python-devel,libffi-devel\n\n- name: Install build requirements\n action: dnf name=\"@Development Tools\",wget\n\n- name: Install build deps\n action: dnf name=openssl-d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 365, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/requirements-freebsd
484
[ "no_license" ]
[ { "path": "roles/requirements-freebsd/templates/buildslave", "content": "#!/bin/sh\n\n. /etc/rc.subr\n\nname=\"buildslave\"\nstart_cmd=\"${name}_start\"\nstop_cmd=\"${name}_stop\"\n\nbuildslave_start()\n{\n\tsu buildslave -c \"/usr/local/bin/python2 /usr/local/bin/buildslave start /buildslave/ \"\n}\n\nbuil...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1167, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/requirements-redhat
484
[ "no_license" ]
[ { "path": "roles/requirements-redhat/tasks/main.yml", "content": "- name: Install the Python 2.7 development headers\n action: yum name=python-devel,libffi-devel\n\n- name: Install build requirements\n action: yum name=\"@Development Tools\",wget\n\n- name: Install build deps\n action: yum name=openssl-d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 355, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/setup-buildslave
484
[ "no_license" ]
[ { "path": "roles/setup-buildslave/templates/buildbotd", "content": "#!/bin/sh\n\n. /etc/rc.subr\n\nname=buildbotd\nrcvar=buildbotd_enable\n\npidfile=\"/buildslave/twistd.pid\"\n\ncommand=\"/usr/bin/su\"\ncommand_args=\"-l buildslave -c '/buildslave/venv/bin/python2 /buildslave/venv/bin/buildslave start /bui...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3788, "all_permissive": false }
ansible_role
twisted-infra/twisted-buildbot-deployment
755cb008c59f52954bdf0a226ce7f3f708a940ed
1
roles/systemupdate
484
[ "no_license" ]
[ { "path": "roles/systemupdate/tasks/main.yml", "content": "- name: Update pkg cache (FreeBSD)\n action: command pkg update\n when: ansible_distribution == 'FreeBSD'\n\n- name: Update pkg packages (FreeBSD)\n action: command pkg upgrade -y\n when: ansible_distribution == 'FreeBSD'\n\n- name: Install SSL ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1494, "all_permissive": false }
ansible_role
rasputnik/ansible-pisetup
9308939c08e7be6cbd8851b4a198e3409071bc84
0
roles/config
484
[ "no_license" ]
[ { "path": "roles/config/templates/etc/wpa_supplicant/wpa_supplicant.conf.j2", "content": "country=GB\nctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev\nupdate_config=1\n\nnetwork={\n ssid=\"{{ network.ssid }}\"\n psk=\"{{ network.psk }}\"\n proto={{ network.proto }}\n key_mgmt={{ network.key_mgmt...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1085, "all_permissive": false }
ansible_role
rasputnik/ansible-pisetup
9308939c08e7be6cbd8851b4a198e3409071bc84
0
roles/get_zip
484
[ "no_license" ]
[ { "path": "roles/get_zip/tasks/main.yml", "content": "---\n\n- name: get {{ zip_url }} => {{ zip_dest }}\n get_url:\n url: \"{{ zip_url }}\"\n dest: \"{{ zip_dest }}\"\n\n- name: install 'unzip'\n become: yes\n yum:\n name: unzip\n\n- name: extract {{ zip_dest }}\n unarchive:\n remote_src: y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 316, "all_permissive": false }
ansible_role
rasputnik/ansible-pisetup
9308939c08e7be6cbd8851b4a198e3409071bc84
0
roles/mountparts
484
[ "no_license" ]
[ { "path": "roles/mountparts/tasks/main.yml", "content": "---\n\n- name: install kpartx\n become: yes\n yum:\n name: kpartx\n\n- name: create mountpoints\n become: yes\n file:\n state: directory\n path: \"{{ item.value.path }}\"\n with_dict: \"{{ img_parts }}\"\n\n- name: map partitions from {{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 586, "all_permissive": false }
ansible_role
rasputnik/ansible-pisetup
9308939c08e7be6cbd8851b4a198e3409071bc84
0
roles/output
484
[ "no_license" ]
[ { "path": "roles/output/tasks/main.yml", "content": "---\n\n- name: unmount partitions\n become: yes\n mount:\n path: \"{{ item.value.path }}\"\n state: unmounted\n with_dict: \"{{ img_parts }}\"\n\n- name: copy {{ img }} to {{ output_img }}\n copy:\n src: \"{{ img }}\"\n dest: \"{{ output_i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 263, "all_permissive": false }
ansible_role
Anshika-git-nashtech/Ansible-Assignment
eb1e3307d4a2ad27d04888f05108ca172bd1b102
0
roles/mysql
484
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yaml", "content": "- name: Install MySQL server\n apt:\n name: mysql-server\n state: present\n become: yes\n\n- name: Start MySQL service\n service:\n name: mysql\n state: started\n enabled: yes\n become: yes\n\n- name: Check MySQL status\n command: syst...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 488, "all_permissive": false }
ansible_role
irynadiudiuk/training-ansible
457ee153e5184f27ab06f99ba9a9bdce5b82727e
0
roles/common
484
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# common tasks\n- name: Add epel repo\n yum: name=epel-release state=installed\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 82, "all_permissive": false }
ansible_role
irynadiudiuk/training-ansible
457ee153e5184f27ab06f99ba9a9bdce5b82727e
0
roles/webapp
484
[ "no_license" ]
[ { "path": "roles/webapp/defaults/main.yml", "content": "---\n# webapp defaults\nwebapp_name: 'hello-world'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 49 }, { "path": "roles/webapp/vars/main.yml", "content": "---\n# webapp vars\nwar_url: \"https://raw.git...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 848, "all_permissive": false }
ansible_role
dstinebaugh/server_pi
c37e6fa29cf468049ae90685562d704b00bc8ff5
13
roles/server_pi
484
[ "permissive" ]
[ { "path": "roles/server_pi/handlers/main.yml", "content": "---\n# restart sshd!\n- name: restart sshd\n service: name=ssh state=restarted\n\n- name: restart denyhosts\n service: name=denyhosts state=restarted\n ", "license_type": "permissive", "detected_licenses": [ "Unlicense" ], "...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 4565, "all_permissive": true }
ansible_role
venureddy369/roboshop-ansible
de0e3f04ac6f8c2dd6e94a3540ee153c55ce082f
0
roles/common
484
[ "no_license" ]
[ { "path": "roles/common/tasks/nodejs.yml", "content": "# NODEJS(){\n# APP_LOC=/home/roboshop\n# CONTENT=${COMPONENT}\n# APP_USER=roboshop\n# PRINT \"Download NodeJs repo file\"\n# curl -sL https://rpm.nodesource.com/setup_lts.x | bash &>>$LOG\n# STAT $?\n#\n# PRINT \"Install nodejs\"\n...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1918, "all_permissive": false }
ansible_role
venureddy369/roboshop-ansible
de0e3f04ac6f8c2dd6e94a3540ee153c55ce082f
0
roles/prometheus
484
[ "no_license" ]
[ { "path": "roles/prometheus/templates/alertmanager.yml", "content": "route:\n group_by: ['alertname']\n group_wait: 30s\n group_interval: 5m\n repeat_interval: 1h\n receiver: 'email'\nreceivers:\n - name: \"email\"\n email_configs:\n - to: <EMAIL> # <EMAIL>\n from: <EMAIL> ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1711, "all_permissive": false }
ansible_role
MashCyber/AUTOMATIONS
46b1fb2061999ee2cda85b878bba17799e7d0beb
0
ansible-ubnt/playbooks/roles/base
484
[ "no_license" ]
[ { "path": "ansible-ubnt/playbooks/roles/base/tasks/main.yml", "content": "- name: add ssh key for simone\n ansible.posix.authorized_key:\n user: simone\n key: \"<KEY>\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 96 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 96, "all_permissive": false }
ansible_role
MashCyber/AUTOMATIONS
46b1fb2061999ee2cda85b878bba17799e7d0beb
0
ansible-ubnt/playbooks/roles/db_servers
484
[ "no_license" ]
[ { "path": "ansible-ubnt/playbooks/roles/db_servers/tasks/main.yml", "content": "# Only db servers\n- name: install mariadb packages(Ubuntu)\n tags: ubuntu, mariadb, db\n package:\n name: mariadb-server\n state: latest\n when: ansible_distribution == \"Ubuntu\"", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 181, "all_permissive": false }
ansible_role
MashCyber/AUTOMATIONS
46b1fb2061999ee2cda85b878bba17799e7d0beb
0
ansible-ubnt/playbooks/roles/file_servers
484
[ "no_license" ]
[ { "path": "ansible-ubnt/playbooks/roles/file_servers/tasks/main.yml", "content": "- name: install samba package\n tags: samba, smb\n package:\n name: samba\n state: latest", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 93, "all_permissive": false }
ansible_role
MashCyber/AUTOMATIONS
46b1fb2061999ee2cda85b878bba17799e7d0beb
0
ansible-ubnt/playbooks/roles/web_servers
484
[ "no_license" ]
[ { "path": "ansible-ubnt/playbooks/roles/web_servers/tasks/main.yml", "content": "- name: install nginx (Web servers)\n tags: nginx\n apt:\n name: nginx\n state: latest\n update_cache: true\n when: ansible_distribution == \"Ubuntu\"\n\n- name: copy html file into the server\n tags: website,apach...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 401, "all_permissive": false }
ansible_role
MashCyber/AUTOMATIONS
46b1fb2061999ee2cda85b878bba17799e7d0beb
0
ansible-ubnt/playbooks/roles/workstations
484
[ "no_license" ]
[ { "path": "ansible-ubnt/playbooks/roles/workstations/tasks/main.yml", "content": "- name: Install Unzip\n ansible.builtin.package:\n name: unzip\n state: latest\n\n- name: Install terraform\n ansible.builtin.unarchive:\n src: https://releases.hashicorp.com/terraform/1.9.8/terraform_1.9.8_linux_38...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 316, "all_permissive": false }
ansible_role
JevgeniFedotov/ELK
43a3ee278a4bf38eb07bfae66651f5f78ced8203
0
roles/elasticsearch
484
[ "no_license" ]
[ { "path": "roles/elasticsearch/tasks/main.yml", "content": "---\n\n- name: Install Elasticsearch\n apt:\n name: elasticsearch\n state: present\n\n- name: Defining node.name\n lineinfile:\n destfile: /etc/elasticsearch/elasticsearch.yml\n regexp: 'node.name:'\n line: 'node.name: {{ ansible_hostna...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1107, "all_permissive": false }
ansible_role
JevgeniFedotov/ELK
43a3ee278a4bf38eb07bfae66651f5f78ced8203
0
roles/filebeat
484
[ "no_license" ]
[ { "path": "roles/filebeat/tasks/main.yml", "content": "---\n\n- name: Install Filebeat\n apt:\n name: filebeat\n state: present\n\n- name: Updating Filebeat conf\n template:\n src: filebeat.yml.j2\n dest: /etc/filebeat/filebeat.yml\n\n- name: Enabling Filebeat systen module\n shell: filebeat ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 599, "all_permissive": false }
ansible_role
JevgeniFedotov/ELK
43a3ee278a4bf38eb07bfae66651f5f78ced8203
0
roles/kibana
484
[ "no_license" ]
[ { "path": "roles/kibana/tasks/main.yml", "content": "---\n\n- name: Install Kibana\n apt:\n name: kibana\n state: present\n\n- name: Defining server.host\n lineinfile:\n destfile: /etc/kibana/kibana.yml\n regexp: 'server.host:'\n line: 'server.host: {{ Kibana01 }}'\n\n- name: Defining server.por...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 620, "all_permissive": false }
ansible_role
JevgeniFedotov/ELK
43a3ee278a4bf38eb07bfae66651f5f78ced8203
0
roles/logstash
484
[ "no_license" ]
[ { "path": "roles/logstash/templates/beats-input.conf.j2", "content": "input {\n beats {\n port => {{ logstash_port }}\n }\n}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 53 }, { "path": "roles/logstash/templates/elasticsearch-output.conf.j2", "content": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 827, "all_permissive": false }
ansible_role
JevgeniFedotov/ELK
43a3ee278a4bf38eb07bfae66651f5f78ced8203
0
roles/nginx
484
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n\n- name: Install Nginx on Kibana node\n apt:\n name: nginx\n state: present\n\n- name: Delete default Nginx site conf\n file:\n path: /etc/nginx/sites-enabled/default\n state: absent\n\n- name: Add Kibana Nginx site conf\n template:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1105, "all_permissive": false }
ansible_role
JevgeniFedotov/ELK
43a3ee278a4bf38eb07bfae66651f5f78ced8203
0
roles/prerequisites
484
[ "no_license" ]
[ { "path": "roles/prerequisites/tasks/main.yml", "content": "---\n\n- name: Fixing broken package on Ubuntu\n shell: apt-get update --fix-missing\n\n- name: Install/Upgrade Java 11\n apt:\n name: openjdk-11-jdk\n state: present\n\n- name: Add Elastic apt key\n apt_key:\n url: \"https://packages.el...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 525, "all_permissive": false }
ansible_role
PalanQu/taiko_node
13ca9c4d8cf62e58595d5bc69351314f42aee6ba
0
roles/bl_node
484
[ "no_license" ]
[ { "path": "roles/bl_node/tasks/main.yml", "content": "- name: update apt repo and install packages\n apt:\n update_cache: yes\n name:\n - git\n - pkg-config\n - curl\n - build-essential\n - libssl-dev\n - libclang-dev\n - ufw\n - ca-certificates\n - curl\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1400, "all_permissive": false }
ansible_role
PalanQu/taiko_node
13ca9c4d8cf62e58595d5bc69351314f42aee6ba
0
roles/update_config
484
[ "no_license" ]
[ { "path": "roles/update_config/tasks/main.yml", "content": "- name: render env file\n template:\n src: templates/env.j2\n dest: /root/taiko/.env\n force: true\n\n- name: Docker compose down\n ansible.builtin.command:\n cmd: docker compose down\n chdir: /root/taiko\n become: true\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 350, "all_permissive": false }
ansible_role
PrymalInstynct/prep-k8s
cc0e454bc830f3eb5f3ea9974e27a636acf2c474
0
roles/prep-k8s
487
[ "no_license" ]
[ { "path": "roles/prep-k8s/vars/main.yml", "content": "---\n# vars file for prep-k8s\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 29 }, { "path": "roles/prep-k8s/tasks/main.yml", "content": "---\n- name: Install Software\n ansible.builtin.dnf:\n name:\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1566, "all_permissive": false }
ansible_role
sashreek1/solveHeartbleed
82fe41f8f855a1b59bc91fb1423e510e7b35388c
0
heartbleed/roles/check_vuln
487
[ "no_license" ]
[ { "path": "heartbleed/roles/check_vuln/tasks/main.yml", "content": "---\n- name: checking for vulnerability\n shell: lsof -n | grep ssl | grep DEL | wc -l\n register: out\n\n- debug: msg=\"{{ out.stdout }}\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 136 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 136, "all_permissive": false }
ansible_role
sashreek1/solveHeartbleed
82fe41f8f855a1b59bc91fb1423e510e7b35388c
0
heartbleed/roles/restart_services
487
[ "no_license" ]
[ { "path": "heartbleed/roles/restart_services/tasks/main.yml", "content": "---\n- name: restarting the required services\n service:\n name: \"{{item}}\"\n state: restarted\n with_items:\n - httpd\n - nginx\n - postgresql\n - php-fpm\n - postfix\n - openvpn\n - unbound\n - monit\n failed_when...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 225, "all_permissive": false }
ansible_role
sashreek1/solveHeartbleed
82fe41f8f855a1b59bc91fb1423e510e7b35388c
0
heartbleed/roles/update_openssl
487
[ "no_license" ]
[ { "path": "heartbleed/roles/update_openssl/tasks/main.yml", "content": "---\n- name: updating openssl\n dnf:\n name: openssl\n state: latest\n update_cache: yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 93, "all_permissive": false }
ansible_role
mawillcockson/router-configs
5b5c8bf405cab1114e3aaf5acb127b28346275f1
0
roles/fail2ban
487
[ "no_license" ]
[ { "path": "roles/fail2ban/tasks/main.yaml", "content": "---\r\n- name: Install fail2ban packages\r\n package:\r\n name: \"{{ item }}\"\r\n state: present\r\n loop:\r\n - fail2ban\r\n\r\n#- name: Configure fail2ban jail for ssh\r\n# template:\r\n# src: sshd-nftables.conf.j2\r\n# dest: /etc/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1754, "all_permissive": false }
ansible_role
mawillcockson/router-configs
5b5c8bf405cab1114e3aaf5acb127b28346275f1
0
roles/firewall
487
[ "no_license" ]
[ { "path": "roles/firewall/templates/nftables.conf.j2", "content": "#!/usr/sbin/nft -f\r\n\r\nflush ruleset\r\n\r\ndefine ssh = {{ ssh_port }}\r\n\r\ntable inet filter {\r\n\r\n set open_ports {\r\n type inet_service;\r\n elements = {\r\n $ssh\r\n }\r\n }\r\n\r\n chai...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3744, "all_permissive": false }
ansible_role
mawillcockson/router-configs
5b5c8bf405cab1114e3aaf5acb127b28346275f1
0
roles/ssh
487
[ "no_license" ]
[ { "path": "roles/ssh/templates/sshd_config.j2", "content": "#\t$OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $\n\nPort {{ ssh_port }}\nAddressFamily any\nListenAddress 0.0.0.0\nListenAddress ::\n\nRekeyLimit default none\n\n# Logging\nSyslogFacility AUTH\nLogLevel INFO\n\nLoginGraceTime 2m\nPermi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1961, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/add-repository
487
[ "no_license" ]
[ { "path": "configuration/roles/add-repository/tasks/main.yml", "content": "---\n# yamllint disable rule:line-length\n\n- block:\n - name: Add repository apt-key\n apt_key:\n url: \"{{ item.key }}\"\n state: present\n loop: \"{{ apt_repository_keys }}\"\n when: apt_repository_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 497, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/ansible-role-firewall
487
[ "no_license" ]
[ { "path": "configuration/roles/ansible-role-firewall/tasks/disable-firewalls.yml", "content": "---\n\n- name: Check if ufw package is installed (on Ubuntu).\n command: service ufw status\n args:\n warn: false\n register: ufw_installed\n failed_when: false\n changed_when: false\n when:\n - firewa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 431, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/application
487
[ "no_license" ]
[ { "path": "configuration/roles/application/files/requirements.txt", "content": "click==8.0.3\nFlask==2.0.2\nFlask-SQLAlchemy==2.5.1\ngreenlet==1.1.2\ngunicorn==20.1.0\nitsdangerous==2.0.1\nJinja2==3.0.3\nMarkupSafe==2.0.1\nmarshmallow==3.14.1\npsycopg2-binary==2.9.3\nSQLAlchemy==1.4.31\nWerkzeug==2.0.3\nnos...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 18454, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/common
487
[ "no_license" ]
[ { "path": "configuration/roles/common/tasks/main.yml", "content": "---\n# yamllint disable rule:line-length\n\n - name: Update apt cache\n apt:\n update_cache: true\n environment: \"{{ proxy_env | default({}) }}\"\n\n - name: Make sure the gnupg and apt-transport-https packages are pr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 976, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/confd
487
[ "no_license" ]
[ { "path": "configuration/roles/confd/tasks/main.yml", "content": "---\n# yamllint disable rule:line-length\n\n# install confd package from repo\n- name: Download and copy \"confd\" binary file to /usr/local/bin/\n get_url:\n url: \"{{ item }}\"\n dest: /usr/local/bin/confd\n mode: u+x,g+x,o+x\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 8081, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/deploy-finish
487
[ "no_license" ]
[ { "path": "configuration/roles/deploy-finish/tasks/main.yml", "content": "---\n# yamllint disable rule:line-length\n\n- name: Make sure handlers are flushed immediately\n meta: flush_handlers\n\n- block:\n - name: Create a stanza cluster\n run_once: true\n become: true\n command: sudo -u ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 7806, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/etcd
487
[ "no_license" ]
[ { "path": "configuration/roles/etcd/tasks/main.yml", "content": "---\n# yamllint disable rule:line-length\n\n- name: Make sure handlers are flushed immediately\n meta: flush_handlers\n\n- name: Make sure the unzip/tar packages are present\n package:\n name:\n - unzip\n - tar\n state: prese...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2293, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/haproxy
487
[ "no_license" ]
[ { "path": "configuration/roles/haproxy/templates/haproxy.cfg.j2", "content": "global\n maxconn {{ haproxy_maxconn.global }}\n log /dev/log local0\n log /dev/log local1 notice\n chroot /var/lib/haproxy\n stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 8445, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/keepalived
487
[ "no_license" ]
[ { "path": "configuration/roles/keepalived/tasks/main.yml", "content": "---\n\n- name: Install keepalived packages\n package:\n name: keepalived\n environment: \"{{ proxy_env | default({}) }}\"\n\n- name: Make sure the kernel parameters \"net.ipv4.ip_nonlocal_bind\", \"net.ipv4.ip_forward\" are enabled ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2118, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/locales
487
[ "no_license" ]
[ { "path": "configuration/roles/locales/tasks/main.yml", "content": "---\n\n- name: Generate locales\n become: true\n locale_gen:\n name: \"{{ item.language_country }}.{{ item.encoding }}\"\n state: present\n loop: \"{{ locale_gen | flatten(1) }}\"\n\n- block:\n - name: Set locale \"{{ locale }}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 757, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/packages
487
[ "no_license" ]
[ { "path": "configuration/roles/packages/tasks/main.yml", "content": "---\n\n- name: Install system packages\n apt:\n name: \"{{ item }}\"\n state: latest\n loop: \"{{ system_packages }}\"\n environment: \"{{ proxy_env | default({}) }}\"\n\n# PostgreSQL prepare for install \n- block:\n - name: Po...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1696, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/patroni
487
[ "no_license" ]
[ { "path": "configuration/roles/patroni/tasks/pip.yml", "content": "---\n# https://pip.pypa.io/en/stable/installing/\n# Python 2.7 reached the end of its life on January 1st, 2020.\n# A future version of pip will drop support for Python 2.7.\n# Installing latest version pip3 for python3\n\n- block: # with g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1622, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/pgbackrest
487
[ "no_license" ]
[ { "path": "configuration/roles/pgbackrest/tasks/ssh_keys.yml", "content": "---\n# yamllint disable rule:line-length\n\n- name: ssh_keys | Ensure ssh key are created for \"{{ pgbackrest_repo_user }}\" user on pgbackrest server\n user:\n name: \"{{ pgbackrest_repo_user }}\"\n generate_ssh_key: true\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 5586, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/pgbouncer
487
[ "no_license" ]
[ { "path": "configuration/roles/pgbouncer/templates/pgbouncer.ini.j2", "content": "[databases]\n{% for pool in pgbouncer_pools %}\n{{ pool.name }} = host=127.0.0.1 port={{ postgresql_port }} dbname={{ pool.dbname }} {{ pool.pool_parameters }}\n{% endfor %}\n* = host=127.0.0.1 port={{ postgresql_port }} auth_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 6363, "all_permissive": false }
ansible_role
marllius/apirest
ac8c7b6f8e46fc55214d228fb6328934851c48bb
0
configuration/roles/postgresql-databases
487
[ "no_license" ]
[ { "path": "configuration/roles/postgresql-databases/tasks/main.yml", "content": "---\n- block:\n - name: Copy dump file for apirest\n copy:\n src: api.sql\n dest: /tmp/api.sql\n\n- name: Make sure the PostgreSQL databases are present\n become: true\n become_user: postgres\n postgresql_db:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1241, "all_permissive": false }
ansible_role
cehbrecht/ansible-nginx-playbook
312df7e65dc92819b6d83e841f6b7da8da9fe4b5
0
roles/roocs
487
[ "permissive" ]
[ { "path": "roles/roocs/templates/nginx.conf.j2", "content": "# For more information on configuration, see:\n# * Official English Documentation: http://nginx.org/en/docs/\n# * Official Russian Documentation: http://nginx.org/ru/docs/\n\nuser nginx;\nworker_processes auto;\nerror_log /var/log/nginx/error....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2684, "all_permissive": true }
ansible_role
eazytraining/bootcamp-devops-projet-fil-rouge
14b0aad5ef4f34733d0dea45c5df51d3bf8aefce
1
ic-webapp-2.0/sources/ansible-ressources/roles/ic-webapp
487
[ "no_license" ]
[ { "path": "ic-webapp-2.0/sources/ansible-ressources/roles/ic-webapp/tasks/main.yml", "content": "# Lancement de pgadmin \n- name : \"create ic-webapp network\"\n docker_network:\n name: \"{{ ic_webapp_network }}\"\n\n- name : \"Launch ic-webapp container\"\n docker_container:\n name: \"{{ ic_webapp_...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 846, "all_permissive": false }
ansible_role
eazytraining/bootcamp-devops-projet-fil-rouge
14b0aad5ef4f34733d0dea45c5df51d3bf8aefce
1
ic-webapp-2.0/sources/ansible-ressources/roles/install-docker
487
[ "no_license" ]
[ { "path": "ic-webapp-2.0/sources/ansible-ressources/roles/install-docker/tasks/main.yml", "content": "---\n- name: Install prerequisites\n yum:\n name: \"{{ item }}\"\n state: present\n with_items:\n - yum-utils\n - device-mapper-persistent-data\n - lvm2\n - python3\n - python3-pip\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1300, "all_permissive": false }
ansible_role
eazytraining/bootcamp-devops-projet-fil-rouge
14b0aad5ef4f34733d0dea45c5df51d3bf8aefce
1
ic-webapp-3.0/sources/ansible-ressources/roles/install-docker
487
[ "no_license" ]
[ { "path": "ic-webapp-3.0/sources/ansible-ressources/roles/install-docker/tasks/main.yml", "content": "---\n- name: Update System\n yum:\n name: \"*\"\n state: latest\n\n- name: Install prerequisites\n yum:\n name: \"{{ item }}\"\n state: present\n with_items:\n - yum-utils\n - device-ma...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1874, "all_permissive": false }
ansible_role
eazytraining/bootcamp-devops-projet-fil-rouge
14b0aad5ef4f34733d0dea45c5df51d3bf8aefce
1
ic-webapp-3.0/sources/ansible-ressources/roles/odoo_role
487
[ "no_license" ]
[ { "path": "ic-webapp-3.0/sources/ansible-ressources/roles/odoo_role/tasks/main.yml", "content": "---\n- name: \"Generation du docker-compose file\"\n template:\n src: \"docker-compose-odoo.yml.j2\"\n dest: /home/{{ ansible_user }}/docker-compose-odoo.yml\n mode: 0655\n\n- name: \"Déploiement du do...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 626, "all_permissive": false }
ansible_role
eazytraining/bootcamp-devops-projet-fil-rouge
14b0aad5ef4f34733d0dea45c5df51d3bf8aefce
1
ic-webapp-3.0/sources/ansible-ressources/roles/pgadmin_role
487
[ "no_license" ]
[ { "path": "ic-webapp-3.0/sources/ansible-ressources/roles/pgadmin_role/tasks/main.yml", "content": "---\n- name: \"Generation du docker-compose file\"\n template:\n src: \"docker-compose-pgadmin.yml.j2\"\n dest: /home/{{ ansible_user }}/docker-compose-pgadmin.yml\n mode: 0655\n\n- name: \"Generati...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 873, "all_permissive": false }
ansible_role
deepsvc/ansible-terraform-assignment-code
07a8612eed1130c3bc5870290daba53928c9f27d
0
roles/terraform
487
[ "no_license" ]
[ { "path": "roles/terraform/tasks/main.yml", "content": "---\n- name: Yum Install Packages\n yum: name={{item}} state=latest\n with_items:\n - wget\n\n- name: terraform install\n unarchive:\n src: https://releases.hashicorp.com/terraform/0.14.3/terraform_0.14.3_linux_amd64.zip\n dest: /usr/bin\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 278, "all_permissive": false }