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
lasdapharm/AutomatedConfiguration_and_Deployment_with_Ansible
1a5db4d811048c461d2b52d8beb0f331b7c46689
0
roles/nginx
2,598
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yaml", "content": "- name: Stop Apache if running\n systemd:\n name: apache2\n state: stopped\n enabled: no\n ignore_errors: yes\n\n- name: Install Nginx\n apt:\n name: nginx\n state: present\n update_cache: yes\n\n- name: Ensure /var/log/stage_5b direc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1058, "all_permissive": false }
ansible_role
lasdapharm/AutomatedConfiguration_and_Deployment_with_Ansible
1a5db4d811048c461d2b52d8beb0f331b7c46689
0
roles/postgres
2,598
[ "no_license" ]
[ { "path": "roles/postgres/tasks/main.yaml", "content": "---\n- name: Install PostgreSQL\n apt:\n name: postgresql\n state: present\n update_cache: yes\n\n- name: Ensure PostgreSQL is running\n systemd:\n name: postgresql\n state: started\n enabled: yes\n\n- name: Wait for PostgreSQL to b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1315, "all_permissive": false }
ansible_role
lasdapharm/AutomatedConfiguration_and_Deployment_with_Ansible
1a5db4d811048c461d2b52d8beb0f331b7c46689
0
roles/user
2,598
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yaml", "content": "---\n- name: Create user hng\n user:\n name: hng\n state: present\n groups: sudo\n\n- name: Set up sudo privileges for hng\n copy:\n dest: /etc/sudoers.d/hng\n content: \"hng ALL=(ALL) NOPASSWD:ALL\\n\"\n\n", "license_type": "no_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 208, "all_permissive": false }
ansible_role
htment/HOMEWORK_ansible
2b8c8ab309abbb7f6c0b271dfd397e59f050d826
0
APACHE/roles/webserver_setup
2,598
[ "no_license" ]
[ { "path": "APACHE/roles/webserver_setup/templates/index.html.j2", "content": "<!DOCTYPE html>\n<html>\n<head>\n <title>Server Information</title>\n</head>\n<body>\n <h1><b>Server Information</h1>\n <p><b>Hostname: </b> {{ ansible_hostname }}</p>\n <p>IP Address:</b> {{ ansible_default_ipv4.address }}</p...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2277, "all_permissive": false }
ansible_role
htment/HOMEWORK_ansible
2b8c8ab309abbb7f6c0b271dfd397e59f050d826
0
Process_exporter/roles/prometheus_process_exporter
2,598
[ "no_license" ]
[ { "path": "Process_exporter/roles/prometheus_process_exporter/tasks/main.yml", "content": "- name: Download Process Exporter\n get_url:\n url: \"{{ process_exporter_url }}\"\n dest: \"/tmp/process-exporter-{{ process_exporter_version }}.tar.gz\"\n\n- name: Create group for process_exporter\n group:\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4238, "all_permissive": false }
ansible_role
AlexandrSokolov/ansible-commons-roles
539beb9a60b32972366effeb36bf457e4b13f9d2
0
roles/gen_java_class_from_path
2,598
[ "no_license" ]
[ { "path": "roles/gen_java_class_from_path/tasks/gen_single_java_class.yaml", "content": "---\n\n- debug:\n msg: \"Single template 2 to generate Java class from it: {{ cs_gjcfp_file_2_handle }}\"\n verbosity: 1\n\n- set_fact:\n file_template_path: \"{{ cs_gjcfp_file_2_handle.src | dirname }}/\"\n\n-...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4546, "all_permissive": false }
ansible_role
AlexandrSokolov/ansible-commons-roles
539beb9a60b32972366effeb36bf457e4b13f9d2
0
roles/gen_java_class_from_template
2,598
[ "no_license" ]
[ { "path": "roles/gen_java_class_from_template/tasks/main.yaml", "content": "---\n- name: \"Create '{{ cs_gjcft_item.dst | dirname }}' folder\"\n file:\n state: directory\n path: \"{{ cs_gjcft_item.dst | dirname }}\"\n owner: \"{{ lookup('env', 'USER') }}\"\n group: \"{{ lookup('env', 'USER') }}...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 492, "all_permissive": false }
ansible_role
AlexandrSokolov/ansible-commons-roles
539beb9a60b32972366effeb36bf457e4b13f9d2
0
roles/insert_template_after_another
2,598
[ "no_license" ]
[ { "path": "roles/insert_template_after_another/tasks/main.yaml", "content": "---\n- name: Insert one template after another in the file debug message\n debug:\n msg:\n - \"File to update: '{{ cs_itaa_tmpl_item.path }}'\"\n - \"Search template:\"\n - \"{{ lookup('template', '{{ cs_itaa_tmp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 740, "all_permissive": false }
ansible_role
AlexandrSokolov/ansible-commons-roles
539beb9a60b32972366effeb36bf457e4b13f9d2
0
roles/insert_text_after_another
2,598
[ "no_license" ]
[ { "path": "roles/insert_text_after_another/tasks/main.yaml", "content": "---\n- name: Insert block of text after another in the file\n shell: >-\n java\n -jar {{ role_path }}/../../files/insert-unique-after.jar\n --path {{ cs_itaa_txt_item.path }}\n --insert-after \"{{ cs_itaa_txt_item.insert_a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 905, "all_permissive": false }
ansible_role
AlexandrSokolov/ansible-commons-roles
539beb9a60b32972366effeb36bf457e4b13f9d2
0
roles/load_maven_properties
2,598
[ "no_license" ]
[ { "path": "roles/load_maven_properties/tasks/main.yaml", "content": "---\n- name: Extracting project properties from Maven pom.xml\n include_tasks: load_mvn_properties.yaml\n with_items:\n - xpath: \"/ns:project/ns:groupId\"\n name: group_id\n - xpath: \"/ns:project/ns:artifactId\"\n name:...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1315, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/aws_elb_instances
2,698
[ "no_license" ]
[ { "path": "roles/aws_elb_instances/tasks/main.yml", "content": "---\n\n- name: gather ec2 instances\n ec2_instance_facts:\n region: \"{{ ec2_region }}\"\n filters: \n instance-state-name: \"running\"\n register: instances\n\n- name: add instance to elb\n elb_instance:\n region: \"{{ ec2_reg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 368, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/aws_f5
2,698
[ "no_license" ]
[ { "path": "roles/aws_f5/tasks/main.yml", "content": "---\n\n- name: launch f5 instances\n ec2_instance:\n name: \"ansible-{{ os }}\"\n key_name: \"{{ keypair }}\"\n vpc_subnet_id: \"{{ subnet.subnet.id }}\"\n instance_type: \"{{ instance_size }}\"\n security_group: \"{{ security_group }}\"\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 511, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/aws_instances
2,698
[ "no_license" ]
[ { "path": "roles/aws_instances/defaults/main.yml", "content": "---\n\ninstance_count: 1\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 23 }, { "path": "roles/aws_instances/tasks/main.yml", "content": "---\n\n- name: launch ec2 instances\n ec2_instance:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 769, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/aws_multi_instances
2,698
[ "no_license" ]
[ { "path": "roles/aws_multi_instances/tasks/main.yml", "content": "---\n\n- name: launch multiple instances\n ec2:\n region: \"{{ ec2_region }}\"\n key_name: \"{{ keypair }}\"\n instance_type: \"{{ instance_size }}\"\n image: \"{{ ami_id }}\"\n wait: yes\n vpc_subnet_id: \"{{ subnet.subnet...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 894, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/aws_vpc
2,698
[ "no_license" ]
[ { "path": "roles/aws_vpc/tasks/main.yml", "content": "---\n\n- name: create demo vpc\n ec2_vpc_net:\n name: \"{{ vpc_name }}\"\n cidr_block: \"{{ vpc_cidr }}\"\n region: \"{{ ec2_region }}\"\n register: vpc\n\n- name: create subnet\n ec2_vpc_subnet:\n state: present\n vpc_id: \"{{ vpc.vpc....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1892, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/f5_config
2,698
[ "no_license" ]
[ { "path": "roles/f5_config/tasks/main.yml", "content": "---\n\n- name: update admin password\n bigip_command:\n provider:\n ssh_keyfile: ~/.ssh/id_rsa\n transport: cli\n user: admin\n commands: \"modify auth user admin password <PASSWORD>\"\n\n- name: add nodes\n bigip_node:\n prov...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1905, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/find_ami
2,698
[ "no_license" ]
[ { "path": "roles/find_ami/tasks/main.yml", "content": "---\n\n- name: find ami\n ec2_ami_info:\n region: \"{{ ec2_region }}\"\n owners: \"{{ instance_info[os].owners }}\"\n filters:\n name: \"{{ instance_info[os].filter }}\"\n architecture: \"{{ instance_info[os].architecture }}\"\n reg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 472, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/gitlab-runner
2,698
[ "no_license" ]
[ { "path": "roles/gitlab-runner/tasks/ec2-user_ansible.yml", "content": "---\n\n- name: install pre-reqs\n yum:\n name:\n - python3\n state: installed\n\n- name: get latest pip\n pip:\n virtualenv: /home/ec2-user/ansible_venv\n virtualenv_command: python3 -m venv \n name: pip\n state...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2331, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/redhat-insights
2,698
[ "no_license" ]
[ { "path": "roles/redhat-insights/tasks/main.yml", "content": "---\n\n- name: install insights client\n yum:\n name: insights-client\n state: installed\n\n- name: edit insights config file\n ini_file:\n path: /etc/insights-client/insights-client.conf\n section: insights-client\n option: auto...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 718, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/route53_record
2,698
[ "no_license" ]
[ { "path": "roles/route53_record/tasks/main.yml", "content": "---\n\n- name: update route53 entry\n route53:\n state: present\n zone: \"{{ dns_zone }}\"\n record: \"{{ instance_name }}.{{ dns_zone }}\"\n type: A\n ttl: 7200\n value: \"{{ ec2.instances[0].public_ip_address }}\"\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 270, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/snow_close_change
2,698
[ "no_license" ]
[ { "path": "roles/snow_close_change/tasks/main.yml", "content": "---\n\n- name: close servicenow request\n snow_record:\n username: \"{{ snow_user }}\"\n password: \"{{ <PASSWORD> }}\"\n instance: \"{{ snow_instance }}\"\n state: present\n table: sc_request\n number: \"{{ snow_request }}\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 895, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/snow_close_migrate
2,698
[ "no_license" ]
[ { "path": "roles/snow_close_migrate/tasks/main.yml", "content": "---\n\n- name: close servicenow request\n snow_record:\n username: \"{{ snow_user }}\"\n password: \"{{ <PASSWORD> }}\"\n instance: \"{{ snow_instance }}\"\n state: present\n table: sc_request\n number: \"{{ snow_request }}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 736, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/tower_backup
2,698
[ "no_license" ]
[ { "path": "roles/tower_backup/tasks/main.yml", "content": "---\n\n- name: find tower directory\n find:\n paths: \"{{ ansible_user_dir }}\"\n patterns: ansible-tower-setup-*\n file_type: directory\n register: tower_dir\n\n- name: set tower version\n set_fact:\n tower_version: \"{{ tower_dir.fi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 606, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/tower_cert
2,698
[ "no_license" ]
[ { "path": "roles/tower_cert/tasks/main.yml", "content": "---\n\n- name: get certbot\n get_url:\n url: https://dl.eff.org/certbot-auto\n dest: \"{{ ansible_user_dir }}\"\n mode: 0755\n\n- name: stop tower services so we can get cert\n shell: ansible-tower-service stop\n\n- name: get cert from lets...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 888, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/tower_install
2,698
[ "no_license" ]
[ { "path": "roles/tower_install/tasks/main.yml", "content": "---\n\n- name: download tower tar file\n unarchive:\n src: https://releases.ansible.com/ansible-tower/setup-bundle/ansible-tower-setup-bundle-{{ tower_version }}.el{{ ansible_distribution_major_version }}.tar.gz\n dest: \"{{ ansible_user_dir...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 987, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/tower_restore
2,698
[ "no_license" ]
[ { "path": "roles/tower_restore/tasks/main.yml", "content": "---\n\n- name: find tower directory\n find:\n paths: \"{{ ansible_user_dir }}\"\n patterns: ansible-tower-setup-*\n file_type: directory\n register: tower_dir\n\n- name: set tower version\n set_fact:\n tower_version: \"{{ tower_dir.f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 601, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/update_cmdb
2,698
[ "no_license" ]
[ { "path": "roles/update_cmdb/tasks/main.yml", "content": "---\n\n- name: add hosts to cmdb\n servicenow.itsm.configuration_item:\n instance:\n username: \"{{ snow_user }}\"\n password: \"{{ <PASSWORD> }}\"\n host: \"https://{{ snow_instance }}.service-now.com\"\n name: \"{{ ansible_fqd...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 760, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/windows_chocolatey
2,698
[ "no_license" ]
[ { "path": "roles/windows_chocolatey/tasks/main.yml", "content": "---\n\n- name: Install Apps\n win_chocolatey:\n name: \"{{ item }}\"\n state: present\n with_items:\n - firefox\n - putty.install\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 134 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 134, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/windows_dsc_local_admins
2,698
[ "no_license" ]
[ { "path": "roles/windows_dsc_local_admins/tasks/main.yml", "content": "---\n\n- name: add local user\n win_user:\n name: pharriso\n password: <PASSWORD>\n state: present\n\n- name: manage local admins\n win_dsc:\n resource_name: Group\n GroupName: Administrators\n Ensure: Present\n Me...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 250, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/windows_dsc_service
2,698
[ "no_license" ]
[ { "path": "roles/windows_dsc_service/tasks/main.yml", "content": "---\n\n- name: start snmp service\n win_dsc:\n resource_name: Service\n Name: \"SNMPTRAP\"\n State: \"Running\"\n StartupType: \"Manual\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 138 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 138, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/windows_dsc_telnet
2,698
[ "no_license" ]
[ { "path": "roles/windows_dsc_telnet/tasks/main.yml", "content": "---\n\n- name: install telnet client feature\n win_dsc:\n resource_name: WindowsFeature\n Name: telnet-client\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 113 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 113, "all_permissive": false }
ansible_role
pharriso/ansible-aws
8b69faef617441ad01a051c48c1fc7fd11ed1f27
3
roles/windows_reg_key
2,698
[ "no_license" ]
[ { "path": "roles/windows_reg_key/tasks/main.yml", "content": "---\n\n- name: Get Reg Key Value for RDP\n win_reg_stat:\n path: HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\WinStations\\RDP-Tcp\n name: UserAuthentication\n register: current_version\n\n- name: Allow RDP connections with...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 406, "all_permissive": false }
ansible_role
BJWRD/Ansible
553ce5405d954d79ee5cb1882e95b5a449bc0b58
0
ansible-python-flask-deployment/roles/docker
2,698
[ "no_license" ]
[ { "path": "ansible-python-flask-deployment/roles/docker/tasks/main.yml", "content": "# Docker Installation and Configuration Tasks\n---\n- name: Update package cache\n become: true\n yum:\n update_cache: yes\n\n- name: \"{{ packages }}\"\n yum:\n name: \"{{ packages }}\" \n state: present\n\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1951, "all_permissive": false }
ansible_role
BJWRD/Ansible
553ce5405d954d79ee5cb1882e95b5a449bc0b58
0
ansible-python-flask-deployment/roles/verification_tests
2,698
[ "no_license" ]
[ { "path": "ansible-python-flask-deployment/roles/verification_tests/tasks/main.yml", "content": "# Python Flask Application Verification Check\n---\n- name: Send HTTP request and display response\n uri:\n url: http://localhost:8080\n method: GET\n return_content: yes\n register: http_result\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 268, "all_permissive": false }
ansible_role
BJWRD/Ansible
553ce5405d954d79ee5cb1882e95b5a449bc0b58
0
rhce9-vm-playbooks/roles/apache
2,698
[ "no_license" ]
[ { "path": "rhce9-vm-playbooks/roles/apache/tasks/main.yml", "content": "---\n# tasks file for roles/apache\n- name:\n dnf:\n name: \n - httpd\n - firewalld\n state: latest\n- name:\n service:\n name: httpd\n state: started\n enabled: yes\n- name:\n service:\n name: firewalld\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 934, "all_permissive": false }
ansible_role
BJWRD/Ansible
553ce5405d954d79ee5cb1882e95b5a449bc0b58
0
rhce9-vm-playbooks/roles/motd
2,698
[ "no_license" ]
[ { "path": "rhce9-vm-playbooks/roles/motd/tasks/main.yml", "content": "---\n# tasks file for motd\n- name:\n template:\n src: motd.j2\n dest: /etc/motd\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 84 }, { "path": "rhce9-vm-playbooks/roles/motd/README.m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 410, "all_permissive": false }
ansible_role
BJWRD/Ansible
553ce5405d954d79ee5cb1882e95b5a449bc0b58
0
rhce9-vm-playbooks/roles/motd2
2,698
[ "no_license" ]
[ { "path": "rhce9-vm-playbooks/roles/motd2/tasks/main.yml", "content": "---\n# tasks file for motd2\n- name: motd2\n copy:\n content: Welcome to Dev environment this is {{ inventory_hostname }}\n dest: /etc/motd\n when: inventory_hostname in groups['dev']\n- copy:\n content: Welcome to Qual enviro...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1177, "all_permissive": false }
ansible_role
BJWRD/Ansible
553ce5405d954d79ee5cb1882e95b5a449bc0b58
0
rhce9-vm-playbooks/roles/webconfig
2,698
[ "no_license" ]
[ { "path": "rhce9-vm-playbooks/roles/webconfig/README.md", "content": "webconfig\n=========\n\nEnables & starts httpd service and allows the http port on the firewall. The index.html is then deployed while using variables defined in the roles defaults directory. \n\n(Ensure the webconfig_role.yml playbook em...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 1107, "all_permissive": false }
ansible_role
coalyonysh/sdlc-test
6f72166721f444a40cf12f219bf5cf9ce4eadf67
0
ansible_pipeline/roles/build
2,698
[ "no_license" ]
[ { "path": "ansible_pipeline/roles/build/tasks/main.yml", "content": "- name: Get gopath\n shell: go env GOPATH\n register: gopath\n\n- name: Build the Go application\n command: go build -o {{ repo_path }}/src/bin/app {{ repo_path }}/src/main.go\n args:\n chdir: \"{{ repo_path }}/src\"\n become: yes...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 266, "all_permissive": false }
ansible_role
coalyonysh/sdlc-test
6f72166721f444a40cf12f219bf5cf9ce4eadf67
0
ansible_pipeline/roles/defectdojo
2,698
[ "no_license" ]
[ { "path": "ansible_pipeline/roles/defectdojo/tasks/main.yml", "content": "---\n\n- name: Build Dojo\n command: \"{{ dojo_path }}/dc-build.sh\"\n args:\n chdir: \"{{ dojo_path }}\"\n register: build_result\n ignore_errors: true\n changed_when: build_result.stdout != \"\"\n failed_when: build_result....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 7207, "all_permissive": false }
ansible_role
coalyonysh/sdlc-test
6f72166721f444a40cf12f219bf5cf9ce4eadf67
0
ansible_pipeline/roles/pre-push
2,698
[ "no_license" ]
[ { "path": "ansible_pipeline/roles/pre-push/tasks/main.yml", "content": "# - name: Install Gitleaks\n# command: go install github.com/zricethezav/gitleaks@latest\n# args:\n# creates: ~/go/bin/gitleaks\n\n- name: Clone gitleaks repository\n git:\n repo: https://github.com/gitleaks/gitleaks.git\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1199, "all_permissive": false }
ansible_role
coalyonysh/sdlc-test
6f72166721f444a40cf12f219bf5cf9ce4eadf67
0
ansible_pipeline/roles/prepare
2,698
[ "no_license" ]
[ { "path": "ansible_pipeline/roles/prepare/tasks/main.yml", "content": "- name: Get current directory\n ansible.builtin.shell:\n cmd: cd ../ ; pwd\n register: current_dir\n\n- name: Set repo path\n set_fact:\n repo_path: \"{{ current_dir.stdout }}\"\n\n- name: Set dojo path\n set_fact:\n dojo_pa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 456, "all_permissive": false }
ansible_role
coalyonysh/sdlc-test
6f72166721f444a40cf12f219bf5cf9ce4eadf67
0
ansible_pipeline/roles/sast
2,698
[ "no_license" ]
[ { "path": "ansible_pipeline/roles/sast/tasks/main.yaml", "content": "---\n- name: Install semgrep\n pip:\n name: semgrep\n virtualenv: \"{{ repo_path }}/.venv\"\n state: present\n\n- name: Analyze code using Semgrep\n command: \"{{ repo_path }}/.venv/bin/semgrep --config=auto --json --output {{ r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 673, "all_permissive": false }
ansible_role
coalyonysh/sdlc-test
6f72166721f444a40cf12f219bf5cf9ce4eadf67
0
ansible_pipeline/roles/unit-tests
2,698
[ "no_license" ]
[ { "path": "ansible_pipeline/roles/unit-tests/tasks/main.yml", "content": "---\n- name: Run unit tests for the Go application\n command: go test \n args:\n chdir: \"{{ repo_path }}/src\"\n become: yes\n when: ansible_system == \"Darwin\" ", "license_type": "no_license", "detected_licenses": []...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 160, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/aerospike
2,698
[ "no_license" ]
[ { "path": "roles/aerospike/template/aerospike.j2", "content": "# Aerospike database configuration file for use with systemd.\n\nservice {\n\tproto-fd-max 15000\n\tcluster-name cakery\n}\n\nlogging {\n\tconsole {\n\t\tcontext any info\n\t}\n}\n\nnetwork {\n\tservice {\n\t\taddress any\n\t\tport 3000\n\t}\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2760, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/apache
2,698
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "- name: \"apache and updating repository\"\n apt:\n name: \"{{apache_package}}\"\n state: present\n update_cache: yes\n when: ansible_distribution == \"Debian\"\n\n- name:\n service:\n name: \"{{apache_service}}\"\n state: starte...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 548, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/checkmk
2,698
[ "no_license" ]
[ { "path": "roles/checkmk/tasks/main.yml", "content": "- name: Downloading check-mk-raw-2.2.0p26_0.bullseye_amd64.deb, Check if file exists\n stat:\n path: \"/tmp/check-mk-raw-2.2.0p26_0.bullseye_amd64.deb\"\n register: file_stat\n\n- name: Download file if it doesn't exist\n get_url:\n url: https:/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2143, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/deb11-repo
2,698
[ "no_license" ]
[ { "path": "roles/deb11-repo/tasks/main.yml", "content": "- name: copying source file for debian11\n template:\n src: \"{{debian11_source_file}}\"\n dest: /etc/apt/sources.list\n- name: debian os update and upgrade\n apt:\n upgrade: yes\n update_cache: yes\n force_apt_get: yes\n cache_val...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 331, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/debian-11
2,698
[ "no_license" ]
[ { "path": "roles/debian-11/tasks/main.yml", "content": "- name: copying source file for debian11\n template:\n src: \"{{debian11_source_file}}\"\n dest: /etc/apt/sources.list \n- name: debian os update and upgrade\n apt:\n upgrade: yes\n update_cache: yes\n force_apt_get: yes\n cache_val...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1088, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/dns-server
2,698
[ "no_license" ]
[ { "path": "roles/dns-server/tasks/main.yml", "content": "- name: \"Installing named service\"\n yum:\n name: \n - bind \n - bind-utils\n state: latest\n- name: \"changing dns config file\"\n template:\n src: \"{{dns-host-file}}\"\n dest: /etc/named.conf\n backup: ye...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1567, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/fasts
2,698
[ "no_license" ]
[ { "path": "roles/fasts/tasks/main.yml", "content": "- name: Collect only facts returned by facter\n ansible.builtin.setup:\n gather_subset:\n - '!all'\n - '!<any valid subset>'\n - facter\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 150 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 150, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/fleet-agent
2,698
[ "no_license" ]
[ { "path": "roles/fleet-agent/tasks/main.yml", "content": "- name: debian os update and upgrade\n apt:\n upgrade: yes\n update_cache: yes\n force_apt_get: yes\n cache_valid_time: 36000\n become: true\n\n- name: \"coping certs file\"\n template:\n src: \"{{certs_template_file}}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1635, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/grafana
2,698
[ "no_license" ]
[ { "path": "roles/grafana/tasks/main.yml", "content": "- name: downloading grafana deb package\n ansible.builtin.get_url:\n url: https://dl.grafana.com/enterprise/release/grafana-enterprise_11.0.0_amd64.deb\n dest: /root/\n\n\n- name: Install grafan\n ansible.builtin.apt:\n deb: /root/grafana-ente...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 412, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/icinga2
2,698
[ "no_license" ]
[ { "path": "roles/icinga2/tasks/main.yml", "content": "- name: installing icinga2 dependencies\n apt:\n name:\n - php-gd \n - php-mbstring \n - php-mysqlnd \n - php-curl \n - php-xml \n - php-cli \n - php-soap \n - php-intl \n - php-xmlrpc \n - php-zip \n - php...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 773, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/jenkins
2,698
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/main.yml", "content": "- name: debian os update\n apt:\n update_cache: yes\n force_apt_get: yes\n cache_valid_time: 3600\n- name: debian os upgrade\n apt:\n state: latest\n force_apt_get: yes\n cache_valid_time: 3600\n- name: installing jenkins\n apt:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 461, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/k8s-client
2,698
[ "no_license" ]
[ { "path": "roles/k8s-client/tasks/main2.yml", "content": "- name: debian os update and upgrade\n apt:\n upgrade: yes\n update_cache: yes\n force_apt_get: yes\n cache_valid_time: 36000\n become: true\n\n- name: Install containerd httpd (state=present is optional)\n ansible.builtin.apt:\n na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3396, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/nagios
2,698
[ "no_license" ]
[ { "path": "roles/nagios/tasks/main.yml", "content": "- name: installing nagios dependecies\n apt:\n name: \"{{nagios}}\"\n state: latest\n\n- name: starting apache2 service\n service:\n name: apache2\n state: started\n\n- name: Downloading nagios\n ansible.builtin.get_url:\n url: htt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2003, "all_permissive": false }
ansible_role
shubhamshuklaxi/ansible
58c0421320b657c0f3429895c683a743d6cea465
0
roles/prometheus
2,698
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yml", "content": "- name: Downloading prometheus\n ansible.builtin.get_url:\n url: https://github.com/prometheus/prometheus/releases/download/v2.53.0/prometheus-2.53.0.linux-amd64.tar.gz\n dest: /root/\n\n- name: Extracting prometheus-2.53.0.linux-amd64.tar.gz\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3058, "all_permissive": false }
ansible_role
SabiNjoshi1/php_app_terraform_ansible
3071ca61a2f55344ec818746b118fa160ee0ab71
0
ansible/roles/apache
2,698
[ "no_license" ]
[ { "path": "ansible/roles/apache/tasks/main.yml", "content": "- name: Install Apache\n apt:\n name:\n - apache2\n - unzip\n update_cache: yes\n state: latest\n\n- name: copy index.php file\n copy:\n src: index/index.php\n dest: /var/www/html/index/\n\n- name: restart Apache\n serv...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1905, "all_permissive": false }
ansible_role
SabiNjoshi1/php_app_terraform_ansible
3071ca61a2f55344ec818746b118fa160ee0ab71
0
ansible/roles/mysql
2,698
[ "no_license" ]
[ { "path": "ansible/roles/mysql/vars/users.sql", "content": "CREATE TABLE users (id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, name VARCHAR(30) NOT NULL, email VARCHAR(50) NOT NULL);\n\nINSERT INTO users (name, email) VALUES ('<NAME>', '<EMAIL>');\nINSERT INTO users (name, email) VALUES ('<NAME>', '<EMAIL>'...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 605, "all_permissive": false }
ansible_role
SabiNjoshi1/php_app_terraform_ansible
3071ca61a2f55344ec818746b118fa160ee0ab71
0
ansible/roles/php
2,698
[ "no_license" ]
[ { "path": "ansible/roles/php/tasks/main.yml", "content": "- name: Make sure the packages are installed (Debian/Ubuntu)\n apt:\n pkg: \"{{item}}\"\n state: present\n update_cache: yes\n with_items:\n - php\n - php-cli\n - php-common\n - php-curl\n - php-gd\n - php-mbstring\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 302, "all_permissive": false }
ansible_role
SpandanaKopppaku/ansible
96a48726cb620c70a854af61791b389c2d136ee0
0
roles/common
2,698
[ "no_license" ]
[ { "path": "roles/common/tasks/nodejs.yml", "content": "- name: Configuring NodeJS\n ansible.builtin.shell: curl --silent --location https://rpm.nodesource.com/setup_16.x | sudo bash -\n\n- name: Installing NodeJS\n ansible.builtin.package:\n name: npm\n state: present \n \n- name: Creating App...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2184, "all_permissive": false }
ansible_role
SpandanaKopppaku/ansible
96a48726cb620c70a854af61791b389c2d136ee0
0
roles/rabbitmq
2,698
[ "no_license" ]
[ { "path": "roles/rabbitmq/tasks/main.yml", "content": "- name: Installing the Erlang package\n ansible.builtin.shell: curl -s https://packagecloud.io/install/repositories/rabbitmq/erlang/script.rpm.sh | sudo bash\n\n\n- name: Configuring {{COMPONENT}}-{{ENV}}\n ansible.builtin.shell: curl -s https://packa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 886, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/artifacts
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/artifacts/tasks/main.yml", "content": "- name: Create directories\n become: true\n ansible.builtin.file:\n path: \"{{ item }}\"\n state: directory\n owner: \"{{ username }}\"\n mode: u=rwx,o=rx,g=rx\n loop:\n - \"{{ artifacts_path }}\"\n", "license_ty...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 241, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/builder
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/builder/vars/main.yml", "content": "builder_path: /opt/softpack/builder\nbuilder_venv: \"{{ builder_path }}/.venv\"\nbuilder_config: \"{{ ansible_env.HOME }}/.softpack/builder/config.yml\"\n\nbuilder_repo: https://github.com/wtsi-hgi/softpack-builder\nbuilder_version: deve...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3943, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/certificates
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/certificates/tasks/main.yml", "content": "- name: Install certificates\n become: true\n block:\n - name: Copy certificate\n ansible.builtin.copy:\n src: etc/ssl/certs/{{ ssl.cert }}\n dest: /usr/share/ca-certificates/{{ dns.domain }}/\n mode:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 568, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/cleanup
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/cleanup/tasks/main.yml", "content": "- name: Cleanup\n become: true\n block:\n - name: Autoremove unused apt packages\n ansible.builtin.apt:\n autoremove: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 135 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 135, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/cmake
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/cmake/tasks/main.yml", "content": "- name: Install cmake\n become: true\n vars:\n url: https://apt.kitware.com\n key: \"{{ url }}/keys/kitware-archive-latest.asc\"\n repo: \"{{ url }}/ubuntu/\"\n block:\n - name: Add kitware signing key\n ansible.builti...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 523, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/init
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/init/tasks/main.yml", "content": "- name: Install and update apt packages\n become: true\n block:\n - name: Upgrade apt\n ansible.builtin.apt:\n upgrade: true\n update_cache: true\n register: cache_updated\n\n - name: Check if reboot require...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 631, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/ldap
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/ldap/handlers/main.yml", "content": "- name: Restart nscd\n become: true\n ansible.builtin.service:\n name: nscd\n state: restarted\n\n- name: Restart nslcd\n become: true\n ansible.builtin.service:\n name: nslcd\n state: restarted\n\n- name: Restart sshd\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2328, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/nginx
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/nginx/tasks/main.yml", "content": "- name: Install Nginx\n become: true\n block:\n - name: Install packages\n ansible.builtin.apt:\n name: \"{{ item }}\"\n state: present\n loop:\n - nginx\n", "license_type": "no_license", "detec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 180, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/python
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/python/tasks/main.yml", "content": "- name: Install python\n become: true\n vars:\n current: 3.8\n version: 3.11\n block:\n - name: Add python repository\n ansible.builtin.apt_repository:\n repo: ppa:deadsnakes/ppa\n\n - name: Install python {{ v...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 945, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/singularity
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/singularity/tasks/main.yml", "content": "- name: Install singularity\n become: true\n block:\n - name: Install singularity {{ singularity_version }}\n ansible.builtin.apt:\n deb: \"{{ singularity_repo }}\"\n state: present\n", "license_type": "n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 383, "all_permissive": false }
ansible_role
wtsi-hgi/softpack-iac
98adcae798567eed94a1822d89bff4d2021e4722
0
openstack/ansible/roles/spack
2,698
[ "no_license" ]
[ { "path": "openstack/ansible/roles/spack/files/.spack/repos.yaml", "content": "repos:\n - /opt/spack-repo\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 27 }, { "path": "openstack/ansible/roles/spack/files/.spack/config.yaml", "content": "config:\n install...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 1951, "all_permissive": false }
ansible_role
NawalAbuSalem/AnsibleQuestions
f4d9f612f06ee8c7d6b937005faf802aa2751aa6
0
roles/welcome
2,698
[ "no_license" ]
[ { "path": "roles/welcome/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - welcome\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "roles/welcome/handlers/main.yml", "content": "---\n# handlers file for...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 726, "all_permissive": false }
ansible_role
nfiawornu/npontu_DevOps
ae2ac7c8b3b6fc31208a99544cc83742aff150b8
0
roles/mysql
2,698
[ "no_license" ]
[ { "path": "roles/mysql/templates/my.cnf.Ubuntu.j2", "content": "#\n# The MySQL database server configuration file.\n#\n[client]\nport\t\t= {{ mysql_port }}\nsocket\t\t= /var/run/mysqld/mysqld.sock\n\n# This was formally known as [safe_mysqld]. Both versions are currently parsed.\n[mysqld_safe]\nsocket\t\t= ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 10755, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/dns-client
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/dns-client/templates/51-vagrant-nameserver.j2", "content": "---\nnetwork:\n version: 2\n renderer: networkd\n ethernets:\n eth1:\n nameservers:\n addresses:\n - {{ k8s_cluster_dns_server.ip }}\n search:\n - {{ k8s_cluster_dns_server.do...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 385, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/dns-server
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/dns-server/tasks/main.yml", "content": "---\n- name: Install bind9 dns server\n apt:\n name:\n - bind9\n - bind9utils\n - bind9-doc\n state: present\n update_cache: true\n\n- name: Set bind9 to ipv4 mode\n lineinfile:\n path: /etc/default/bind9\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 3960, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/docker
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/docker/tasks/main.yml", "content": "---\n- name: Install packages to allow apt to use a repository over HTTPS\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg-agent\n - software-properties-common\n state: present\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1257, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/helm
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/helm/tasks/main.yml", "content": "---\n- name: Check if helm is installed\n command: which helm\n register: helm_installed_output\n changed_when: false\n failed_when: false\n\n- name: Install helm\n shell: curl -L https://git.io/get_helm.sh | bash\n args:\n warn: false...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1139, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/ingress-controller
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/ingress-controller/tasks/main.yml", "content": "---\n- name: Helm install nginx ingress controller\n command: >\n helm upgrade\n --install\n --namespace kube-system\n --set controller.nodeSelector.\"kubernetes\\.io/hostname\"=master\n --set controller.toleration...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 727, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/kubebin
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/kubebin/tasks/main.yml", "content": "---\n- name: Install prerequisite packages\n apt:\n name:\n - apt-transport-https\n - curl\n state: present\n update_cache: true\n\n- name: Add Kubernetes' GPG key\n apt_key:\n url: https://packages.cloud.google.com/a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 715, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/load-balancer
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/load-balancer/tasks/main.yml", "content": "---\n- name: Helm install metallb load balancer\n command: >\n helm upgrade\n --install\n --namespace metallb-system\n --set controller.nodeSelector.\"kubernetes\\.io/hostname\"=master\n --set controller.tolerations[0]....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1167, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/master-config
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/master-config/templates/kubelet-extra-args.j2", "content": "KUBELET_EXTRA_ARGS=--node-ip={{ private_network_ip }}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 53 }, { "path": "provisioning/roles/master-config/defaults/main.yml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2429, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/nfs-client
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/nfs-client/tasks/main.yml", "content": "---\n- name: Helm install nfs client\n command: >\n helm upgrade\n --install\n --namespace kube-system\n --set nodeSelector.\"kubernetes\\.io/hostname\"=master\n --set tolerations[0].key=node-role.kubernetes.io/master\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 507, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/nfs-server
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/nfs-server/tasks/main.yml", "content": "---\n- name: Install nfs server\n apt:\n name:\n - nfs-kernel-server\n state: present\n update_cache: true\n\n- name: Create nfs share directory\n file:\n path: /var/nfs/kubernetes\n state: directory\n owner: nobo...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 568, "all_permissive": false }
ansible_role
zulhilmizainuddin/kubernetes-cluster-local
eaa18fb672568850df63bd5c53d18a53f2c699b1
1
provisioning/roles/node-config
2,698
[ "no_license" ]
[ { "path": "provisioning/roles/node-config/tasks/main.yml", "content": "---\n- name: Setup kubelet extra args\n template:\n src: kubelet-extra-args.j2\n dest: /etc/default/kubelet\n\n- name: Check if kubelet is running\n shell: ps -e | grep kubelet\n register: kubelet_pid_output\n changed_when: fal...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 462, "all_permissive": false }
ansible_role
EvelynEduards/UTNFRA_SO_2do_Parcial_Eduards
a4679dd40b819ed105daea943608ab299a113065
0
202406/ansible/roles/2do_parcial
2,698
[ "no_license" ]
[ { "path": "202406/ansible/roles/2do_parcial/tasks/main.yml", "content": "# tasks file for 2do_parcial\n\n- debug:\n msg: \"Tareas del 2do Parcial\"\n\n\n# Tareas para crear estructura de directorios\n- name: Crear directorio base /tmp/2do_parcial\n file:\n path: /tmp/2do_parcial\n state: directory...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1337, "all_permissive": false }
ansible_role
luca0x333/ansible-kali-setup
7da9d832a615ff8dd5defc3af1bc7a998a75a259
0
roles/kali_setup
2,698
[ "no_license" ]
[ { "path": "roles/kali_setup/tasks/zsh.yml", "content": "---\n- name: zsh.yml | installing oh-my-zsh\n shell: sh -c \"$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)\"\n\n- name: zsh.yml | installing zsh-autosuggestions\n shell: git clone https://github.com/zs...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 4357, "all_permissive": false }
ansible_role
btison/enmasse-ansible
b1ec412d148c5b86caf9f774a7958ad71e5f236d
0
roles/openshift_create_project
2,698
[ "no_license" ]
[ { "path": "roles/openshift_create_project/tasks/main.yml", "content": "---\n\n# create project\n- name: check if project {{ project_name }} exists\n shell: \"{{ openshift_cli }} get project {{ project_name }}\"\n register: project_result\n ignore_errors: true\n changed_when: false\n\n- name: create proj...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1071, "all_permissive": false }
ansible_role
btison/enmasse-ansible
b1ec412d148c5b86caf9f774a7958ad71e5f236d
0
roles/openshift_enmasse
2,698
[ "no_license" ]
[ { "path": "roles/openshift_enmasse/defaults/main.yml", "content": "---\n\nenmasse_tmp_dir: \"{{ tmp_dir }}/enmasse\"\n\nnone_authservice: true\nstandard_authservice: true\n\naddress_controller_secret_name: address-controller-cert\n\nresource_definitions_template: \"{{ role_path }}/files/templates/resource-d...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 18788, "all_permissive": false }
ansible_role
iotaledger-archive/goshimmer
198e6eb50083824dbfb375a8c9459bd48e9a0b4d
386
deploy/ansible/roles/asset-registry
2,698
[ "no_license" ]
[ { "path": "deploy/ansible/roles/asset-registry/tasks/main.yml", "content": "- name: Create directory\n file:\n path: /opt/asset-registry\n state: directory\n mode: '0755'\n\n\n- name: Template docker-compose.yml\n template:\n src: docker-compose.yml.j2\n dest: /opt/asset-registry/docker-com...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1512, "all_permissive": false }
ansible_role
iotaledger-archive/goshimmer
198e6eb50083824dbfb375a8c9459bd48e9a0b4d
386
deploy/ansible/roles/exporter
2,698
[ "no_license" ]
[ { "path": "deploy/ansible/roles/exporter/tasks/main.yml", "content": "- name: Create exporter directory\n file:\n path: /opt/exporter\n state: directory\n mode: '0755'\n\n- name: Copy docker-compose.yml\n copy:\n src: docker-compose.yml\n dest: /opt/exporter/docker-compose.yml\n mode: '0...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1607, "all_permissive": false }
ansible_role
iotaledger-archive/goshimmer
198e6eb50083824dbfb375a8c9459bd48e9a0b4d
386
deploy/ansible/roles/goshimmer-node
2,698
[ "no_license" ]
[ { "path": "deploy/ansible/roles/goshimmer-node/templates/docker-compose-public-node.yml.j2", "content": "#jinja2: trim_blocks:True, lstrip_blocks:True\nversion: '3.3'\n\nservices:\n goshimmer:\n image: {{goshimmerDockerImage}}:{{goshimmerDockerTag}}\n container_name: goshimmer\n stop_grace_period:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 8219, "all_permissive": false }
ansible_role
iotaledger-archive/goshimmer
198e6eb50083824dbfb375a8c9459bd48e9a0b4d
386
deploy/ansible/roles/lb
2,698
[ "no_license" ]
[ { "path": "deploy/ansible/roles/lb/templates/nodes.yml.j2", "content": "#jinja2: trim_blocks:True, lstrip_blocks:True\nhttp:\n routers:\n nodes-router:\n rule: \"Host(`nodes.tokenizedassetsdemo.iota.cafe`) || Host(`nodes.nectar.iota.cafe`)\"\n service: \"nodes\"\n entryPoints:\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4213, "all_permissive": false }
ansible_role
iotaledger-archive/goshimmer
198e6eb50083824dbfb375a8c9459bd48e9a0b4d
386
deploy/ansible/roles/metrics
2,698
[ "no_license" ]
[ { "path": "deploy/ansible/roles/metrics/files/grafana/provisioning/dashboards/goshimmer_monitoring.json", "content": "{\n \"annotations\": {\n \"list\": [\n {\n \"builtIn\": 1,\n \"datasource\": \"-- Grafana --\",\n \"enable\": true,\n \"hide\": true,\n \"iconColo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 18702, "all_permissive": false }
ansible_role
iotaledger-archive/goshimmer
198e6eb50083824dbfb375a8c9459bd48e9a0b4d
386
deploy/ansible/roles/snapshotter
2,698
[ "no_license" ]
[ { "path": "deploy/ansible/roles/snapshotter/templates/goshimmer_snapshot.bin_dump.sh.j2", "content": "#!/bin/bash\n\nHTTP_STS_CODE=\"$(/usr/bin/curl -s -o /dev/null -w '%{http_code}\\n' http://127.0.0.1:8080/healthz)\"\nLATEST_SNAPSHOT=\"http://127.0.0.1:8080/snapshot\"\nDRIVE=/tmp/BACKUPS\n\nif [[ $HTTP_ST...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4273, "all_permissive": false }
ansible_role
apache/ambari-deploy
b43f3fd4eea5d66181ba94375458194601882150
2
deploy_ansible/ansible-scripts/playbooks/roles/ambari-blueprint
2,698
[ "no_license" ]
[ { "path": "deploy_ansible/ansible-scripts/playbooks/roles/ambari-blueprint/tasks/main.yml", "content": "#\n# # Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements. See the NOTICE file\n# distributed with this work for additional information\n# regarding copy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 7014, "all_permissive": false }
ansible_role
apache/ambari-deploy
b43f3fd4eea5d66181ba94375458194601882150
2
deploy_ansible/ansible-scripts/playbooks/roles/ambari-config
2,698
[ "no_license" ]
[ { "path": "deploy_ansible/ansible-scripts/playbooks/roles/ambari-config/tasks/main.yml", "content": "#\n# # Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements. See the NOTICE file\n# distributed with this work for additional information\n# regarding copyrig...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 7407, "all_permissive": false }
ansible_role
apache/ambari-deploy
b43f3fd4eea5d66181ba94375458194601882150
2
deploy_ansible/ansible-scripts/playbooks/roles/common
2,698
[ "no_license" ]
[ { "path": "deploy_ansible/ansible-scripts/playbooks/roles/common/tasks/main.yml", "content": "#\n# # Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements. See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright owne...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 31998, "all_permissive": false }