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
Uttah/price-getter
676c2ff39bc30ec8070525a7a234b386bab8d48a
0
deploy/roles/deploy_image
7,756
[ "no_license" ]
[ { "path": "deploy/roles/deploy_image/tasks/main.yaml", "content": "---\n- name: ensure container is stopped\n community.docker.docker_container:\n name: \"{{ container_name }}\"\n state: absent\n\n- name: Deploy image\n community.docker.docker_container:\n name: \"{{ container_name }}\"\n imag...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 410, "all_permissive": false }
ansible_role
gabbyTI/ansible_homelab
ac3580b9d1b61bc62633919b99cebf12a601a6ee
0
roles/configure_sudo_nopasswd
7,756
[ "no_license" ]
[ { "path": "roles/configure_sudo_nopasswd/vars/main.yml", "content": "---\nvars_role_sudo_config_path: /etc/sudoers", "license_type": "no_license", "detected_licenses": [], "size_bytes": 44 }, { "path": "roles/configure_sudo_nopasswd/tasks/main.yml", "content": "- name: \"[Ubuntu] Set...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 6230, "all_permissive": false }
ansible_role
gabbyTI/ansible_homelab
ac3580b9d1b61bc62633919b99cebf12a601a6ee
0
roles/install_basic_apps
7,756
[ "no_license" ]
[ { "path": "roles/install_basic_apps/tasks/main.yml", "content": "- name: Update and upgrade packages\n apt:\n update_cache: yes\n upgrade: dist\n\n- name: Install basic utilities\n apt:\n name:\n - vim\n - curl\n - git\n - unzip\n - net-tools\n - qemu-guest-agent\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 560, "all_permissive": false }
ansible_role
gabbyTI/ansible_homelab
ac3580b9d1b61bc62633919b99cebf12a601a6ee
0
roles/set_static_ip
7,756
[ "no_license" ]
[ { "path": "roles/set_static_ip/handlers/main.yml", "content": "- name: Apply netplan changes\n ansible.builtin.command:\n cmd: netplan apply\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 80 }, { "path": "roles/set_static_ip/tasks/main.yml", "content": "...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 973, "all_permissive": false }
ansible_role
sorieux/trino-ansible
9f2c09180af5a9dc6a0ec3a8ad93806ae4423a28
0
roles/install_java
7,756
[ "no_license" ]
[ { "path": "roles/install_java/tasks/main.yml", "content": "---\n- name: Install Java {{ required_java_version }} if not present\n dnf:\n name: \"java-{{ required_java_version }}-openjdk\"\n state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes": 146 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 146, "all_permissive": false }
ansible_role
sorieux/trino-ansible
9f2c09180af5a9dc6a0ec3a8ad93806ae4423a28
0
roles/install_python
7,756
[ "no_license" ]
[ { "path": "roles/install_python/tasks/main.yml", "content": "---\n- name: Install Python 3 if not present\n dnf:\n name: python3\n state: present\n\n- name: Check if python points to any binary\n command: which python\n register: which_python\n failed_when: false\n changed_when: false\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 453, "all_permissive": false }
ansible_role
sorieux/trino-ansible
9f2c09180af5a9dc6a0ec3a8ad93806ae4423a28
0
roles/install_rsync
7,756
[ "no_license" ]
[ { "path": "roles/install_rsync/tasks/main.yml", "content": "---\n- name: Install rsync if not present\n dnf:\n name: rsync\n state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 82, "all_permissive": false }
ansible_role
sorieux/trino-ansible
9f2c09180af5a9dc6a0ec3a8ad93806ae4423a28
0
roles/install_trino
7,756
[ "no_license" ]
[ { "path": "roles/install_trino/tasks/main.yml", "content": "---\n- name: Copy Trino tar.gz to target machine\n copy:\n src: ./{{ trino_version }}.tar.gz\n dest: /tmp/{{ trino_version }}.tar.gz\n\n- name: Extract Trino archive\n unarchive:\n src: /tmp/{{ trino_version }}.tar.gz\n dest: /opt/\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 555, "all_permissive": false }
ansible_role
sorieux/trino-ansible
9f2c09180af5a9dc6a0ec3a8ad93806ae4423a28
0
roles/sync_repository
7,756
[ "no_license" ]
[ { "path": "roles/sync_repository/tasks/main.yml", "content": "---\n- name: Remove existing repository directory\n file:\n path: \"{{ repo_local_path }}\"\n state: absent\n delegate_to: localhost\n become: no\n run_once: true\n\n- name: Clone repository\n git:\n repo: \"{{ repo_url }}\"\n de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1196, "all_permissive": false }
ansible_role
sorieux/trino-ansible
9f2c09180af5a9dc6a0ec3a8ad93806ae4423a28
0
roles/trino_service_management
7,756
[ "no_license" ]
[ { "path": "roles/trino_service_management/defaults/main.yml", "content": "---\ntrino_etc_dir: \"/etc/trino\"\ntrino_server_log_file: \"/var/trino/var/log/server.log\"\ntrino_launcher_log_file: \"/var/trino/var/log/launcher.log\"\ntrino_pid_file: \"/var/trino/var/run/launcher.pid\"\ntrino_launcher_base_cmd: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1063, "all_permissive": false }
ansible_role
sorieux/trino-ansible
9f2c09180af5a9dc6a0ec3a8ad93806ae4423a28
0
roles/uninstall_trino
7,756
[ "no_license" ]
[ { "path": "roles/uninstall_trino/tasks/main.yml", "content": "---\n- name: Remove Trino files and directories\n file:\n path: \"{{ item }}\"\n state: absent\n with_items:\n - \"/opt/trino\"\n - \"/etc/trino\"\n - \"/var/log/trino\"\n", "license_type": "no_license", "detected_license...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 171, "all_permissive": false }
ansible_role
thenets/saile
4525188dcf351a2eb5881fd32208710b3e292f48
1
dev-machine/roles/common
7,756
[ "no_license" ]
[ { "path": "dev-machine/roles/common/tasks/main.yaml", "content": "# OS package manager\n- name: Ensure some OS packages are installed.\n apt: name=\"{{ item }}\" state=latest\n loop:\n - git\n - golang\n - python3-pip\n - jq\n become: true\n\n# Python libs\n- name: Ensure latest some Python l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 336, "all_permissive": false }
ansible_role
thenets/saile
4525188dcf351a2eb5881fd32208710b3e292f48
1
dev-machine/roles/secrets-tools
7,756
[ "no_license" ]
[ { "path": "dev-machine/roles/secrets-tools/tasks/main.yaml", "content": "- name: Ensure some OS packages are installed.\n apt: name=\"{{ item }}\" state=latest\n loop:\n - unzip\n become: true\n\n# age\n- name: Get latest 'age' release metadata\n uri:\n url: https://api.github.com/repos/FiloSottil...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1214, "all_permissive": false }
ansible_role
avkovalevs/citus
41898ac29191bd995873ef908e3634106a2ee9dc
0
roles/citus
7,756
[ "no_license" ]
[ { "path": "roles/citus/vars/main.yml", "content": "---\n# vars file for citus\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 27 }, { "path": "roles/citus/defaults/main.yml", "content": "---\n# defaults file for citus\ncitus_major_version: 9.5\ncitus_host_g...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 7304, "all_permissive": false }
ansible_role
avkovalevs/citus
41898ac29191bd995873ef908e3634106a2ee9dc
0
roles/common
7,756
[ "no_license" ]
[ { "path": "roles/common/templates/hosts.j2", "content": "---\n#Hosts file add-on\n{% for item in ansible_play_batch %}\n{%- if item != 'localhost' %}\n{{ hostvars[item].ansible_default_ipv4.address }} {{ hostvars[item].ansible_hostname }}\n{% endif %}\n{% endfor %}\n", "license_type": "no_license"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 618, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
install_nextcloud/roles/nextcloud_setup
7,756
[ "no_license" ]
[ { "path": "install_nextcloud/roles/nextcloud_setup/vars/main.yml", "content": "---\r\n\r\ndir_nextcloud: \"/var/www/nextcloud\"\r\n\r\nconf: \"nextcloud.conf\"\r\n\r\nmysql_user: \"nextcloud_user\"\r\ndb_name: \"nextcloud\"\r\ndb_type: \"mysql\"\r\n\r\nip: \"{{ ansible_facts['default_ipv4']['address'] }}\"\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 5251, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
install_nextcloud/roles/os_prepare
7,756
[ "no_license" ]
[ { "path": "install_nextcloud/roles/os_prepare/vars/main.yml", "content": "---\r\n\r\npackages:\r\n - sudo\r\n - htop\r\n - net-tools\r\n - wget\r\n - unzip\r\n - python3-pymysql\r\n\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 }, { "path": "install_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 344, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
roles/apache
7,756
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n- name: Update package repositories\n apt:\n update_cache: yes\n cache_valid_time: 3600\n\n- name: Install Apache web server\n apt:\n name: apache2\n state: present\n\n- name: Ensure Apache service is enabled and running\n service:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 871, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
roles/lamp_setup
7,756
[ "no_license" ]
[ { "path": "roles/lamp_setup/tasks/main.yml", "content": "---\r\n\r\n- name: install php packages\r\n apt:\r\n name: \"{{ php_packages }}\"\r\n state: latest\r\n\r\n- name: install other packages\r\n apt:\r\n name: \"{{ packages }}\"\r\n state: latest\r\n\r\n- name: change php.ini memory settin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3061, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
roles/mysql
7,756
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n- name: add .my.cnf\n template:\n src: my.cnf.j2\n dest: /root/.my.cnf\n owner: root\n group: root\n mode: 0600\n\n- name: Set the root password\n mysql_user:\n name: root\n password: \"{{ <PASSWORD> }}\"\n login_unix_socket:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 439, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
roles/nginx-rp
7,756
[ "no_license" ]
[ { "path": "roles/nginx-rp/defaults/main.yml", "content": "---\n# defaults file for nginx-rp\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 33 }, { "path": "roles/nginx-rp/tasks/main.yml", "content": "---\n# tasks file for nginx-rp\n- name: Import update role...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 282, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
roles/ssh
7,756
[ "no_license" ]
[ { "path": "roles/ssh/tasks/main.yml", "content": "---\n# tasks file for ssh\n- name: Accept only passkey authentication\n ansible.builtin.lineinfile:\n path: /etc/ssh/sshd_config\n regexp: '^#PasswordAuthentication'\n line: 'PasswordAuthentication yes'\n\n- name: modify SSH port \n ansible.built...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 646, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
roles/ufw
7,756
[ "no_license" ]
[ { "path": "roles/ufw/tasks/main.yml", "content": "---\n- name: Enable ufw\n community.general.ufw:\n state: enabled\n policy: allow\n\n- name: Set logging\n community.general.ufw:\n logging: 'on'\n\n- name: allow http port\n community.general.ufw:\n rule: allow\n port: \"{{ item }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 301, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
roles/update
7,756
[ "no_license" ]
[ { "path": "roles/update/vars/main.yml", "content": "---\npackages:\n - sudo\n - htop\n - net-tools\n - wget\n - unzip\n - python3-pymysql\n - curl\n - vim\n - htop\n - git\n - ufw\n - fail2ban\n - rsync\n - build-essential\n - python3\n - python3-pip", "license_type": "no_license", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 484, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
roles/user
7,756
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yml", "content": "---\n- name: Create new user\n ansible.builtin.user:\n name: nimda\n state: present\n shell: /bin/bash\n groups: sudo\n password: \"{{passwd | password_hash('<PASSWORD>', '<PASSWORD>') }}\"\n create_home: yes\n notify: Update SSH passkey...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 426, "all_permissive": false }
ansible_role
MehdiBenIT/Ansible_Projects
8c0c6d202a9fd8ba5292fdfe779f5d25d6396db4
0
roles/wp
7,756
[ "no_license" ]
[ { "path": "roles/wp/vars/main.yml", "content": "---\n\ndir_wordpress: \"/var/www/wordpress\"\n\nconf: \"wordpress.conf\"\n\nmysql_user: \"wordpress_user\"\ndb_name: \"wordpress\"\ndb_type: \"mysql\"\n\nip: \"{{ ansible_facts['default_ipv4']['address'] }}\"\n", "license_type": "no_license", "detected...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2853, "all_permissive": false }
ansible_role
dodbrian/ansible-course
0682ce5112d85a02839eef79e20f91e107e86a77
0
ansible-fundamentals-redhat/roles/users
7,756
[ "no_license" ]
[ { "path": "ansible-fundamentals-redhat/roles/users/vars/main.yml", "content": "---\n# vars file for users\n\nweb_users:\n - member\n - admin\n - developer\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "ansible-fundamentals-redhat/roles/users/...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 500, "all_permissive": false }
ansible_role
nycmeshnet/nycmesh-dns
6b10966dae0197b65cb27897f767c5cbda58a1d2
20
infra/ansible/roles/dns_ospf
7,776
[ "no_license" ]
[ { "path": "infra/ansible/roles/dns_ospf/templates/netplan_50_cloud_init.yaml.j2", "content": "network:\n version: 2\n ethernets:\n eth0:\n dhcp4: false\n dhcp6: false\n addresses:\n - {{ INTERNAL_MGT_IP }}/{{ INTERNAL_NETWORK_HOST_IDENTIFIER }}\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 5063, "all_permissive": false }
ansible_role
nycmeshnet/nycmesh-dns
6b10966dae0197b65cb27897f767c5cbda58a1d2
20
infra/ansible/roles/dns_ssh
7,776
[ "no_license" ]
[ { "path": "infra/ansible/roles/dns_ssh/tasks/main.yaml", "content": "- name: Disable password auth\n ansible.builtin.lineinfile:\n dest: /etc/ssh/sshd_config\n regexp: '^#?\\s*PasswordAuthentication\\s'\n line: 'PasswordAuthentication no'\n state: present\n\n- name: Restart and enable sshd serv...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 314, "all_permissive": false }
ansible_role
nycmeshnet/nycmesh-dns
6b10966dae0197b65cb27897f767c5cbda58a1d2
20
infra/ansible/roles/dns_telegraf
7,776
[ "no_license" ]
[ { "path": "infra/ansible/roles/dns_telegraf/tasks/main.yaml", "content": "- name: Install deps\n ansible.builtin.apt:\n lock_timeout: 120\n update_cache: true\n pkg:\n - gpg\n\n- name: Download influx gpg key\n ansible.builtin.get_url:\n url: https://repos.influxdata.com/influxdata-archiv...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 12314, "all_permissive": false }
ansible_role
nycmeshnet/nycmesh-dns
6b10966dae0197b65cb27897f767c5cbda58a1d2
20
infra/ansible/roles/knot_authoritative
7,776
[ "no_license" ]
[ { "path": "infra/ansible/roles/knot_authoritative/templates/knot.conf.j2", "content": "\nserver:\n{% if INTERNAL_LISTEN_IP != \"\" %} listen: {{ INTERNAL_LISTEN_IP }}@53\n{% endif %}\n{% if EXTERNAL_LISTEN_IP != \"\" %} listen: {{ EXTERNAL_LISTEN_IP }}@53\n{% endif %}\n\nlog:\n - target: syslog\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 7515, "all_permissive": false }
ansible_role
nycmeshnet/nycmesh-dns
6b10966dae0197b65cb27897f767c5cbda58a1d2
20
infra/ansible/roles/knot_recursive
7,776
[ "no_license" ]
[ { "path": "infra/ansible/roles/knot_recursive/templates/certbot.sh.j2", "content": "\nDOMAIN=\"doh.mesh.nycmesh.net\"\n\n/root/certbot_venv/bin/certbot certonly \\\n --dns-rfc2136 \\\n --dns-rfc2136-credentials /root/tsig.ini \\\n --non-interactive \\\n --agree-tos \\\n -m <EMAIL> \\\n -d $DOMAIN\n\nf...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 11006, "all_permissive": false }
ansible_role
nycmeshnet/nycmesh-dns
6b10966dae0197b65cb27897f767c5cbda58a1d2
20
infra/ansible/roles/support_account
7,776
[ "no_license" ]
[ { "path": "infra/ansible/roles/support_account/tasks/main.yaml", "content": "- name: Add the user 'support'\n ansible.builtin.user:\n name: support\n uid: 1001\n password: \"{{ <PASSWORD> | password_hash('<PASSWORD>') }}\"\n groups: sudo\n", "license_type": "no_license", "detected_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 167, "all_permissive": false }
ansible_role
aholmback/seval
c0d9aa4a862f8419dda11f851f4edcb0d4f88b3e
0
roles/django
7,776
[ "no_license" ]
[ { "path": "roles/django/tasks/main.yml", "content": "---\n- name: Collect static files\n become: yes\n become_user: \"{{ owner }}\"\n django_manage:\n command: collectstatic\n app_path: \"{{ path }}\"\n virtualenv: \"{{ path }}env\"\n", "license_type": "no_license", "detected_licenses": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 179, "all_permissive": false }
ansible_role
aholmback/seval
c0d9aa4a862f8419dda11f851f4edcb0d4f88b3e
0
roles/docker
7,776
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: remove old versions\n package:\n name: \"{{ item }}\"\n state: absent\n with_items:\n - docker\n - docker-engine\n\n- name: ansible depends on pip package docker-py for this one\n pip:\n name: docker-py\n state: latest\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 986, "all_permissive": false }
ansible_role
aholmback/seval
c0d9aa4a862f8419dda11f851f4edcb0d4f88b3e
0
roles/gitarchive
7,776
[ "no_license" ]
[ { "path": "roles/gitarchive/tasks/commence.yml", "content": "---\n- name: check if archive exists\n stat:\n path: \"{{ store }}{{ hash }}.tar.gz\"\n register: archive_exists\n\n- name: create archive\n command: git archive -o {{ store }}{{ hash }}.tar.gz HEAD\n args:\n chdir: \"{{ repo }}\"\n c...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1511, "all_permissive": false }
ansible_role
aholmback/seval
c0d9aa4a862f8419dda11f851f4edcb0d4f88b3e
0
roles/mongo
7,776
[ "no_license" ]
[ { "path": "roles/mongo/tasks/main.yml", "content": "---\n- name: start docker container for mongo\n docker_container:\n name: \"{{ name }}\"\n state: started\n image: mongo\n ports:\n - \"27017:27017\"\n volumes:\n \"{{ volume_root }}{{ name }}:/var/lib/postgresql/data\"\n", "l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 231, "all_permissive": false }
ansible_role
aholmback/seval
c0d9aa4a862f8419dda11f851f4edcb0d4f88b3e
0
roles/node
7,776
[ "no_license" ]
[ { "path": "roles/node/tasks/main.yml", "content": "---\n- name: install apt dependencies\n apt: name=apt-transport-https state=present\n\n- name: add apt key\n apt_key:\n url: https://keyserver.ubuntu.com/pks/lookup?op=get&fingerprint=on&search=0x1655A0AB68576280\n id: \"68576280\"\n state: prese...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 744, "all_permissive": false }
ansible_role
aholmback/seval
c0d9aa4a862f8419dda11f851f4edcb0d4f88b3e
0
roles/postgres
7,776
[ "no_license" ]
[ { "path": "roles/postgres/tasks/main.yml", "content": "---\n- name: start docker container for postgres\n docker_container:\n name: \"{{ name }}\"\n state: started\n image: postgres\n ports:\n - \"5432:5432\"\n volumes:\n \"{{ volume_root }}{{ name }}:/var/lib/postgresql/data\"\n",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 235, "all_permissive": false }
ansible_role
aholmback/seval
c0d9aa4a862f8419dda11f851f4edcb0d4f88b3e
0
roles/python
7,776
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "---\n- name: install python and pip\n apt:\n name: \"{{ item }}\"\n state: latest\n with_items:\n - \"{{ executable }}\"\n - \"{{ executable }}-dev\"\n - python-pip\n\n- name: install virtualenv\n pip:\n name: virtualenv\n state: l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 383, "all_permissive": false }
ansible_role
aholmback/seval
c0d9aa4a862f8419dda11f851f4edcb0d4f88b3e
0
roles/redis
7,776
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yml", "content": "---\n- name: start docker container for redis\n docker_container:\n name: \"{{ name }}\"\n state: started\n image: redis\n ports:\n - \"6379:6379\"\n volumes:\n \"{{ volume_root }}{{ name }}:/data\"\n", "license_type": "no_lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 210, "all_permissive": false }
ansible_role
aholmback/seval
c0d9aa4a862f8419dda11f851f4edcb0d4f88b3e
0
roles/unfold
7,776
[ "no_license" ]
[ { "path": "roles/unfold/tasks/main.yml", "content": "---\n- name: link vendor for stash\n include_role:\n name: vendor\n vars:\n path: \"{{ root }}{{ key.vendor.path }}{{ key.stash.path }}\"\n mount: \"{{ root }}{{ key.stash.path }}\"\n executable: \"{{ key.stash.vendor }}\"\n \n- name: link ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1519, "all_permissive": false }
ansible_role
barnke8/ansibleclasswithzach
7281ab3b10020cf20a1497b686cacbb1dce7e7be
1
roles/kelly.findafile
7,776
[ "no_license" ]
[ { "path": "roles/kelly.findafile/vars/main.yml", "content": "---\npatt: \"*.pcap,*pcapng\"\npathy: \"~/\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "roles/kelly.findafile/tests/test.yml", "content": "---\n- hosts: localhost\n remote_use...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 782, "all_permissive": false }
ansible_role
Faruq2991/Ansible-Mini-Projects
cd108ef6dd07f19a7e3c88d76fb0fa0cee0dbdf1
0
Service_management/roles/dbserver
7,776
[ "no_license" ]
[ { "path": "Service_management/roles/dbserver/tasks/main.yml", "content": "- name: install mariadb\n tags: mariadb, centos\n yum:\n name: mariadb\n state: latest\n when: ansible_distribution == \"CentOS\"\n\n- name: install mariadb\n tags: mariadb, centos\n apt:\n name: mariadb\n state: late...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 265, "all_permissive": false }
ansible_role
Faruq2991/Ansible-Mini-Projects
cd108ef6dd07f19a7e3c88d76fb0fa0cee0dbdf1
0
Service_management/roles/webservers
7,776
[ "no_license" ]
[ { "path": "Service_management/roles/webservers/tasks/main.yml", "content": "- name: install httpd package (CentOS)\n tags: apache,centos,httpd\n yum:\n name: \n - httpd\n - php\n state: latest\n when: ansible_distribution == \"CentOS\"\n\n- name: start and enable httpd (CentOS)\n tags: a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3186, "all_permissive": false }
ansible_role
Faruq2991/Ansible-Mini-Projects
cd108ef6dd07f19a7e3c88d76fb0fa0cee0dbdf1
0
Service_management/roles/workstation
7,776
[ "no_license" ]
[ { "path": "Service_management/roles/workstation/tasks/main.yml", "content": "- name: install unzip\n package:\n name: unzip\n\n- name: install terraform\n unarchive:\n src: https://releases.hashicorp.com/terraform/1.9.0/terraform_1.9.0_linux_amd64.zip\n dest: /usr/local/bin\n remote_src: yes\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 269, "all_permissive": false }
ansible_role
balatuluva/robotshop-jenkins
b05d70b424988b17d3c5727f7d4b70884bd45488
0
roles/jenkins
7,776
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/mjob.yml", "content": "- name: Check if Jenkins Job exists or not\n community.general.jenkins_job_info:\n name: \"{{item.job_name}}\"\n user: admin\n password: <PASSWORD>\n url: http://172.31.43.142:8080\n register: jenkins_job_status\n ignore_errors: true\n\n#-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1705, "all_permissive": false }
ansible_role
sonodar/ansible-tomcat8
b9d673b409fd745f5b0bb770e298bbf23fb27575
3
roles/oracle-jdk8
7,776
[ "no_license" ]
[ { "path": "roles/oracle-jdk8/templates/profile.d/java.sh", "content": "#!/bin/bash\nexport JAVA_HOME=/opt/{{jdk_extract_dir}}\nexport JRE_HOME=$JAVA_HOME/jre\nexport PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 133 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1027, "all_permissive": false }
ansible_role
sonodar/ansible-tomcat8
b9d673b409fd745f5b0bb770e298bbf23fb27575
3
roles/tomcat8
7,776
[ "no_license" ]
[ { "path": "roles/tomcat8/templates/firewalld/tomcat.xml", "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<service>\n <short>tomcat</short>\n <description>tomcat port</description>\n <port protocol=\"tcp\" port=\"{{http_port}}\" />\n <port protocol=\"tcp\" port=\"{{jmx_registry_port}}\" />\n <p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 13579, "all_permissive": false }
ansible_role
galaxy-bg/ansible-rhce
07c0cc40ead241f1e7bad75799e978b1e89f2843
0
roles/sample-apache
7,776
[ "no_license" ]
[ { "path": "roles/sample-apache/tasks/main.yml", "content": "---\n# tasks file for sample-apache\n- name: Install required packages\n yum:\n name: \"{{ item }}\"\n state: present\n loop: \"{{ my_role_packages }}\"\n\n- name: Start and Enable {{ my_role_services }}\n service:\n name: \"{{ item }}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 929, "all_permissive": false }
ansible_role
cppedrosa/SDB
2c3c9b59773216a3e9cc25f7f48312e0efc9177a
0
Fase2/Ghost/roles/createInstances
7,776
[ "no_license" ]
[ { "path": "Fase2/Ghost/roles/createInstances/tasks/main.yml", "content": "# Cria Um Disco Com Boot Para Ubuntu 16.04 LTS\n- name: create a disk\n gcp_compute_disk:\n name: \"{{ item }}\"\n size_gb: 10\n source_image: projects/ubuntu-os-cloud/global/images/family/ubuntu-1604-lts\n zone: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 6069, "all_permissive": false }
ansible_role
cppedrosa/SDB
2c3c9b59773216a3e9cc25f7f48312e0efc9177a
0
Fase2/Ghost/roles/ghostCores
7,776
[ "no_license" ]
[ { "path": "Fase2/Ghost/roles/ghostCores/tasks/main.yml", "content": "- name: Add Nodejs 8 Repository\n shell: curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -\n become: yes\n\n- name: Install Nodejs 8\n command: apt-get install -y nodejs warn=False\n become: yes\n \n\n- name: Install Ghos...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1605, "all_permissive": false }
ansible_role
cppedrosa/SDB
2c3c9b59773216a3e9cc25f7f48312e0efc9177a
0
Fase2/Ghost/roles/ghostLoadBalancers
7,776
[ "no_license" ]
[ { "path": "Fase2/Ghost/roles/ghostLoadBalancers/tasks/main.yml", "content": "- name: Install HAProxy\n apt:\n name: haproxy\n tags:\n - wslb\n\n# Copiar os Ficheiros De Configuração Para as Respectivas Diretorias\n- name: Copy HAProxy Configuration File\n template:\n src: \"~/Desktop/UMinho/4º\\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 955, "all_permissive": false }
ansible_role
cppedrosa/SDB
2c3c9b59773216a3e9cc25f7f48312e0efc9177a
0
Fase2/Ghost/roles/masterDB
7,776
[ "no_license" ]
[ { "path": "Fase2/Ghost/roles/masterDB/tasks/main.yml", "content": "- name: Install MySQL\n apt:\n name: ['python-mysqldb', 'mysql-server']\n\n# Copiar os Ficheiros De Configuração Para as Respectivas Diretorias\n- name: Copy MySQL Conf File\n template:\n src: \"~/Desktop/UMinho/4º\\ Ano/1º\\ Semestr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1483, "all_permissive": false }
ansible_role
cppedrosa/SDB
2c3c9b59773216a3e9cc25f7f48312e0efc9177a
0
Fase2/Ghost/roles/monitorMaster
7,776
[ "no_license" ]
[ { "path": "Fase2/Ghost/roles/monitorMaster/tasks/main.yml", "content": "- name: Update apt packages\n apt:\n update_cache: yes\n\n- name: Install Docker\n apt:\n name: docker.io\n\n- name: Update Max Memory\n shell: sysctl -w vm.max_map_count=262144\n\n- name: Create Docker Network\n shell: docker...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 593, "all_permissive": false }
ansible_role
cppedrosa/SDB
2c3c9b59773216a3e9cc25f7f48312e0efc9177a
0
Fase2/Ghost/roles/monitorSlaves
7,776
[ "no_license" ]
[ { "path": "Fase2/Ghost/roles/monitorSlaves/tasks/main.yml", "content": "- name: Update apt packages\n apt:\n update_cache: yes\n become: yes\n\n\n- name: Download MetricBeat\n get_url:\n url: https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-6.5.4-linux-x86_64.tar.gz\n dest: ~/m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1036, "all_permissive": false }
ansible_role
cppedrosa/SDB
2c3c9b59773216a3e9cc25f7f48312e0efc9177a
0
Fase2/Ghost/roles/slaveDB
7,776
[ "no_license" ]
[ { "path": "Fase2/Ghost/roles/slaveDB/tasks/main.yml", "content": "- name: Install MySQL\n apt:\n name: ['python-mysqldb', 'mysql-server']\n\n # Copiar os Ficheiros De Configuração Para as Respectivas Diretorias\n- name: Copy MySQL Conf File\n template:\n src: \"~/Desktop/UMinho/4º\\ Ano/1º\\ Semest...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1488, "all_permissive": false }
ansible_role
cppedrosa/SDB
2c3c9b59773216a3e9cc25f7f48312e0efc9177a
0
Fase2/Ghost/roles/webLoadBalancers
7,776
[ "no_license" ]
[ { "path": "Fase2/Ghost/roles/webLoadBalancers/tasks/main.yml", "content": "- name: Install HAProxy\n apt:\n name: haproxy\n\n# Copiar os Ficheiros De Configuração Para as Respectivas Diretorias\n- name: Copy HAProxy Configuration File\n template:\n src: \"~/Desktop/UMinho/4º\\ Ano/1º\\ Semestre/Comp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 915, "all_permissive": false }
ansible_role
cppedrosa/SDB
2c3c9b59773216a3e9cc25f7f48312e0efc9177a
0
Fase2/Ghost/roles/webServers
7,776
[ "no_license" ]
[ { "path": "Fase2/Ghost/roles/webServers/tasks/main.yml", "content": "- name: Install nginx\n apt:\n name: nginx\n tags:\n - ws\n\n# Copiar os Ficheiros De Configuração Para as Respectivas Diretorias\n- name: Copy NGINX Configuration File\n template:\n src: \"~/Desktop/UMinho/4º\\ Ano/1º\\ Semest...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1265, "all_permissive": false }
ansible_role
garogum/ipfabric_lab
e76601919b8338596cf48a6b9dc787f88b35337f
0
roles/baseconfig
7,776
[ "no_license" ]
[ { "path": "roles/baseconfig/templates/eos/baseconfig.j2", "content": "hostname {{ hostname }}\nip routing\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/baseconfig/tasks/main.yml", "content": "- name: Generate base config\n template:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 751, "all_permissive": false }
ansible_role
garogum/ipfabric_lab
e76601919b8338596cf48a6b9dc787f88b35337f
0
roles/ipinfra
7,776
[ "no_license" ]
[ { "path": "roles/ipinfra/templates/eos/ipinfra.j2", "content": "ipv6 unicast-routing\n\n{% for interface in loopback %}\ndefault interface {{ interface.name }}\ninterface {{ interface.name }}\n ip address {{ interface.ip_address }}\n description \"{{ interface.description }}\"\n{% endfor %}\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3499, "all_permissive": false }
ansible_role
macrespi/madm-ansible
4af01f5ab193202f3cf75006aa09a33f01e91d23
0
haserver/roles/haserver
7,776
[ "no_license" ]
[ { "path": "haserver/roles/haserver/vars/main.yml", "content": "---\n# vars file for haserver\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 29 }, { "path": "haserver/roles/haserver/templates/haproxy.cfg", "content": "# this config needs haproxy-1.1.28 or hap...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2020, "all_permissive": false }
ansible_role
macrespi/madm-ansible
4af01f5ab193202f3cf75006aa09a33f01e91d23
0
haserver/roles/mysql
7,776
[ "no_license" ]
[ { "path": "haserver/roles/mysql/defaults/main.yml", "content": "mysql_root_pass: <PASSWORD>\nwp_mysql_db: wordpress\nwp_mysql_user: wordpress\nwp_mysql_password: <PASSWORD>\nwp_mysql_host: '192.168.1.44'\nwp_mysql_bind_address: '0.0.0.0'\nwp_mysql_bind_port: '3306'\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1328, "all_permissive": false }
ansible_role
macrespi/madm-ansible
4af01f5ab193202f3cf75006aa09a33f01e91d23
0
haserver/roles/server
7,776
[ "no_license" ]
[ { "path": "haserver/roles/server/defaults/main.yml", "content": "mysql_root_pass: <PASSWORD>\nwp_mysql_db: wordpress\nwp_mysql_user: wordpress\nwp_mysql_password: <PASSWORD>\nwp_mysql_host: 192.168.1.45\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 135 }, { "...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 407, "all_permissive": false }
ansible_role
msmagnanijr/iac-playground
ed87dc5775f0ed27fecaca64d3cfb8235d4b7228
0
iac/iac-ansible/ansible/roles/apache
7,776
[ "no_license" ]
[ { "path": "iac/iac-ansible/ansible/roles/apache/tasks/main.yml", "content": "- name: Iniciando a instalação do Apache Web Server\n become: yes\n become_method: sudo\n dnf:\n name: httpd\n state: latest \n\n- name: Iniciando e Habilitando o Apache Web Server no Boot\n become: yes\n become_method...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1690, "all_permissive": false }
ansible_role
msmagnanijr/iac-playground
ed87dc5775f0ed27fecaca64d3cfb8235d4b7228
0
iac/iac-ansible/ansible/roles/dir
7,776
[ "no_license" ]
[ { "path": "iac/iac-ansible/ansible/roles/dir/tasks/main.yml", "content": "- name: Criando um diretorio chamado infnet\n become: yes\n become_method: sudo\n file:\n path: /src/www/infnet\n state: directory", "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
msmagnanijr/iac-playground
ed87dc5775f0ed27fecaca64d3cfb8235d4b7228
0
iac/iac-ansible/ansible/roles/mysql
7,776
[ "no_license" ]
[ { "path": "iac/iac-ansible/ansible/roles/mysql/tasks/main.yml", "content": "- name: Instalando o MySQL Server\n become: yes\n become_method: sudo\n dnf:\n name: mysql-server\n state: present\n\n- name: Iniciando e Habilitando o MySQL Server no Boot\n become: yes\n become_method: sudo\n systemd:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 284, "all_permissive": false }
ansible_role
msmagnanijr/iac-playground
ed87dc5775f0ed27fecaca64d3cfb8235d4b7228
0
iac/iac-docker/ansible/roles/deploy
7,776
[ "no_license" ]
[ { "path": "iac/iac-docker/ansible/roles/deploy/tasks/main.yml", "content": "---\n- name: \"check if this is really ubuntu\"\n fail:\n msg: \"This role is only supported for Ubuntu hosts\"\n when: ansible_distribution != 'Ubuntu'\n\n# force ansible to refresh user groups\n- name: reset ssh connection\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1776, "all_permissive": false }
ansible_role
msmagnanijr/iac-playground
ed87dc5775f0ed27fecaca64d3cfb8235d4b7228
0
iac/iac-docker/ansible/roles/docker
7,776
[ "no_license" ]
[ { "path": "iac/iac-docker/ansible/roles/docker/tasks/main.yml", "content": "---\n- name: \"check if this is really ubuntu\"\n fail:\n msg: \"This role is only supported for Ubuntu hosts\"\n when: ansible_distribution != 'Ubuntu'\n\n\n- name: add docker GPG apt key\n become: yes\n become_method: sudo\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 884, "all_permissive": false }
ansible_role
HarithJ/Yummy-Recipes-Packer
569c5b73b91727f8afce2cc2787f19cef29a00ad
0
CP3/roles/nginxServer
7,776
[ "no_license" ]
[ { "path": "CP3/roles/nginxServer/tasks/main.yml", "content": "- name: Copy the script that configures nginx server to home directory\n copy:\n src: nginx-cloud-init.sh\n dest: /home/ubuntu/\n\n- name: copy the systemd file that would run the nginx config script on boot\n copy:\n src: config-nginx...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 499, "all_permissive": false }
ansible_role
HarithJ/Yummy-Recipes-Packer
569c5b73b91727f8afce2cc2787f19cef29a00ad
0
CP3/roles/project
7,776
[ "no_license" ]
[ { "path": "CP3/roles/project/tasks/main.yml", "content": "- name: Create a directory where the app would live\n file: path=/home/ubuntu/Yummy-Recipes state=directory\n\n- name: Clone the Yummy-Recipes-Ch3 repository\n git:\n repo: 'https://github.com/HarithJ/Yummy-Recipes-Ch3'\n dest: /home/ubuntu/Y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 520, "all_permissive": false }
ansible_role
HarithJ/Yummy-Recipes-Packer
569c5b73b91727f8afce2cc2787f19cef29a00ad
0
CP3/roles/setup
7,776
[ "no_license" ]
[ { "path": "CP3/roles/setup/tasks/main.yml", "content": "---\n- name: Ensure ppa exists to install python3.6\n apt_repository: repo=ppa:deadsnakes/ppa\n\n- name: Ensure python3.6 is installed\n apt:\n name: python3.6\n force: yes\n state: present\n update_cache: yes\n\n- name: Ensure build-esse...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 718, "all_permissive": false }
ansible_role
HarithJ/Yummy-Recipes-Packer
569c5b73b91727f8afce2cc2787f19cef29a00ad
0
CP3/roles/uwsgiServer
7,776
[ "no_license" ]
[ { "path": "CP3/roles/uwsgiServer/tasks/main.yml", "content": "- name: Install uwsgi server into venv\n pip:\n name: uwsgi\n virtualenv: /home/ubuntu/Yummy-Recipes/venv\n virtualenv_python: python3.6\n\n- name: Copy uwsgi settings file so that we can use it to run Yummy-Recipes\n copy:\n src: u...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 548, "all_permissive": false }
ansible_role
DanNixon/ansible-services
4042b6f2566cb3f8770275b306a1a11eb99c5ebb
0
roles/borg
7,776
[ "permissive" ]
[ { "path": "roles/borg/tasks/install_Archlinux.yml", "content": "---\n- name: Ensure tools are installed\n become: true\n ansible.builtin.package:\n name:\n - borg\n - borgmatic\n state: present\n", "license_type": "permissive", "detected_licenses": [ "MIT" ], "size_by...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 3298, "all_permissive": true }
ansible_role
DanNixon/ansible-services
4042b6f2566cb3f8770275b306a1a11eb99c5ebb
0
roles/git_collage
7,776
[ "permissive" ]
[ { "path": "roles/git_collage/molecule/default/converge.yml", "content": "---\n- name: Converge\n hosts: all\n\n vars:\n git_collage_config: |\n [providers.source]\n type = 'static_list'\n\n [[providers.source.repos]]\n git_url = 'https://github.com/dannixon/dotfiles'\n path = '...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 3604, "all_permissive": true }
ansible_role
DanNixon/ansible-services
4042b6f2566cb3f8770275b306a1a11eb99c5ebb
0
roles/git_server
7,776
[ "permissive" ]
[ { "path": "roles/git_server/readme.md", "content": "# `dannixon.services.git_server`\n\nConfigures a basic Git server with SSH access following the principle described [here](https://git-scm.com/book/en/v2/Git-on-the-Server-Setting-Up-the-Server).\n\n## Role Variables\n\n`git_server_path` defines the path t...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2183, "all_permissive": true }
ansible_role
DanNixon/ansible-services
4042b6f2566cb3f8770275b306a1a11eb99c5ebb
0
roles/grafana_agent
7,776
[ "permissive" ]
[ { "path": "roles/grafana_agent/handlers/main.yml", "content": "---\n- name: Restart Grafana Agent\n become: true\n ansible.builtin.service:\n name: grafana-agent\n state: restarted\n when: molecule_yml is not defined\n", "license_type": "permissive", "detected_licenses": [ "MIT" ]...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 2024, "all_permissive": true }
ansible_role
DanNixon/ansible-services
4042b6f2566cb3f8770275b306a1a11eb99c5ebb
0
roles/sshd
7,776
[ "permissive" ]
[ { "path": "roles/sshd/tasks/install_Ubuntu.yml", "content": "---\n- name: Ensure SSH server is installed\n become: true\n ansible.builtin.package:\n name: openssh-server\n state: present\n", "license_type": "permissive", "detected_licenses": [ "MIT" ], "size_bytes": 129 }, ...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 1475, "all_permissive": true }
ansible_role
amitvashisttech/devops301-mindtree-15-June-2021
2468d144c0878608302beb493a06bc7e27e0574e
0
05-Ansible/07-Roles/roles/webserver
7,776
[ "no_license" ]
[ { "path": "05-Ansible/07-Roles/roles/webserver/tasks/main.yml", "content": "---\n# tasks file for webserver\n- name: Install Apache2 Packages \n apt: name=apache2 state=present\n\n- name: Start Apache2 Service\n service: name=apache2 state=started\n\n- name: Deploy Custom Web Page\n copy: src=files/index...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 353, "all_permissive": false }
ansible_role
amitvashisttech/devops301-mindtree-15-June-2021
2468d144c0878608302beb493a06bc7e27e0574e
0
06-Terraform/03-LocalExec/ansible-code/roles/webserver
7,776
[ "no_license" ]
[ { "path": "06-Terraform/03-LocalExec/ansible-code/roles/webserver/tasks/main.yml", "content": "---\n# tasks file for webserver\n- name: Install Apache2 Packages \n apt: name=apache2 state=present\n\n- name: Start Apache2 Service\n service: name=apache2 state=started\n \n- name: Deploy Cutsom Web Page\n c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 250, "all_permissive": false }
ansible_role
isabelle-prover/admin
a08956957181bd6ab77d557e9c2ae2bb2bcfe178
4
ansible/roles/afp
7,776
[ "no_license" ]
[ { "path": "ansible/roles/afp/tasks/security.yml", "content": "---\n\n- name: Disable root password\n shell: passwd -l root\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 59 }, { "path": "ansible/roles/afp/tasks/install.yml", "content": "---\n\n- name: Insta...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 2367, "all_permissive": false }
ansible_role
isabelle-prover/admin
a08956957181bd6ab77d557e9c2ae2bb2bcfe178
4
ansible/roles/afp-submit
7,776
[ "no_license" ]
[ { "path": "ansible/roles/afp-submit/tasks/lxc.yml", "content": "---\n\n- name: Prepare LXC configuration directory\n file: path={{ config.afp.container_home }}/.config/lxc state=directory owner=root group=root mode=0755\n\n- name: Copy LXC configuration\n template: src=default.conf dest={{ config.afp.cont...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 11463, "all_permissive": false }
ansible_role
isabelle-prover/admin
a08956957181bd6ab77d557e9c2ae2bb2bcfe178
4
ansible/roles/build-manager
7,776
[ "no_license" ]
[ { "path": "ansible/roles/build-manager/tasks/install.yml", "content": "---\n\n- name: Ensure ansible group exists\n group: name=ansible state=present\n\n- name: Download caddy key\n get_url:\n url: https://dl.cloudsmith.io/public/caddy/stable/gpg.key\n dest: /etc/apt/trusted.gpg.d/caddy.asc\n\n- nam...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 9738, "all_permissive": false }
ansible_role
isabelle-prover/admin
a08956957181bd6ab77d557e9c2ae2bb2bcfe178
4
ansible/roles/cluster-node
7,776
[ "no_license" ]
[ { "path": "ansible/roles/cluster-node/tasks/install.yml", "content": "---\n\n- name: Install packages\n apt:\n state: present\n update_cache: yes\n name:\n - openjdk-17-jre\n - mercurial\n - curl\n - m4\n - libgomp1\n - libgmp-dev\n - unzip\n - swi-prolog\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1809, "all_permissive": false }
ansible_role
isabelle-prover/admin
a08956957181bd6ab77d557e9c2ae2bb2bcfe178
4
ansible/roles/debug
7,776
[ "no_license" ]
[ { "path": "ansible/roles/debug/tasks/main.yml", "content": "---\n\n- name: Print site-specific configuration\n debug: var=config\n\n- name: Print inventory groups\n debug: var=groups\n\n- name: Print worker configuration\n debug: msg=\"{{ hostvars[item]['worker_name'] }}\"\n with_items: \"{{ groups['wor...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 325, "all_permissive": false }
ansible_role
isabelle-prover/admin
a08956957181bd6ab77d557e9c2ae2bb2bcfe178
4
ansible/roles/update
7,776
[ "no_license" ]
[ { "path": "ansible/roles/update/tasks/main.yml", "content": "---\n\n- name: Apt update\n apt:\n name: \"*\"\n state: latest\n update_cache: yes\n\n- name: Reboot\n reboot:", "license_type": "no_license", "detected_licenses": [], "size_bytes": 110 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 110, "all_permissive": false }
ansible_role
luccacabra/iac-demo
e6c2a8bfc3e2e19451e1c813c90bc85125ee4002
0
roles/mysql
7,836
[ "permissive" ]
[ { "path": "roles/mysql/files/schema.sql", "content": "# noinspection SqlNoDataSourceInspectionForFile\n\nUSE `iacdb`;\n\nDROP TABLE IF EXISTS `tbl_iacdb`;\n\nCREATE TABLE `tbl_iacdb` (\n `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n `host` varchar(128) NOT NULL COMMENT 'Host index',\n `visited` int(10...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2337, "all_permissive": true }
ansible_role
luccacabra/iac-demo
e6c2a8bfc3e2e19451e1c813c90bc85125ee4002
0
roles/web
7,836
[ "permissive" ]
[ { "path": "roles/web/tasks/main.yml", "content": "- name: install epel repo\n yum: name=epel-release state=present update_cache=yes\n\n- name: install nodejs\n yum: name=nodejs state=present\n\n- name: install npm\n yum: name=npm state=present\n\n- name: Create target directory\n file: path=/var/lib/loc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1002, "all_permissive": true }
ansible_role
rarinaferrari/di-sys-infrastructure
95719255dc4e178d12995839b6eed599a25c39de
0
ansible/roles/elastic
7,836
[ "no_license" ]
[ { "path": "ansible/roles/elastic/tasks/main.yml", "content": "########################################\n########### ELASTICSEARCH ##############\n########################################\n- name: add repository\n shell:\n \"echo \\\"deb [trusted=yes] https://mirror.yandex.ru/mirrors/elastic/7/ stable ma...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 931, "all_permissive": false }
ansible_role
rarinaferrari/di-sys-infrastructure
95719255dc4e178d12995839b6eed599a25c39de
0
ansible/roles/filebeat
7,836
[ "no_license" ]
[ { "path": "ansible/roles/filebeat/tasks/main.yml", "content": "\n###############################\n######### FILEBEAT ############\n###############################\n\n- name: add repository\n shell:\n \"echo \\\"deb [trusted=yes] https://mirror.yandex.ru/mirrors/elastic/7/ stable main\\\" | sudo tee /etc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1409, "all_permissive": false }
ansible_role
rarinaferrari/di-sys-infrastructure
95719255dc4e178d12995839b6eed599a25c39de
0
ansible/roles/grafana
7,836
[ "no_license" ]
[ { "path": "ansible/roles/grafana/tasks/main.yml", "content": "---\n#########################\n####### GRAFANA #########\n#########################\n- name: install gpg\n apt:\n name: adduser,libfontconfig1\n state: present\n update_cache: yes\n cache_valid_time: 3600\n\n- name: download and ins...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1381, "all_permissive": false }
ansible_role
rarinaferrari/di-sys-infrastructure
95719255dc4e178d12995839b6eed599a25c39de
0
ansible/roles/kibana
7,836
[ "no_license" ]
[ { "path": "ansible/roles/kibana/tasks/main.yml", "content": "#########################\n######## KIBANA #########\n#########################\n- name: add repository\n shell:\n \"echo \\\"deb [trusted=yes] https://mirror.yandex.ru/mirrors/elastic/7/ stable main\\\" | sudo tee /etc/apt/sources.list.d/elas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 997, "all_permissive": false }
ansible_role
nalabjp/mac
253cfd955faf6a4ce5ebeffa1496c0fa7878d113
0
ansible/roles/directories
7,836
[ "no_license" ]
[ { "path": "ansible/roles/directories/tasks/main.yml", "content": "- name: Create directories\n ansible.builtin.file:\n path: \"{{ item }}\"\n state: directory\n mode: '0755'\n recurse: yes\n loop:\n - ~/.vim\n - \"{{ xdg_config_home }}\"\n - \"{{ xdg_config_home }}/nvim\"\n - \"{{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 396, "all_permissive": false }
ansible_role
nalabjp/mac
253cfd955faf6a4ce5ebeffa1496c0fa7878d113
0
ansible/roles/dotfiles
7,836
[ "no_license" ]
[ { "path": "ansible/roles/dotfiles/tasks/main.yml", "content": "- name: Touch .hushlogin\n ansible.builtin.file:\n path: ~/.hushlogin\n state: touch\n\n- name: Check ~/src/nalabjp/dotfiles/.zshrc.local.{{ inventory_hostname }}.enc\n stat:\n path: ~/src/nalabjp/dotfiles/.zshrc.local.{{ inventory_ho...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 502, "all_permissive": false }
ansible_role
nalabjp/mac
253cfd955faf6a4ce5ebeffa1496c0fa7878d113
0
ansible/roles/neovim
7,836
[ "no_license" ]
[ { "path": "ansible/roles/neovim/tasks/main.yml", "content": "- name: Install python plugin for neovim\n shell: |\n pip3 install neovim\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 76 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 76, "all_permissive": false }
ansible_role
nalabjp/mac
253cfd955faf6a4ce5ebeffa1496c0fa7878d113
0
ansible/roles/zsh
7,836
[ "no_license" ]
[ { "path": "ansible/roles/zsh/tasks/main.yml", "content": "- name: Edit /etc/shells\n ansible.builtin.lineinfile:\n dest: /etc/shells\n line: \"/opt/homebrew/bin/zsh\"\n state: present\n become: yes\n become_user: root\n\n- name: Change user shell to brew zsh\n become: yes\n become_user: root\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 309, "all_permissive": false }
ansible_role
avsej/kafka-couchbase-demo
cd5f729805960bc1f393176cc1379f4ec4a05b13
1
env/roles/couchbase
7,836
[ "no_license" ]
[ { "path": "env/roles/couchbase/tasks/main.yml", "content": "- name: download couchbase-server-{{ flavour }}_centos6_x86_64_{{ version }}-rel.rpm\n get_url: url=http://{{ origin }}/couchbase-server-{{ flavour }}_centos6_x86_64_{{ version }}-rel.rpm\n dest=/home/vagrant/couchbase-server-{{ flavour ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 595, "all_permissive": false }
ansible_role
avsej/kafka-couchbase-demo
cd5f729805960bc1f393176cc1379f4ec4a05b13
1
env/roles/firewalld
7,836
[ "no_license" ]
[ { "path": "env/roles/firewalld/templates/kafka.xml.j2", "content": "<!-- -*- mode: nxml; -*- -->\n<service version=\"1.0\">\n <short>kafka</short>\n <port protocol=\"tcp\" port=\"9092\"/>\n</service>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { "pat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1421, "all_permissive": false }
ansible_role
Andy-Fraley/wordpress_centos7
78536252716db184a5767a1bf95da145e10926fb
1
roles/activate_event
7,836
[ "no_license" ]
[ { "path": "roles/activate_event/tasks/main.yml", "content": "---\n# NOTE: This module (mod_php7) is only active if prefork (vs worker or event) mpm model is configured\n# See /etc/httpd/conf.modules.d/10-php.conf for details\n- name: Enable mod_php7\n apache2_module:\n state: present\n name: php7.0\...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2856, "all_permissive": false }
ansible_role
Andy-Fraley/wordpress_centos7
78536252716db184a5767a1bf95da145e10926fb
1
roles/activate_prefork
7,836
[ "no_license" ]
[ { "path": "roles/activate_prefork/tasks/main.yml", "content": "---\n- name: Enable mod_php7\n apache2_module:\n state: present\n name: php7.0\n notify: restart httpd\n\n- name: Enable mpm prefork\n lineinfile:\n dest: /etc/httpd/conf.modules.d/00-mpm.conf\n regexp: '^#LoadModule mpm_prefork_m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 915, "all_permissive": false }