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
BrianR-Back2Code/ansible-nginx-basic
e687987ef50008203f5ad2cef2749cb1c69ea490
0
ansible-nginx-basic/roles/nginx
225
[ "no_license" ]
[ { "path": "ansible-nginx-basic/roles/nginx/defaults/main.yml", "content": "---\n# Einfache Variablen für unseren Nginx-Server\n\n# Der Name unserer Website\nsite_name: \"Meine Ansible Demo-Seite\"\n\n# Eine kurze Beschreibung\nsite_description: \"Diese Seite wurde mit Ansible bereitgestellt\"\n\n# Die Farbe...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 5226, "all_permissive": false }
ansible_role
amanakin/ansible_task
9588735e25b9ddfc919edd0182303bcc9be02b95
0
task2/roles/shortener_service
220
[ "no_license" ]
[ { "path": "task2/roles/shortener_service/tasks/main.yaml", "content": "- name: mkdir\n file:\n path: \"~/.service/shortener/\"\n state: directory\n mode: 0777\n recurse: yes\n\n- name: clone\n git:\n repo: \"https://github.com/amanakin/shortener.git\"\n dest: \"~/.service/shortener/\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 382, "all_permissive": false }
ansible_role
willianccs/wp-ansible
bbfdf78f555a25631b91028cda643e8542e2db10
0
roles/base
220
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "---\n- name: Instalar Repositorio EPEL\n yum: name=epel-release state=latest\n\n- name: Instalar pacotes essenciais\n yum: name={{ item }} state=present\n with_items:\n - libselinux-python\n - libsemanage-python\n - net-tools\n\n- name: Reload n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 701, "all_permissive": false }
ansible_role
willianccs/wp-ansible
bbfdf78f555a25631b91028cda643e8542e2db10
0
roles/mysql
220
[ "no_license" ]
[ { "path": "roles/mysql/templates/my.cnf.j2", "content": "# MariaDB Server configuration\n#\n\n[mariadb]\nsocket\t= {{ mariadb_socket }}\nport\t= {{ mariadb_port }}\nskip_name_resolve\t= {{ mariadb_skip_name_resolve }}\n\ndefault_storage_engine\t= InnoDB\n\ncharacter_set_server\t= utf8\ncollation_server\t= u...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1094, "all_permissive": false }
ansible_role
willianccs/wp-ansible
bbfdf78f555a25631b91028cda643e8542e2db10
0
roles/nginx
220
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx\n yum: name=nginx state=present\n\n- name: Copy nginx config for wordpress\n template: src=default.conf.j2 dest=/etc/nginx/conf.d/default.conf\n notify: restart nginx\n", "license_type": "no_license", "detected_license...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 191, "all_permissive": false }
ansible_role
anweshadas/apache2
6d72688a3184300f6e4bb9e2def1391780f0bcd5
0
roles/apache2
220
[ "no_license" ]
[ { "path": "roles/apache2/templates/virtual_host.conf.j2", "content": "{% for ipv4 in ansible_facts.all_ipv4_addresses %}\n<VirtualHost {{ ipv4 }}:80>\n ServerAdmin webmaster@localhost\n ServerName \"{{ item.servername }}\"\n ServerAlias \"www.{{ item.servername }}\"\n {% if {{ item.redirect_url ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3887, "all_permissive": false }
ansible_role
UnfriendlyGrinch/Softbinator-Foundation-Talk156
fd1882d7627a36899405987759ba042d66839cae
3
ansible/roles/bckrestore
220
[ "no_license" ]
[ { "path": "ansible/roles/bckrestore/molecule/default/verify.yml", "content": "---\n# This is an example playbook to execute Ansible tests.\n\n- name: Verify\n hosts: all\n gather_facts: no\n\n tasks:\n - name: Gather the package facts\n ansible.builtin.package_facts:\n manager: rpm\n\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 18398, "all_permissive": false }
ansible_role
UnfriendlyGrinch/Softbinator-Foundation-Talk156
fd1882d7627a36899405987759ba042d66839cae
3
ansible/roles/common
220
[ "no_license" ]
[ { "path": "ansible/roles/common/handlers/main.yml", "content": "---\n- name: iptables-restart\n ansible.builtin.service:\n name: iptables.service\n state: restarted\n\n- name: pflog-restart\n ansible.builtin.service:\n name: pflog\n state: restarted\n\n- name: snmpd-restart\n ansible.builtin....
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 9618, "all_permissive": false }
ansible_role
UnfriendlyGrinch/Softbinator-Foundation-Talk156
fd1882d7627a36899405987759ba042d66839cae
3
ansible/roles/nginx
220
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/freebsd.yml", "content": "---\n- name: Install NGINX on FreeBSD\n community.general.pkgng:\n name: nginx\n state: present\n tags:\n - nginx\n - packages\n\n# Enable daemon on FreeBSD\n- name: Enable NGINX daemon\n ansible.builtin.lineinfile:\n dest: /et...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 14503, "all_permissive": false }
ansible_role
UnfriendlyGrinch/Softbinator-Foundation-Talk156
fd1882d7627a36899405987759ba042d66839cae
3
ansible/roles/sshd
220
[ "no_license" ]
[ { "path": "ansible/roles/sshd/templates/Rocky/8.4/sshd_config.j2", "content": "# {{ ansible_managed }}\n\nPort 22\nAddressFamily inet\n{% for ip in sshd_ips %}\nListenAddress {{ ip }}\n{% endfor %}\n\n# HostKey /etc/ssh/ssh_host_rsa_key\n# HostKey /etc/ssh/ssh_host_ecdsa_key\nHostKey /etc/ssh/ssh_host_ed255...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 8034, "all_permissive": false }
ansible_role
UnfriendlyGrinch/Softbinator-Foundation-Talk156
fd1882d7627a36899405987759ba042d66839cae
3
ansible/roles/users
220
[ "no_license" ]
[ { "path": "ansible/roles/users/vars/OpenBSD.yml", "content": "---\nusers_default_shell: /usr/local/bin/bash\nadmin_group: wheel\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 }, { "path": "ansible/roles/users/tasks/main.yml", "content": "---\n- name: Gath...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 6606, "all_permissive": false }
ansible_role
dotCipher/the-playbook
93580d3387af14f2d006d57316b1fb688e7b2f55
0
ansible/roles/centos
220
[ "no_license" ]
[ { "path": "ansible/roles/centos/tasks/iptables.yml", "content": "---\n# https://help.ubuntu.com/community/IptablesHowTo#Saving_iptables\n- hosts: all\n become: yes\n become_method: sudo\n\n vars:\n load_script: iptablesload\n save_script: iptablessave\n\n tasks:\n\n - name: Save current iptable...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 627, "all_permissive": false }
ansible_role
dotCipher/the-playbook
93580d3387af14f2d006d57316b1fb688e7b2f55
0
ansible/roles/intellij
220
[ "no_license" ]
[ { "path": "ansible/roles/intellij/vars/main.yml", "content": "---\n# vars file for intellij\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 29 }, { "path": "ansible/roles/intellij/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n ro...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2083, "all_permissive": false }
ansible_role
dotCipher/the-playbook
93580d3387af14f2d006d57316b1fb688e7b2f55
0
ansible/roles/java
220
[ "no_license" ]
[ { "path": "ansible/roles/java/tasks/jce_policy.yml", "content": "---\n- hosts: all\n become: yes\n become_method: sudo\n\n vars:\n download_dir: \"/usr/local/ansible-temp\"\n java_major_vers: 8\n java_security_folder: \"jre/lib/security\" # From JAVA_HOME\n java_us_policy_file: \"US_export_po...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3609, "all_permissive": false }
ansible_role
dotCipher/the-playbook
93580d3387af14f2d006d57316b1fb688e7b2f55
0
ansible/roles/oh-my-zsh
220
[ "no_license" ]
[ { "path": "ansible/roles/oh-my-zsh/tasks/main.yml", "content": "---\n- hosts: all\n\n vars:\n local_tmp: \"~/.ansible/tmp\"\n zsh_install_url: \"https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh\"\n zsh_theme: bureau\n\n tasks:\n\n - name: Install requirements\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1515, "all_permissive": false }
ansible_role
dotCipher/the-playbook
93580d3387af14f2d006d57316b1fb688e7b2f55
0
ansible/roles/ubuntu
220
[ "no_license" ]
[ { "path": "ansible/roles/ubuntu/tasks/ansible.yml", "content": "---\n- hosts: all\n gather_facts: false\n\n tasks:\n\n - name: Install Ansible dependencies (python-simplejson)\n raw: sudo apt-get -y install python-simplejson\n", "license_type": "no_license", "detected_licenses": [], "s...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 6861, "all_permissive": false }
ansible_role
dotCipher/the-playbook
93580d3387af14f2d006d57316b1fb688e7b2f55
0
archived/ubuntu-old/roles/admin_user
220
[ "no_license" ]
[ { "path": "archived/ubuntu-old/roles/admin_user/tasks/main.yml", "content": "---\n#- hosts: all\n# become: yes\n# become_method: sudo\n#\n# tasks:\n\n- name: Create remote user with admin group\n user:\n name: \"{{ username }}\"\n append: yes\n group: admin\n password: \"{{ <PASSWORD> }}\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 242, "all_permissive": false }
ansible_role
dotCipher/the-playbook
93580d3387af14f2d006d57316b1fb688e7b2f55
0
archived/ubuntu-old/roles/ansible
220
[ "no_license" ]
[ { "path": "archived/ubuntu-old/roles/ansible/tasks/main.yml", "content": "---\n#- hosts: all\n# gather_facts: false\n#\n# vars:\n# ansible_ssh_user: \"{{ username }}\"\n# ansible_sudo_pass: \"{{ <PASSWORD> }}\"\n#\n# tasks:\n\n- name: Install Ansible dependencies (python-simplejson)\n raw: sudo ap...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 254, "all_permissive": false }
ansible_role
dotCipher/the-playbook
93580d3387af14f2d006d57316b1fb688e7b2f55
0
archived/ubuntu-old/roles/passwordless
220
[ "no_license" ]
[ { "path": "archived/ubuntu-old/roles/passwordless/tasks/main.yml", "content": "---\n#- hosts: all\n# become: yes\n# become_method: sudo\n#\n# vars:\n# username: \"{{ ansible_user }}\"\n#\n# tasks:\n\n - name: Setup passwordless sudo\n include: sudo.yml\n\n - name: Setup passwordless ssh\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 298, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-domain-base-122
220
[ "no_license" ]
[ { "path": "roles/ofm-domain-base-122/templates/OFM-startAdminServer", "content": "#!/bin/bash\n{{ oracleHome }}/oracle_common/common/bin/wlst.sh \"{{ ofmInstallUserHomeDir }}/bin/{{ ofmDomainName }}-startAdminServer-{{ ofmAdminserverName }}.py\"", "license_type": "no_license", "detected_licenses": [...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 19, "total_bytes": 34610, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-domain-clean
220
[ "no_license" ]
[ { "path": "roles/ofm-domain-clean/defaults/main.yml", "content": "################################################################################################################################## \n# Oracle Fusion Middleware 12.2 Infrastructure installation playbook \n# Developed by <NAME> (<EMAIL>)...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 5267, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-domain-defaults
220
[ "no_license" ]
[ { "path": "roles/ofm-domain-defaults/tasks/main.yml", "content": "################################################################################################################################## \n# Oracle Fusion Middleware 12.2 Infrastructure installation playbook \n# Developed by <NAME> (<EMAIL>)...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4329, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-domain-forms-122
220
[ "no_license" ]
[ { "path": "roles/ofm-domain-forms-122/tasks/main.yml", "content": "################################################################################################################################## \n# Oracle Fusion Middleware 12.2 Infrastructure installation playbook \n# Developed by <NAME> (<EMAIL>...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 15113, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-domain-managedserver
220
[ "no_license" ]
[ { "path": "roles/ofm-domain-managedserver/defaults/main.yml", "content": "################################################################################################################################## \n# Oracle Fusion Middleware 12.2 Infrastructure installation playbook \n# Developed by <NAME> (...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2594, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-domain-oem-122
220
[ "no_license" ]
[ { "path": "roles/ofm-domain-oem-122/meta/main.yml", "content": "---\ndependencies:\n - ofm-domain-defaults\n - ofm-domain-base-122\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "roles/ofm-domain-oem-122/tasks/main.yml", "content": "#######...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4609, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-domain-pack
220
[ "no_license" ]
[ { "path": "roles/ofm-domain-pack/meta/main.yml", "content": "################################################################################################################################## \n# Oracle Fusion Middleware 12.2 Infrastructure installation playbook \n# Developed by <NAME> (<EMAIL>)\n# L...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2225, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-domain-unpack
220
[ "no_license" ]
[ { "path": "roles/ofm-domain-unpack/templates/OFM-12.2-startNodeManager.sh", "content": "#!/bin/bash\nnohup {{ ofmDomainHome }}/bin/startNodeManager.sh >startNodeManager-{{ ofmDomainName }}.out 2>&1 &\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 111 }, { "path"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3840, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-forms-122
220
[ "no_license" ]
[ { "path": "roles/ofm-forms-122/defaults/main.yml", "content": "################################################################################################################################## \n# Oracle Fusion Middleware 12.2 Infrastructure installation playbook \n# Developed by <NAME> (<EMAIL>)\n#...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4108, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-installation-clean
220
[ "no_license" ]
[ { "path": "roles/ofm-installation-clean/meta/main.yml", "content": "---\ndependencies:\n - ofm-installation-defaults\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 48 }, { "path": "roles/ofm-installation-clean/tasks/main.yml", "content": "##################...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1784, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-java-8
220
[ "no_license" ]
[ { "path": "roles/ofm-java-8/defaults/main.yml", "content": "################################################################################################################################## \n# Oracle Fusion Middleware 12.2 Infrastructure installation playbook \n# Developed by <NAME> (<EMAIL>)\n# Li...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3203, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-jdbc-datasource
220
[ "no_license" ]
[ { "path": "roles/ofm-jdbc-datasource/defaults/main.yml", "content": "################################################################################################################################## \n# Oracle Fusion Middleware 12.2 Infrastructure installation playbook \n# Developed by <NAME> (<EMAI...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 9800, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-ldap-integration
220
[ "no_license" ]
[ { "path": "roles/ofm-ldap-integration/meta/main.yml", "content": "---\ndependencies:\n - ofm-domain-base-122", "license_type": "no_license", "detected_licenses": [], "size_bytes": 41 }, { "path": "roles/ofm-ldap-integration/tasks/main.yml", "content": "##############################...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 8366, "all_permissive": false }
ansible_role
fernandohackbart/ansible-oracle-fusion-middleware
0319764782ce4a290a304d05c1ec70ae4387d0a6
3
roles/ofm-ohs-122
220
[ "no_license" ]
[ { "path": "roles/ofm-ohs-122/defaults/main.yml", "content": "################################################################################################################################## \n# Oracle Fusion Middleware 12.2 Infrastructure installation playbook \n# Developed by <NAME> (<EMAIL>)\n# L...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3706, "all_permissive": false }
ansible_role
zloeber/homelab
d0a584101cfbed5151cbf495a7a9bb0347fba608
1
appset2/metal/roles/pxe_server
220
[ "permissive" ]
[ { "path": "appset2/metal/roles/pxe_server/templates/kickstart.ks.j2", "content": "#version=RHEL8\n\n# Do not use graphical install\ntext\n\n# Keyboard layouts\nkeyboard --xlayouts='us'\n# System language\nlang en_US.UTF-8\n\n# Partition clearing information\nclearpart --all --drives={{ hostvars[item]['disk'...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3324, "all_permissive": true }
ansible_role
amineturki/awx
acd578ab0084a8808ef0bfc739a46ea793c49029
0
roles/firewalld
220
[ "no_license" ]
[ { "path": "roles/firewalld/tasks/main.yml", "content": "- name: Fetch report from remote machine\n fetch:\n src: \"/root/ansible/report_worker1_2023-03-06_01-52.txt\"\n dest: \"/tmp/fetched_files\"\n flat: yes\n fail_on_missing: yes\n delegate_to: localhost\n connection: local\n vars:\n a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 495, "all_permissive": false }
ansible_role
amineturki/awx
acd578ab0084a8808ef0bfc739a46ea793c49029
0
roles/motd
220
[ "no_license" ]
[ { "path": "roles/motd/vars/main.yml", "content": "---\n# vars file for /etc/ansible/roles/motd\nyour_telnet_host : 10.0.0.1\nyour_telnet_port : 80\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 96 }, { "path": "roles/motd/tasks/main.yml", "content": "---...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2004, "all_permissive": false }
ansible_role
nubecitaDeMisAmigosSA/ansible_setup_servers
23118270c811c40921f2eb132485685bc212c332
3
roles/basic
220
[ "no_license" ]
[ { "path": "roles/basic/tasks/main.yaml", "content": "---\n# Time\n- name: Set timezone\n timezone:\n name: \"{{ timezone }}\"\n\n# DNS\n- name: Set hostname\n hostname:\n name: \"{{ inventory_hostname }}\"\n\n- name: Update the /etc/hosts file with node name\n lineinfile:\n path: \"/etc/hosts\"\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1539, "all_permissive": false }
ansible_role
nubecitaDeMisAmigosSA/ansible_setup_servers
23118270c811c40921f2eb132485685bc212c332
3
roles/basic-install
220
[ "no_license" ]
[ { "path": "roles/basic-install/tasks/main.yaml", "content": "---\n# Miscellaneous\n- name: Install dependencies\n package:\n name:\n - procps\n - apparmor\n - micro\n - gpg\n - htop\n - zsh\n - git\n - apt-transport-https\n - ca-certificates\n - curl\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1673, "all_permissive": false }
ansible_role
nubecitaDeMisAmigosSA/ansible_setup_servers
23118270c811c40921f2eb132485685bc212c332
3
roles/harden
220
[ "no_license" ]
[ { "path": "roles/harden/tasks/main.yaml", "content": "- name: Add hardened SSH config\n copy:\n dest: /etc/ssh/sshd_config\n src: ../files/sshd_config\n owner: root\n group: root\n mode: 0600\n notify: Reload SSH\n\n- name: Install Fail2Ban\n ansible.builtin.apt:\n name: fail2ban\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1081, "all_permissive": false }
ansible_role
nubecitaDeMisAmigosSA/ansible_setup_servers
23118270c811c40921f2eb132485685bc212c332
3
roles/users
220
[ "no_license" ]
[ { "path": "roles/users/tasks/main.yaml", "content": "---\n# Docker\n- name: Create the docker group\n ansible.builtin.group:\n name: docker\n state: present\n\n- name: Add user accounts and setup SSH keys\n ansible.builtin.user:\n name: \"{{ item.key }}\"\n state: present\n create_home: yes...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 3267, "all_permissive": false }
ansible_role
ElistoryElista/Volgograd-hackathon
33a650d5c5c8cbec34b99cb05ba00b9e801ad274
0
backend/cicd/ansible/roles/prod-web-server
220
[ "no_license" ]
[ { "path": "backend/cicd/ansible/roles/prod-web-server/tasks/main.yml", "content": "- name: install docker\n apt:\n name: docker-compose\n state: present\n\n- name: update repo\n git:\n repo: <EMAIL>:ElistoryElista/volgograd-backend.git\n dest: \"/app/elistory-volgograd-backend\"\n key_file:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 642, "all_permissive": false }
ansible_role
ElistoryElista/Volgograd-hackathon
33a650d5c5c8cbec34b99cb05ba00b9e801ad274
0
backend/cicd/ansible/roles/web-server
220
[ "no_license" ]
[ { "path": "backend/cicd/ansible/roles/web-server/tasks/main.yml", "content": "- name: install docker\n apt:\n name: docker-compose\n state: present\n\n- name: update repo\n git:\n repo: <EMAIL>:ElistoryElista/backend.git\n dest: \"/app/elistory-backend\"\n key_file: \"~/.ssh/staging-deploy-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 588, "all_permissive": false }
ansible_role
ElistoryElista/Volgograd-hackathon
33a650d5c5c8cbec34b99cb05ba00b9e801ad274
0
frontend/cicd/ansible/roles/prod-web-server
220
[ "no_license" ]
[ { "path": "frontend/cicd/ansible/roles/prod-web-server/templates/system.web.service.j2", "content": "[Unit]\nDescription=Elistory Elista Container\nAfter=docker.service\nRequires=docker.service\n\n[Service]\nTimeoutStartSec=5\nRestart=always\nExecStartPre=-/usr/bin/docker stop web-service -t 2\nExecStartPre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1654, "all_permissive": false }
ansible_role
ElistoryElista/Volgograd-hackathon
33a650d5c5c8cbec34b99cb05ba00b9e801ad274
0
frontend/cicd/ansible/roles/web-server
220
[ "no_license" ]
[ { "path": "frontend/cicd/ansible/roles/web-server/tasks/main.yml", "content": "- name: install docker\n apt:\n name: docker-compose\n state: present\n\n- name: update repo\n git:\n repo: <EMAIL>:ElistoryElista/inclusive-Volgograd.git\n dest: \"/app/elistory-frontend\"\n key_file: \"~/.ssh/s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 609, "all_permissive": false }
ansible_role
jethigh/install_k8s
2190cc144d0912f62d0b33bc7074ab52e79c1367
0
roles/k8s
222
[ "no_license" ]
[ { "path": "roles/k8s/handlers/main.yml", "content": "---\n# handlers file for k8s-master\n- name: Restart containerd\n ansible.builtin.systemd:\n name: containerd\n state: restarted\n enabled: yes\n\n- name: Kubelet service\n ansible.builtin.systemd:\n state: started\n daemon_reload: yes\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 6201, "all_permissive": false }
ansible_role
jethigh/install_k8s
2190cc144d0912f62d0b33bc7074ab52e79c1367
0
roles/k8s_master
222
[ "no_license" ]
[ { "path": "roles/k8s_master/tasks/initialize.yml", "content": "---\n- name: Clean previous initialization\n shell: kubeadm reset -f\n register: cluster_reset\n\n- name: Initialize control-plane\n shell: kubeadm init --pod-network-cidr {{POD_NETWORK_CIDR}} --apiserver-advertise-address {{ APISERVER_ADVERT...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1676, "all_permissive": false }
ansible_role
jethigh/install_k8s
2190cc144d0912f62d0b33bc7074ab52e79c1367
0
roles/k8s_worker
222
[ "no_license" ]
[ { "path": "roles/k8s_worker/tasks/main.yml", "content": "---\n# tasks file for k8s-master\n- name: Include join plabook\n include: join.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 80 }, { "path": "roles/k8s_worker/tasks/join.yml", "content": "--- \n- ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 307, "all_permissive": false }
ansible_role
yassi-github/b3benkyokai-ansible
4ea4c04009e7bab165f31c0177bd62aff2ba85eb
0
playbook/roles/nextcloud
222
[ "no_license" ]
[ { "path": "playbook/roles/nextcloud/tasks/config.yaml", "content": "---\n- name: \"check installed\"\n stat:\n path: \"{{ nextcloud.datadir_path }}\"\n get_checksum: no\n register: datadir_stat\n\n- name: \"make admin user\"\n command: \"nextcloud.manual-install {{ nextcloud.admin_username }} {{ ne...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 8008, "all_permissive": false }
ansible_role
nsapay/ansible-deploy
95dd88b86b806fbf55059264522b84ddc36a17ec
0
roles/apache
222
[ "permissive" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n- name: \"apache installation\"\n package:\n name: \"apache2\"\n state: \"present\"\n\n- name: \"apache service activation\"\n service:\n name: \"apache2\"\n state: \"started\"\n enabled: yes\n\n- name: \"ins...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1837, "all_permissive": true }
ansible_role
nsapay/ansible-deploy
95dd88b86b806fbf55059264522b84ddc36a17ec
0
roles/docker
222
[ "permissive" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n# tasks file for Docker\n- name: \"Docker installation\"\n package:\n name: \"docker\"\n state: \"present\"\n\n- name: \"Docker pip package install\"\n pip:\n name: \"docker\"\n\n- name: \"Docker service activation\"\n service:\n name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 279, "all_permissive": true }
ansible_role
nsapay/ansible-deploy
95dd88b86b806fbf55059264522b84ddc36a17ec
0
roles/mariadb
222
[ "permissive" ]
[ { "path": "roles/mariadb/tasks/main.yml", "content": "---\n- name: \"mariadb-server installation\"\n package:\n name:\n - mariadb-server\n - python3-{% if ansible_facts['distribution'] == 'CentOS' and ansible_facts['distribution_major_version'] == '8' %}PyMySQL{% else %}pymysql{% endif %}\n sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 361, "all_permissive": true }
ansible_role
nsapay/ansible-deploy
95dd88b86b806fbf55059264522b84ddc36a17ec
0
roles/web_content
222
[ "permissive" ]
[ { "path": "roles/web_content/tasks/main.yml", "content": "---\n- name: \"Static site directory\"\n file:\n path: \"/var/www/html/site\"\n owner: \"www-data\"\n group: \"www-data\"\n state: directory\n\n- name: \"uncompress the static content archive\"\n unarchive:\n src: \"https://gitlab.co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 799, "all_permissive": true }
ansible_role
philip860/ansible_galaxy_lastpass_cli
1868a993b1e7e6d6a334bd65c993236e1c4e3c66
0
roles/lastpass
222
[ "no_license" ]
[ { "path": "roles/lastpass/meta/main.yml", "content": "\ngalaxy_info:\n author: \"<NAME>\"\n description: \"Ansible role for managing LastPass with lastpass-cli\"\n license: \"GPL-3.0-or-later\"\n min_ansible_version: \"2.9\"\n platforms:\n - name: \"GenericLinux\"\n galaxy_tags:\n - security\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 7069, "all_permissive": false }
ansible_role
CMSgov/redhat-enterprise-linux-8-stig-baseline
3a16e0f3e62e03a1fce5e38f489d67732d5011db
8
spec/ansible/roles/ansible-role-rhel-vanilla
222
[ "no_license" ]
[ { "path": "spec/ansible/roles/ansible-role-rhel-vanilla/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - ansible-role-rhel-stig-vanilla\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "spec/ansible/roles/a...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 466, "all_permissive": false }
ansible_role
split-n/beryx
741588c8fd94ff2be2aaea5d0802ba5df45c73a7
0
provisioning/roles/basic
222
[ "no_license" ]
[ { "path": "provisioning/roles/basic/tasks/main.yml", "content": "---\n# vim:ft=ansible\n- name: replace apt repository to jp\n become: true\n replace:\n dest=/etc/apt/sources.list\n regexp='//archive\\.ubuntu\\.com/'\n replace='//jp.archive.ubuntu.com/'\n- name: Apt dist-upgrade\n apt: upgrade=d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 991, "all_permissive": false }
ansible_role
split-n/beryx
741588c8fd94ff2be2aaea5d0802ba5df45c73a7
0
provisioning/roles/ffmpeg
222
[ "no_license" ]
[ { "path": "provisioning/roles/ffmpeg/vars/main.yml", "content": "---\nffmpeg_tmp_dir: \"/home/{{ ansible_ssh_user }}/ffmpeg-factory\"\nffmpeg_src_dir: \"{{ ffmpeg_tmp_dir }}/src\"\nffmpeg_refspec: n2.8.5\nffmpeg_deps:\n - cmake\n - libass-dev\n - libfreetype6-dev\n - libtheora-dev\n - libtool\n - libv...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2060, "all_permissive": false }
ansible_role
split-n/beryx
741588c8fd94ff2be2aaea5d0802ba5df45c73a7
0
provisioning/roles/nginx
222
[ "no_license" ]
[ { "path": "provisioning/roles/nginx/tasks/main.yml", "content": "---\n# vim:ft=ansible\n- name: Install nginx\n apt: name=nginx state=latest update_cache=yes\n become: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 106 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 106, "all_permissive": false }
ansible_role
split-n/beryx
741588c8fd94ff2be2aaea5d0802ba5df45c73a7
0
provisioning/roles/postgresql
222
[ "no_license" ]
[ { "path": "provisioning/roles/postgresql/handlers/main.yml", "content": "- name: restart postgresql\n become: yes\n service: name=postgersql state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 84 }, { "path": "provisioning/roles/postgresql/tasks/mai...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 631, "all_permissive": false }
ansible_role
split-n/beryx
741588c8fd94ff2be2aaea5d0802ba5df45c73a7
0
provisioning/roles/redis
222
[ "no_license" ]
[ { "path": "provisioning/roles/redis/tasks/main.yml", "content": "---\n# vim:ft=ansible\n- name: Install redis\n apt: name=redis-server state=latest update_cache=yes\n become: true\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
split-n/beryx
741588c8fd94ff2be2aaea5d0802ba5df45c73a7
0
provisioning/roles/ruby
222
[ "no_license" ]
[ { "path": "provisioning/roles/ruby/tasks/main.yml", "content": "---\n# vim:ft=ansible\n- name: install rbenv deps\n apt: name={{ item }} state=latest update_cache=yes\n become: yes\n with_items:\n - autoconf\n - bison\n - libssl-dev\n - libyaml-dev\n - libreadline6-dev\n - zlib1g-dev\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2097, "all_permissive": false }
ansible_role
neiledem/HOA11_Edem
e4af9a511ceed729229d42327572cc2565c497e7
0
roles/Ubuntu
222
[ "no_license" ]
[ { "path": "roles/Ubuntu/tasks/config_docker.yml", "content": "- name: Creating a directory for Dockerfile\n file:\n path: /home/neil/docker_config\n state: directory\n\n- name: Copying the Dockerfile\n copy:\n src: Dockerfile\n dest: /home/neil/docker_config\n owner: neil\n group: neil\n...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 910, "all_permissive": false }
ansible_role
darshaner/rdmaster
3ea659629a604a5c7eef7b78da96e0521d9b1bf2
0
ansible/roles/backup_s3
222
[ "no_license" ]
[ { "path": "ansible/roles/backup_s3/tasks/main.yml", "content": "---\n- name: Install Rclone\n apt:\n name: rclone\n state: present\n\n# Configure Rclone\n- name: Create Rclone config\n command: rclone config create rdmaster-opt s3 provider \"Scaleway\" env_auth \"false\" access_key_id \"{{ scaleway_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1556, "all_permissive": false }
ansible_role
darshaner/rdmaster
3ea659629a604a5c7eef7b78da96e0521d9b1bf2
0
ansible/roles/base_setup
222
[ "no_license" ]
[ { "path": "ansible/roles/base_setup/tasks/main.yml", "content": "---\n- name: Copy ssh keys \n block:\n - name: Create directory if it doesn't exist\n become: no\n file:\n path: ~/.ssh\n state: directory\n mode: '0700'\n \n - name: Add authorized key\n becom...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1749, "all_permissive": false }
ansible_role
darshaner/rdmaster
3ea659629a604a5c7eef7b78da96e0521d9b1bf2
0
ansible/roles/cloudflare
222
[ "no_license" ]
[ { "path": "ansible/roles/cloudflare/tasks/main.yml", "content": "---\n\n- name: Add Services in Cloudflare\n community.general.cloudflare_dns:\n zone: \"{{ cf_zone }}\"\n record: \"{{ item.key }}.{{ cf_zone }}\"\n type: \"A\"\n value: \"{{ public_ip }}\"\n ttl: \"{{ cf_ttl }}\"\n proxied:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 349, "all_permissive": false }
ansible_role
darshaner/rdmaster
3ea659629a604a5c7eef7b78da96e0521d9b1bf2
0
ansible/roles/docker_build
222
[ "no_license" ]
[ { "path": "ansible/roles/docker_build/tasks/main.yml", "content": "---\n- include_tasks: docker_build.yml\n\n...", "license_type": "no_license", "detected_licenses": [], "size_bytes": 42 }, { "path": "ansible/roles/docker_build/tasks/docker_build.yml", "content": "---\n- name: Create...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2731, "all_permissive": false }
ansible_role
darshaner/rdmaster
3ea659629a604a5c7eef7b78da96e0521d9b1bf2
0
ansible/roles/docker_compose_deploy
222
[ "no_license" ]
[ { "path": "ansible/roles/docker_compose_deploy/tasks/main.yml", "content": "---\n- name: Deploy docker-compose file\n ansible.builtin.template:\n src: \"docker-compose.yml.j2\"\n dest: \"/{{ folder }}/docker-compose-{{ app }}.yml\"\n mode: '0766'\n\n- name: Start Docker Compose services\n ansible...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1712, "all_permissive": false }
ansible_role
darshaner/rdmaster
3ea659629a604a5c7eef7b78da96e0521d9b1bf2
0
ansible/roles/docker_install
222
[ "no_license" ]
[ { "path": "ansible/roles/docker_install/tasks/install_docker-ce.yml", "content": "---\n- name: Update the apt-get package index\n apt:\n update_cache: yes\n\n- name: Install necessary packages\n apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - apt-transport-https\n - ca-certific...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1472, "all_permissive": false }
ansible_role
darshaner/rdmaster
3ea659629a604a5c7eef7b78da96e0521d9b1bf2
0
ansible/roles/dyn_haproxy
222
[ "no_license" ]
[ { "path": "ansible/roles/dyn_haproxy/templates/haproxy.conf.j2", "content": "defaults\n mode http\n timeout client 10s\n timeout connect 5s\n timeout server 10s\n timeout http-request 10s\n\nfrontend http-{{ app }}\n bind :8080\n\n{% for container in container_info.results %}\n {% set container_name ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2987, "all_permissive": false }
ansible_role
likid0/pre-ceph-ansible
0c7caa5f2b839c5695123749ad781b690777f064
0
roles/server_basic
222
[ "no_license" ]
[ { "path": "roles/server_basic/tasks/user.yaml", "content": "- name: create user\n user:\n name: ceph-admin\n comment: \"ceph admin\"\n uid: 1550\n group: wheel\n generate_ssh_key: yes\n ssh_key_bits: 2048\n ssh_key_file: .ssh/id_rsa\n\n- group:\n name: ceph\n state: present\n\n\n...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2881, "all_permissive": false }
ansible_role
zelenkovsky/awx
9b992c971e4f01c797000741dcb657e3b6e20f66
2
installer/roles/local_docker
224
[ "permissive" ]
[ { "path": "installer/roles/local_docker/defaults/main.yml", "content": "---\ndockerhub_version: \"{{ lookup('file', playbook_dir + '/../VERSION') }}\"\n\nrabbitmq_version: \"3.7.4\"\nrabbitmq_image: \"ansible/awx_rabbitmq:{{rabbitmq_version}}\"\nrabbitmq_default_vhost: \"awx\"\nrabbitmq_erlang_cookie: \"coo...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 6035, "all_permissive": true }
ansible_role
lvm/livecoding-env
7b49dfef838809df2d5958ee3925101169e8de48
0
roles/common
224
[ "no_license" ]
[ { "path": "roles/common/tasks/audio.yml", "content": "---\n- name: install JACK stuff\n apt:\n pkg: \"{{ item }}\"\n state: installed\n with_items:\n - jackd2\n - jack-rack\n - jackeq\n - pulseaudio-module-jack\n - qjackctl\n - qjackrcd\n sudo: yes\n\n- name: install virtual synth...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 1445, "all_permissive": false }
ansible_role
meganlkm/vagrant-ansible-jenkins
0910f9894e8228d0dd0b625b186ca700f8046c3f
0
ansible/roles/apache
224
[ "no_license" ]
[ { "path": "ansible/roles/apache/defaults/main.yml", "content": "---\napache_listen_port: 80\napache_daemon: apache2\n\napache_server_root: /etc/apache2\napache_conf_path: /etc/apache2\n\napache_packages:\n - apache2\n - apache2-mpm-prefork\n - apache2-utils\n - apache2-bin\n\napache_mods_enabled:\n - p...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2226, "all_permissive": false }
ansible_role
meganlkm/vagrant-ansible-jenkins
0910f9894e8228d0dd0b625b186ca700f8046c3f
0
ansible/roles/jenkins
224
[ "no_license" ]
[ { "path": "ansible/roles/jenkins/tasks/repo.yml", "content": "---\n# Provides add-apt-repository\n- name: Install python-software-properties\n sudo: yes\n action: \"{{ ansible_pkg_mgr }} pkg=python-software-properties state=installed\"\n\n- name: Install python-pycurl\n sudo: yes\n action: \"{{ ansible_...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1536, "all_permissive": false }
ansible_role
micgresham/atmosphere2023
68f2960b6e46e11b03d6d4c61f860dc58e8dfa18
0
central-template/roles/clone_groups
224
[ "no_license" ]
[ { "path": "central-template/roles/clone_groups/verify.yml", "content": "---\r\n- name: Get Template Data\r\n vars:\r\n code_version: \"ALL\"\r\n group_name: \"{{group_to_check.value.first_group}}\"\r\n uri:\r\n url: \"{{base_url}}/configuration/v1/groups/{{group_name}}/templates?limit=20&offset...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1729, "all_permissive": false }
ansible_role
micgresham/atmosphere2023
68f2960b6e46e11b03d6d4c61f860dc58e8dfa18
0
central-template/roles/make_groups
224
[ "no_license" ]
[ { "path": "central-template/roles/make_groups/tasks/make_group_list.yml", "content": "---\r\n- name: set variables\r\n set_fact:\r\n version: \"{{group_requested.value.version|int}}\"\r\n customer: \"{{group_requested.value.customer}}\"\r\n type: \"{{group_requested.value.type}}\"\r\n branch: \...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 5734, "all_permissive": false }
ansible_role
micgresham/atmosphere2023
68f2960b6e46e11b03d6d4c61f860dc58e8dfa18
0
central-template/roles/make_new_ver
224
[ "no_license" ]
[ { "path": "central-template/roles/make_new_ver/templates/new_vars.j2", "content": "# template data\r\n{{ definitions | to_nice_yaml }}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 49 }, { "path": "central-template/roles/make_new_ver/tasks/main.yml", "content...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 8596, "all_permissive": false }
ansible_role
danielballan/caproto-rpi
3642405070a513369de87c7c684962cbd148bcff
2
roles/python
224
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "# An ansible role to configure python3.6 on a Raspberry Pi.\n# to get started, ensure you have ansible installed:\n# $ sudo apt install ansible\n# Then run this playbook:\n# $ ansible-playbook -i localhost, python3.6.yml\n# Then you can get started:\n# ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1729, "all_permissive": false }
ansible_role
danielballan/caproto-rpi
3642405070a513369de87c7c684962cbd148bcff
2
roles/ssh
224
[ "no_license" ]
[ { "path": "roles/ssh/tasks/main.yml", "content": "- name: \"Do not permit root SSH login.\"\n become: true\n lineinfile:\n path: /etc/ssh/sshd_config\n line: PermitRootLogin no\n- name: \"Do not allow password authentication (i.e., keypair only).\"\n become: true\n lineinfile:\n path: /etc/ssh/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 412, "all_permissive": false }
ansible_role
danielballan/caproto-rpi
3642405070a513369de87c7c684962cbd148bcff
2
roles/ufw
224
[ "no_license" ]
[ { "path": "roles/ufw/tasks/main.yml", "content": "- name: Install ufw.\n become: true\n apt: name=ufw update_cache=true cache_valid_time=600\n- name: Allow but rate-limit SSH connections.\n become: true\n ufw:\n rule: limit\n port: ssh\n proto: tcp\n- name: Allow UDP connections on standard EPI...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1016, "all_permissive": false }
ansible_role
astarosh87/Project
1226e769d1b4331c0e1920da931a448a36434182
0
ansible/roles/WP
224
[ "no_license" ]
[ { "path": "ansible/roles/WP/tasks/main.yaml", "content": "---\n- name: Create a working directory\n file:\n path: /data\n state: directory\n owner: root\n group: root\n mode: 0777\n\n- name: Create a directory wordpress\n file:\n path: /data/wordpress\n state: directory\n owner: ro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 792, "all_permissive": false }
ansible_role
astarosh87/Project
1226e769d1b4331c0e1920da931a448a36434182
0
ansible/roles/docker
224
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yaml", "content": "---\n- name: Install packages using apt\n apt:\n name: \n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg2\n - software-properties-common\n state: present\n update_cache: no\n\n- name: Add...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1375, "all_permissive": false }
ansible_role
astarosh87/Project
1226e769d1b4331c0e1920da931a448a36434182
0
ansible/roles/notification
224
[ "no_license" ]
[ { "path": "ansible/roles/notification/defaults/main.yaml", "content": "slack_token: <KEY>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 19 }, { "path": "ansible/roles/notification/tasks/bad.yaml", "content": "- name: Notification to Slack if tasks failed\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 774, "all_permissive": false }
ansible_role
detiber/demo-env-ansible
ff5c426f59c5298df01e19418258dfc9fd5b4acb
0
roles/collectd
224
[ "permissive" ]
[ { "path": "roles/collectd/tasks/main.yml", "content": "---\n- name: Install EPEL\n package:\n name: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm\n state: installed\n\n- name: Install collectd and plugins\n package:\n name: \"{{ item }}\"\n state: installed\n with_ite...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 848, "all_permissive": true }
ansible_role
detiber/demo-env-ansible
ff5c426f59c5298df01e19418258dfc9fd5b4acb
0
roles/imagestreams
224
[ "permissive" ]
[ { "path": "roles/imagestreams/tasks/main.yml", "content": "---\n- name: Install awscli\n package:\n name: awscli\n state: present\n\n- name: Login to ecr registry\n shell: aws ecr get-login --region us-east-1 | awk '{ print $4 \"\\n\" $6 \"\\n\" $8 }'\n register: ecr_login\n\n\n# TODO; do this bet...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1596, "all_permissive": true }
ansible_role
detiber/demo-env-ansible
ff5c426f59c5298df01e19418258dfc9fd5b4acb
0
roles/pipeline
224
[ "permissive" ]
[ { "path": "roles/pipeline/tasks/main.yml", "content": "---\n- name: Create the pipeline builder SA\n shell: >\n echo '{\"kind\": \"ServiceAccount\", \"apiVersion\": \"v1\", \"metadata\": {\"name\": \"pipeline-builder\", \"namespace\": \"default\" }}' | oc create -f -\n register: create_sa\n changed_wh...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2033, "all_permissive": true }
ansible_role
detiber/demo-env-ansible
ff5c426f59c5298df01e19418258dfc9fd5b4acb
0
roles/postgres_dbs
224
[ "permissive" ]
[ { "path": "roles/postgres_dbs/tasks/main.yml", "content": "---\n- set_fact:\n ec2_zone: \"{{ (lookup('ec2_zones_by_region', ec2_region) | oo_split(',')).0 }}\"\n when: \"{{ ec2_zone is undefined }}\"\n\n- name: Create the volumes for the postgresql instances\n become: no\n local_action:\n module: e...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1864, "all_permissive": true }
ansible_role
detiber/demo-env-ansible
ff5c426f59c5298df01e19418258dfc9fd5b4acb
0
roles/prime_images
224
[ "permissive" ]
[ { "path": "roles/prime_images/tasks/main.yml", "content": "---\n- name: Get the docker login string for ecr\n command: aws ecr get-login --region us-east-1\n register: ecr_login\n delegate_to: \"{{ groups.masters.0 }}\"\n\n- name: Perform docker login\n command: \"{{ ecr_login.stdout }}\"\n\n- name: pre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 361, "all_permissive": true }
ansible_role
detiber/demo-env-ansible
ff5c426f59c5298df01e19418258dfc9fd5b4acb
0
roles/projects
224
[ "permissive" ]
[ { "path": "roles/projects/tasks/main.yml", "content": "---\n- name: Create the projects\n command: oadm new-project \"{{ item }}\"\n with_items: \"{{ demo_projects | union(demo_pipeline_projects) }}\"\n register: create_projects\n failed_when: \"{{ create_projects.rc == 1 and 'already exists' not in cre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1276, "all_permissive": true }
ansible_role
detiber/demo-env-ansible
ff5c426f59c5298df01e19418258dfc9fd5b4acb
0
roles/proxies
224
[ "permissive" ]
[ { "path": "roles/proxies/vars/main.yml", "content": "---\nproxy_projects:\n- ui-proxy\n#- che-proxy\n\nproxy_params:\n ui-proxy:\n replicas: \"{{ demo_ui_replicas }}\"\n s3_bucket: \"{{ demo_ui_s3_bucket }}\"\n htpasswd_contents: \"{{ demo_ui_htpasswd_contents }}\"\n app_dns: \"{{ demo_ui_app_d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2536, "all_permissive": true }
ansible_role
NeilaBouali/MLOPS
3d58ad27b5f3f79d7a7a86e3426a2a4678e12c7a
0
infra/ansible/roles/docker
224
[ "no_license" ]
[ { "path": "infra/ansible/roles/docker/handlers/main.yml", "content": "---\r\n- name: Redémarrer Docker\r\n service:\r\n name: docker\r\n state: restarted\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 84 }, { "path": "infra/ansible/roles/docker/tasks/ma...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 698, "all_permissive": false }
ansible_role
NeilaBouali/MLOPS
3d58ad27b5f3f79d7a7a86e3426a2a4678e12c7a
0
infra/ansible/roles/mlflow
224
[ "no_license" ]
[ { "path": "infra/ansible/roles/mlflow/files/Dockerfile", "content": "# Utiliser une image Ubuntu de base\nFROM ubuntu:22.04\n\n# Définir le fuseau horaire\nENV TZ=UTC\nRUN apt-get update && apt-get install -y tzdata && \\\n ln -sf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone\n\n# In...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3634, "all_permissive": false }
ansible_role
NeilaBouali/MLOPS
3d58ad27b5f3f79d7a7a86e3426a2a4678e12c7a
0
infra/ansible/roles/monitoring
224
[ "no_license" ]
[ { "path": "infra/ansible/roles/monitoring/handlers/main.yml", "content": "---\n- name: Restart Prometheus\n docker_container:\n name: \"{{ containers.prometheus.name }}\"\n state: started\n restart: yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 }, {...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2562, "all_permissive": false }
ansible_role
andreyzx12/ansible-exp
df22693dd2928f36b6a55867e736b8fd4c6c365a
0
roles/install_apache
224
[ "no_license" ]
[ { "path": "roles/install_apache/vars/main.yml", "content": "---\n# vars file for install_apache\n\ndest_folder: /var/www/html/\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 65 }, { "path": "roles/install_apache/tasks/main.yml", "content": "---\n# tasks fi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1021, "all_permissive": false }
ansible_role
slickage/ansible-dokku
6fc5950171014bc3ca8a704ea1d401ad4b6d44de
2
roles/dependencies
224
[ "no_license" ]
[ { "path": "roles/dependencies/tasks/main.yml", "content": "---\n\n- name: install git\n apt: \"name=git state=latest update_cache=yes cache_valid_time=3600\"\n\n- name: install make\n apt: \"name=make state=latest update_cache=yes cache_valid_time=3600\"\n\n- name: install curl\n apt: \"name=curl state=l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 616, "all_permissive": false }
ansible_role
networkthor/phone-conf-generator
49de8be912e5b771540de0558e86b308c78ef4e0
0
roles/phone
224
[ "no_license" ]
[ { "path": "roles/phone/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - phone\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 }, { "path": "roles/phone/vars/main.yml", "content": "---\nphones:\n - number: 0900\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 17012, "all_permissive": false }
ansible_role
Stromdahl/configs
3b9d1ad3d2b06f27f64510840f6d5d417d201b7f
1
servers/roles/common
224
[ "no_license" ]
[ { "path": "servers/roles/common/defaults/main.yml", "content": "users:\n - name: ms\n comment: It's-a me!\n shell: /bin/bash\n ssh_key: \"{{ lookup('file', 'files/ms-id-ed25519.pub') }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 128 }, { "path": ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 905, "all_permissive": false }
ansible_role
Stromdahl/configs
3b9d1ad3d2b06f27f64510840f6d5d417d201b7f
1
tools/workstation-setup/roles/dotfiles
224
[ "no_license" ]
[ { "path": "tools/workstation-setup/roles/dotfiles/tasks/main.yml", "content": "---\n- name: Ensure the dotfiles directory exists\n file:\n path: \"{{ dotfiles_configs_dir }}\"\n state: directory\n mode: '0755'\n\n- name: Create symbolic links for dotfiles\n file:\n src: \"{{ dotfiles_configs_d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 349, "all_permissive": false }
ansible_role
Stromdahl/configs
3b9d1ad3d2b06f27f64510840f6d5d417d201b7f
1
tools/workstation-setup/roles/nvim
224
[ "no_license" ]
[ { "path": "tools/workstation-setup/roles/nvim/tasks/main.yml", "content": "---\n- name: Ensure necessary packages are installed\n apt:\n name:\n - make\n - gcc\n - ripgrep\n - unzip\n - git\n - xclip\n - curl\n state: present\n update_cache: yes\n\n- name: Check ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1550, "all_permissive": false }
ansible_role
srikarKulkarni/ansible-tomcat
ec80e53f9f39b7170676b4e1a902b688304d1cbb
0
tomcat-install/roles/deploy
224
[ "no_license" ]
[ { "path": "tomcat-install/roles/deploy/handlers/main.yml", "content": "---\n# handlers file for tomcati\n\n- name: restart tomcat\n systemd:\n name: tomcat\n state: restarted\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 118 }, { "path": "t...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 386, "all_permissive": false }
ansible_role
srikarKulkarni/ansible-tomcat
ec80e53f9f39b7170676b4e1a902b688304d1cbb
0
tomcat-install/roles/java8
224
[ "no_license" ]
[ { "path": "tomcat-install/roles/java8/tasks/main.yml", "content": "---\n# tasks file for java8\n - name: Download Java\n command: \"wget {{java}} -P {{download_folder}}\"\n - name: Archive Java\n command: \"{{ item }}\"\n with_items:\n #- \"mkdir {{java_folder}}\"\n - \"tar ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1302, "all_permissive": false }