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
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/grafana
4,397
[ "no_license" ]
[ { "path": "roles/grafana/handlers/main.yaml", "content": "---\n- name: grafana daemon-reload\n ansible.builtin.systemd:\n name: \"{{ grafana_service_name }}\"\n daemon_reload: true\n state: restarted\n\n- name: restart grafana\n ansible.builtin.service:\n name: \"{{ grafana_service_name }}\"\n...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 7461, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/grub
4,397
[ "no_license" ]
[ { "path": "roles/grub/handlers/main.yaml", "content": "- name: grub-mkconfig\n command: \"grub-mkconfig -o {{ grub_cfg_path }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 72 }, { "path": "roles/grub/vars/Debian.yaml", "content": "---\ngrub_cfg_path: /b...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 447, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/influxdb
4,397
[ "no_license" ]
[ { "path": "roles/influxdb/defaults/main.yaml", "content": "---\ninfluxdb_package_name: influxdb\ninfluxdb_package_state: present\n\ninfluxdb_service_name: influxdb.service\ninfluxdb_service_state: started\ninfluxdb_service_enabled: yes\n\ninfluxdb_config:\n reporting-disabled: yes\n meta:\n dir: /var/l...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3237, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/karma
4,397
[ "no_license" ]
[ { "path": "roles/karma/tasks/pre.yaml", "content": "---\n- name: determine if installed\n stat:\n path: \"{{ karma_bin_path }}/karma\"\n register: st\n\n- name: set karma_installed\n set_fact:\n karma_installed: \"{{ st.stat.exists | bool }}\"\n\n- block:\n - name: determine latest version\n ur...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 5143, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/keepalived
4,397
[ "no_license" ]
[ { "path": "roles/keepalived/defaults/main.yaml", "content": "---\nkeepalived_package_name: keepalived\nkeepalived_package_state: present\n\nkeepalived_service_name: keepalived\nkeepalived_service_state: started\nkeepalived_service_enabled: true\n\nkeepalived_etc_path: /etc/keepalived\n\nkeepalived_config_pa...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3105, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/kthxbye
4,397
[ "no_license" ]
[ { "path": "roles/kthxbye/tasks/install.yaml", "content": "---\n- block:\n - name: download tar\n get_url:\n url: \"{{ kthxbye_release_url }}\"\n dest: \"{{ kthxbye_download_path }}\"\n checksum: \"{{ kthxbye_checksum }}\"\n register: dl\n until: dl is success\n retries: 5\n de...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 5574, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/lego
4,397
[ "no_license" ]
[ { "path": "roles/lego/templates/lego@.service.j2", "content": "# {{ ansible_managed }}\n\n[Unit]\nDescription=Let's Encrypt client and ACME library written in Go\nAfter=network-online.target\nWants=network-online.target\n\n[Service]\n{% if lego_environ is defined %}\n{% for k, v in lego_environ.items() %}\n...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 12438, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/logcli
4,397
[ "no_license" ]
[ { "path": "roles/logcli/defaults/main.yaml", "content": "---\nlogcli_go_arch_map:\n i386: '386'\n x86_64: 'amd64'\n\nlogcli_go_arch: \"{{ logcli_go_arch_map[ansible_architecture] | default('amd64') }}\"\n\nlogcli_version: 2.9.5\nlogcli_checksums:\n logcli-darwin-amd64.zip: sha256:b224dc8872167be0c5f07b1c...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 5457, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/loki
4,397
[ "no_license" ]
[ { "path": "roles/loki/tasks/pre.yaml", "content": "---\n- name: determine if installed\n stat:\n path: \"{{ loki_bin_path }}/loki\"\n register: st\n\n- name: set loki_installed\n set_fact:\n loki_installed: \"{{ st.stat.exists | bool }}\"\n\n- block:\n - name: determine latest version\n uri:\n ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 7302, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/mimir
4,397
[ "no_license" ]
[ { "path": "roles/mimir/tasks/Debian.yaml", "content": "---\n- name: trust grafana apt respository key\n ansible.builtin.copy:\n src: \"grafana.gpg\"\n dest: \"/etc/apt/keyrings/grafana.gpg\"\n owner: root\n group: root\n mode: 0644\n\n- name: configure grafana apt repository\n ansible.built...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 4991, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/minecraft
4,397
[ "no_license" ]
[ { "path": "roles/minecraft/files/minecraft-backup.sh", "content": "#!/bin/bash\n\nSERVICE=minecraft.service\nBACKUP_DIR=/opt/minecraft/backup\nVAR_DIR=/opt/minecraft/var\nSCRATCH=$(mktemp -p /var/tmp -d minecraft.XXXXXXXXXX)\nNICE=15\nTAR=minecraft-$(date +%Y-%m-%d).tar\nWAIT=30\nVERBOSE=${VERBOSE:-4}\n\nde...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 8667, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/mtail
4,397
[ "no_license" ]
[ { "path": "roles/mtail/defaults/main.yaml", "content": "---\nmtail_go_arch_map:\n i386: '386'\n x86_64: 'amd64'\n\nmtail_go_arch: \"{{ mtail_go_arch_map[ansible_architecture] | default('amd64') }}\"\n\nmtail_service_name: mtail.service\nmtail_service_state: started\nmtail_service_enabled: yes\n\nmtail_ver...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 6122, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/mysql
4,397
[ "no_license" ]
[ { "path": "roles/mysql/templates/my.cnf.j2", "content": "# {{ ansible_managed }}\n{% for section, cfg in mysql_config.iteritems() | sort %}\n\n[{{section}}]\n{% for k, v in cfg.iteritems() | sort %}\n{% if k is defined and v is not none %}\n{{ k }} = {{ v }}\n{% elif k and v is none %}\n{{ k }}\n{% endif %}...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 3098, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/network
4,397
[ "no_license" ]
[ { "path": "roles/network/tasks/netplan.yml", "content": "---\n- name: Remove default netplan configuration\n ansible.builtin.file:\n path: \"{{ network_netplan_default_config_path }}\"\n state: \"{{ network_netplan_default_config_state | default('absent') }}\"\n owner: root\n group: root\n m...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3504, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/nftables
4,397
[ "no_license" ]
[ { "path": "roles/nftables/tasks/configure.yaml", "content": "---\n- name: configure rules\n ansible.builtin.template:\n src: nftables.conf.j2\n dest: \"{{ nftables_config_path | default('/etc/nftables.conf') }}\"\n owner: root\n group: root\n mode: 0600\n notify:\n - restart nftables\n\n...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 4531, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/nginx
4,397
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: gather os specific variables\n ansible.builtin.include_vars: \"{{ lookup('first_found', params) }}\"\n vars:\n params:\n files:\n - \"{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml\"\n - \"{{ ansible...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 6762, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/node_exporter
4,397
[ "no_license" ]
[ { "path": "roles/node_exporter/tasks/pre.yaml", "content": "---\n- name: determine if installed\n stat:\n path: \"{{ node_exporter_bin_path }}/node_exporter\"\n register: st\n\n- name: set node_exporter_installed\n set_fact:\n node_exporter_installed: \"{{ st.stat.exists | bool }}\"\n\n- block:\n ...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 10289, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/nomad
4,397
[ "no_license" ]
[ { "path": "roles/nomad/tasks/main.yaml", "content": "---\n- name: gather os specific variables\n ansible.builtin.include_vars: \"{{ lookup('first_found', params) }}\"\n vars:\n params:\n files:\n - \"{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml\"\n - \"{{ ansibl...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 4778, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/nsd
4,397
[ "no_license" ]
[ { "path": "roles/nsd/defaults/main.yaml", "content": "---\nnsd_package_name: nsd\nnsd_package_state: present\n\nnsd_service_name: nsd\nnsd_service_state: started\nnsd_service_enabled: yes\n\nnsd_etc_path: /etc/nsd\nnsd_zone_path: \"{{ nsd_etc_path }}/zones\"\n\nnsd_server_config:\n verbosity: 2\n zonesdir...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2059, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/openssh
4,397
[ "no_license" ]
[ { "path": "roles/openssh/vars/Ubuntu.yaml", "content": "---\nopenssh_default_sshd_config:\n PasswordAuthentication: 'no'\n ChallengeResponseAuthentication: 'no'\n UsePAM: 'yes'\n X11Forwarding: 'yes'\n PrintMotd: 'no'\n AcceptEnv: LANG LC_*\n Subsystem: 'sftp /usr/lib/openssh/sftp-server'\n\n# vim:ft...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1637, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/openvpn
4,397
[ "no_license" ]
[ { "path": "roles/openvpn/defaults/main.yaml", "content": "---\nopenvpn_package_name: openvpn\nopenvpn_package_state: present\n\nopenvpn_service_name: openvpn\nopenvpn_service_state: started\nopenvpn_service_enabled: true\n\nopenvpn_etc_path: /etc/openvpn\n\nopenvpn_config: {}\nopenvpn_dh_params: {}\nopenvpn...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 4076, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/podman
4,397
[ "no_license" ]
[ { "path": "roles/podman/defaults/main.yaml", "content": "---\npodman_packages:\n - podman\n - podman-docker\n - podman-remote\n - containernetworking-plugins\npodman_package_state: present\n\npodman_service_name: podman.socket\npodman_service_state: started\npodman_service_enabled: true\n", "license...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 581, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/postfix
4,397
[ "no_license" ]
[ { "path": "roles/postfix/templates/sasl_passwd.j2", "content": "# {{ ansible_managed }}\n\n{% for k, v in postfix_sasl_passwd_map.items() | default({}) %}\n{{ k }} {{ v }}\n{% endfor %}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 118 }, { "path": "roles/postf...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 4214, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/process_exporter
4,397
[ "no_license" ]
[ { "path": "roles/process_exporter/templates/process-exporter.service.j2", "content": "{{ ansible_managed | comment }}\n\n[Unit]\nDescription=process-exporter\nWants=network-online.target\nAfter=network-online.target\nAfter=alertmanager.service\n \n[Service]\nType=simple\nUser={{ process_exporter_user }}\nGr...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 6500, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/prometheus
4,397
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yaml", "content": "---\n- name: gather os specific variables\n ansible.builtin.include_vars: \"{{ lookup('first_found', params) }}\"\n vars:\n params:\n files:\n - \"{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml\"\n - \"{{ a...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 11324, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/promtail
4,397
[ "no_license" ]
[ { "path": "roles/promtail/handlers/main.yaml", "content": "---\n- name: restart promtail\n systemd:\n name: promtail.service\n daemon_reload: true\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 }, { "path": "roles/promtail/templa...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 5997, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/pushgateway
4,397
[ "no_license" ]
[ { "path": "roles/pushgateway/handlers/main.yaml", "content": "---\n- name: restart pushgateway\n systemd:\n name: pushgateway.service\n daemon_reload: true\n state: restarted\n\n- name: reload pushgateway\n service:\n name: pushgateway.service\n state: reloaded\n", "license_type": "no_l...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 6378, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/rabbitmq
4,397
[ "no_license" ]
[ { "path": "roles/rabbitmq/tasks/RedHat.yaml", "content": "---\n- name: add erlang yum repo\n yum_repository:\n name: rabbitmq_erlang\n baseurl: https://packagecloud.io/rabbitmq/erlang/el/$releasever/$basearch\n repo_gpgcheck: yes \n gpgcheck: no\n enabled: yes \n gpgkey: https://packagecl...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 4400, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/rclone
4,397
[ "no_license" ]
[ { "path": "roles/rclone/vars/Debian.yaml", "content": "---\nrclone_arch: amd64\nrclone_version: 1.50.2\nrclone_package_url: \"https://downloads.rclone.org/v{{ rclone_version }}/rclone-v{{ rclone_version }}-linux-{{ rclone_arch }}.deb\"\n", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1864, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/restic
4,397
[ "no_license" ]
[ { "path": "roles/restic/files/restic-repo.sh", "content": "#!/bin/bash\n\n# Ansible managed\n\nerror_exit() {\n printf \"%s\\n\" \"$1\"\n exit 1\n}\n\nRESTIC_ETC_PATH=${RESTIC_ETC_PATH:-/etc/restic}\n\n# shellcheck source=/dev/null\nsource \"${RESTIC_ETC_PATH}/env.sh\"\n\nif [ $# -lt 2 ]; then\n er...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 15, "total_bytes": 21024, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/rsyslog
4,397
[ "no_license" ]
[ { "path": "roles/rsyslog/templates/rules.conf.j2", "content": "# {{ ansible_managed }}\n\n{% for rule in rsyslog_rules %}\n{{ rule }}\n{% endfor %}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 }, { "path": "roles/rsyslog/tasks/archival.yaml", "content":...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 9158, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/smokeping_prober
4,397
[ "no_license" ]
[ { "path": "roles/smokeping_prober/defaults/main.yaml", "content": "---\nsmokeping_prober_go_arch_map:\n i386: '386'\n x86_64: 'amd64'\n\nsmokeping_prober_go_arch: \"{{ smokeping_prober_go_arch_map[ansible_architecture] | default('amd64') }}\"\n\nsmokeping_prober_version: 0.7.3\nsmokeping_prober_checksums:...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 10754, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/snmp_exporter
4,397
[ "no_license" ]
[ { "path": "roles/snmp_exporter/defaults/main.yaml", "content": "---\nsnmp_exporter_go_arch_map:\n i386: '386'\n x86_64: 'amd64'\n\nsnmp_exporter_go_arch: \"{{ snmp_exporter_go_arch_map[ansible_architecture] | default('amd64') }}\"\n\nsnmp_exporter_version: 0.25.0\nsnmp_exporter_checksums:\n snmp_exporter...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 11210, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/spiped
4,397
[ "no_license" ]
[ { "path": "roles/spiped/handlers/main.yaml", "content": "---\n- name: spiped daemon-reload\n systemd:\n daemon_reload: yes\n\n- name: restart spiped tunnels\n service:\n name: \"spiped-{{ item.name }}\"\n state: restarted\n loop: \"{{ spiped_tunnels | default([]) }}\"\n no_log: true\n", "li...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3460, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/supervisor
4,397
[ "no_license" ]
[ { "path": "roles/supervisor/tasks/main.yaml", "content": "---\n- name: gather os specific variables\n ansible.builtin.include_vars: \"{{ lookup('first_found', params) }}\"\n vars:\n params:\n files:\n - \"{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml\"\n - \"{{ a...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2892, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/swap
4,397
[ "no_license" ]
[ { "path": "roles/swap/tasks/main.yaml", "content": "---\n- name: manage swap\n command: swapoff -a\n when: not swap_enabled\n\n- name: manage swapfile\n file:\n path: \"{{ swap_file_path }}\"\n state: absent\n\n- name: manage fstab\n lineinfile:\n path: /etc/fstab\n regexp: swap\n state: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 296, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/tailscale
4,397
[ "no_license" ]
[ { "path": "roles/tailscale/tasks/install.yaml", "content": "---\n- name: install\n ansible.builtin.package:\n name: \"{{ tailscale_package_name | default('tailscale') }}\"\n state: \"{{ tailscale_package_state | default('present') }}\"\n", "license_type": "no_license", "detected_licenses": []...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1410, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/telegraf
4,397
[ "no_license" ]
[ { "path": "roles/telegraf/tasks/main.yaml", "content": "---\n#- name: gather OS specific variables\n# ansible.builtin.include_vars: \"{{ item }}\"\n# with_first_found:\n# - \"{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yaml\"\n# - \"{{ ansible_distribution }}.yaml\"\n# - \...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 6553, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/teleport
4,397
[ "no_license" ]
[ { "path": "roles/teleport/vars/Debian.yaml", "content": "---\nteleport_package_url: \"{{ teleport_baseurl }}/teleport_{{ teleport_version }}_{{ teleport_arch }}.deb\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 107 }, { "path": "roles/teleport/handlers/main.y...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2557, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/thanos
4,397
[ "no_license" ]
[ { "path": "roles/thanos/handlers/main.yaml", "content": "---\n- name: restart thanos sidecar\n systemd:\n name: \"{{ thanos_sidecar_service_name }}\"\n daemon_reload: true\n state: restarted\n listen: restart thanos\n\n- name: restart thanos query\n systemd:\n name: \"{{ thanos_query_service_...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 13161, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/ufw
4,397
[ "no_license" ]
[ { "path": "roles/ufw/tasks/configure.yaml", "content": "---\n- name: set ufw state\n community.general.ufw:\n state: \"{{ ufw_state | default('enabled') }}\"\n policy: \"{{ ufw_policy | default('allow') }}\"\n\n- name: configure rules\n community.general.ufw:\n port: \"{{ item.port | default(omit...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1252, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/unattended-upgrades
4,397
[ "no_license" ]
[ { "path": "roles/unattended-upgrades/tasks/main.yaml", "content": "---\n- name: install unattended-upgrades\n package:\n name: \"{{ unattended_upgrades_package_name }}\"\n state: \"{{ unattended_upgrades_package_state }}\"\n\n- name: install apticron\n package:\n name: \"{{ unattended_upgrades_ap...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 8586, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/users
4,397
[ "no_license" ]
[ { "path": "roles/users/defaults/main.yaml", "content": "---\nuser_default_shell: /bin/bash\nuser_default_groups:\n - users\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 65 }, { "path": "roles/users/tasks/main.yaml", "content": "---\n- name: create the user...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2181, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/util
4,397
[ "no_license" ]
[ { "path": "roles/util/tasks/Ubuntu.yaml", "content": "---\n- name: add vim ppa\n apt_repository:\n repo: ppa:jonathonf/vim\n state: \"{{ util_vim_ppa_state }}\"\n\n- name: add git ppa\n apt_repository:\n repo: ppa:git-core/ppa\n state: \"{{ util_git_ppa_state }}\"\n\n- name: add neovim ppa\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1285, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/vault
4,397
[ "no_license" ]
[ { "path": "roles/vault/defaults/main.yaml", "content": "---\nvault_package_name: vault\nvault_package_state: present\nvault_service_name: vault\nvault_service_state: started\nvault_service_enabled: true\nvault_etc_path: /etc/vault.d\nvault_config_path: \"{{ vault_etc_path }}/vault.hcl\"\nvault_config_templa...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 4078, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/vector
4,397
[ "no_license" ]
[ { "path": "roles/vector/tasks/Debian.yaml", "content": "---\n- name: configure apt repositories\n block:\n - name: add repository key\n ansible.builtin.get_url:\n url: https://repositories.timber.io/public/vector/gpg.3543DB2D0A2BC4B8.key\n dest: /etc/apt/keyrings/timber-vector-archive...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 4054, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/vm_guest
4,397
[ "no_license" ]
[ { "path": "roles/vm_guest/defaults/main.yaml", "content": "---\nvm_guest_qemu_agent_package_state: present\nvm_guest_qemu_agent_service_state: started\nvm_guest_qemu_agent_service_enabled: yes\n\nvm_guest_spice_agent_package_state: present\nvm_guest_spice_agent_service_state: started\nvm_guest_spice_agent_s...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1739, "all_permissive": false }
ansible_role
ryanc/ansible
b45f8cf5dd9d52de21f034baa114681fb299a69f
0
roles/wireguard
4,397
[ "no_license" ]
[ { "path": "roles/wireguard/templates/wg-multi.conf.j2", "content": "{%- macro render_interface(i) %}\n[Interface]\n{% if \"private_key\" in i %}\nPrivateKey = {{ i.private_key }}\n{% endif %}\n{% if \"address\" in i %}\n{% if i.address is string %}\nAddress = {{ i.address }}\n{% elif i.address...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 3452, "all_permissive": false }
ansible_role
rhys96/vagrant-kubernetes-cluster
c5eac9fe141ccb9007b033fe78b9bf26798afe6a
0
roles/helm
4,397
[ "no_license" ]
[ { "path": "roles/helm/defaults/main.yml", "content": "---\n\nhelm_dependencies:\n - apt-transport-https", "license_type": "no_license", "detected_licenses": [], "size_bytes": 47 }, { "path": "roles/helm/tasks/main.yml", "content": "---\n\n- name: Install dependencies for Helm\n apt...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 508, "all_permissive": false }
ansible_role
rhys96/vagrant-kubernetes-cluster
c5eac9fe141ccb9007b033fe78b9bf26798afe6a
0
roles/k8s-master
4,397
[ "no_license" ]
[ { "path": "roles/k8s-master/tasks/main.yml", "content": "---\n\n- name: Check if kubeconfig exists\n stat:\n path: /etc/kubernetes/admin.conf\n register: kubeconfig\n\n# See https://github.com/containerd/containerd/issues/4581\n- name: Remove containerd config.toml\n file:\n path: /etc/containerd/c...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1874, "all_permissive": false }
ansible_role
rhys96/vagrant-kubernetes-cluster
c5eac9fe141ccb9007b033fe78b9bf26798afe6a
0
roles/k8s-node
4,397
[ "no_license" ]
[ { "path": "roles/k8s-node/tasks/main.yml", "content": "---\n\n- name: Check if kubeconfig exists\n stat:\n path: /etc/kubernetes/admin.conf\n register: kubeconfig\n\n# See https://github.com/containerd/containerd/issues/4581\n- name: Remove containerd config.toml\n file:\n path: /etc/containerd/con...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 978, "all_permissive": false }
ansible_role
leoviana00/dio-dp-management-microservices
6090c18161f2486937841e59e63d1235229da8c2
0
infra/ansible/roles/check_cluster
4,397
[ "no_license" ]
[ { "path": "infra/ansible/roles/check_cluster/tasks/main.yml", "content": "---\n#-----------------------------------\n# CHECK CLUSTER\n#-----------------------------------\n- name: Check Cluster Swarm\n shell: \"docker node ls\"\n register: swarm_info\n\n- name: Cluster Swarm Info\n ansible.builtin.debug:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 259, "all_permissive": false }
ansible_role
leoviana00/dio-dp-management-microservices
6090c18161f2486937841e59e63d1235229da8c2
0
infra/ansible/roles/dependecies_configure
4,397
[ "no_license" ]
[ { "path": "infra/ansible/roles/dependecies_configure/tasks/main.yml", "content": "---\n#-----------------------------------------\n# INSTALANDO PRÉ REQUISITOS\n#-----------------------------------------\n\n- name: Install required system packages\n ansible.builtin.apt:\n pkg:\n - apt-transport-http...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 671, "all_permissive": false }
ansible_role
leoviana00/dio-dp-management-microservices
6090c18161f2486937841e59e63d1235229da8c2
0
infra/ansible/roles/master_configure
4,397
[ "no_license" ]
[ { "path": "infra/ansible/roles/master_configure/tasks/main.yml", "content": "#----------------------------------------------\n# INICIALIZAÇÃO DO CLUSTER\n#----------------------------------------------\n\n- name: Initialize the cluster using docker swarm\n community.docker.docker_swarm:\n state: present...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 525, "all_permissive": false }
ansible_role
ikukulevskyi/ansible-project
155904147d09cfffc2a2631e707e3110e7c5b2ad
0
roles/base-apache
4,397
[ "no_license" ]
[ { "path": "roles/base-apache/tasks/main.yml", "content": "---\n# This role installs httpd\n\n- name: Install apache2\n apt:\n name: ['apache2', 'libapache2-mod-php', 'php', 'php-mysql', 'git']\n update_cache: true\n state: present\n\n- name: apache2 service state\n service:\n name: apache2\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 337, "all_permissive": false }
ansible_role
ikukulevskyi/ansible-project
155904147d09cfffc2a2631e707e3110e7c5b2ad
0
roles/common
4,397
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# This role contains common plays that will run on all nodes.\n- name: Update packages\n apt:\n update_cache: yes\n upgrade: \"yes\"\n cache_valid_time: 86400\n tags: upgrade\n\n- name: Install new packages\n apt: \n name: ['ntp', 'mc'...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 570, "all_permissive": false }
ansible_role
ikukulevskyi/ansible-project
155904147d09cfffc2a2631e707e3110e7c5b2ad
0
roles/db
4,397
[ "no_license" ]
[ { "path": "roles/db/tasks/main.yml", "content": "---\n# This role will install MySQL and create db user and give permissions\n\n- name: Set MySQL root password before installing\n debconf:\n name: 'mysql-server'\n question: 'mysql-server/root_password'\n value: '{{upassword | quote}}'\n vtype: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1226, "all_permissive": false }
ansible_role
ikukulevskyi/ansible-project
155904147d09cfffc2a2631e707e3110e7c5b2ad
0
roles/nagios
4,397
[ "no_license" ]
[ { "path": "roles/nagios/tasks/main.yml", "content": "---\n# This will install nagios\n- name: Install Nagios4-common repository\n apt:\n deb: http://ftp.ru.debian.org/debian/pool/main/n/nagios4/nagios4-common_4.3.4-3_all.deb\n dpkg_options: 'force-confold,force-confdef'\n\n- name: Install Nagios4-cor...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1920, "all_permissive": false }
ansible_role
ikukulevskyi/ansible-project
155904147d09cfffc2a2631e707e3110e7c5b2ad
0
roles/redis
4,397
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yml", "content": "---\n- name: install packages\n apt: \n name: ['redis-tools', 'redis-server']\n update_cache: true\n state: present\n\n- name: For Redis change file /etc/sysctl.conf\n lineinfile:\n path: /etc/sysctl.conf\n regexp: ''\n insertafter: EOF...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 830, "all_permissive": false }
ansible_role
ikukulevskyi/ansible-project
155904147d09cfffc2a2631e707e3110e7c5b2ad
0
roles/web
4,397
[ "no_license" ]
[ { "path": "roles/web/tasks/main.yml", "content": "---\n- name: Copy the code from repository\n git: \n repo: \"{{ repository }}\" \n version: \"{{ webapp_version }}\" \n dest: \"/var/www/html/app\"\n force: yes\n\n- name: Install packages \n apt:\n name: ['python-pip', 'libapache2-mod-pytho...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 594, "all_permissive": false }
ansible_role
markmandel/ansible_wordpress
c44e9274ddc20ef52b4f4aadfb3d140d7dffcda9
6
provision/roles/dump_wordpress
4,397
[ "no_license" ]
[ { "path": "provision/roles/dump_wordpress/tasks/main.yml", "content": "#takes a backup of a wordpress install, to get it ready for deployment.\n---\n#initial setup\n- name: make sure rsync is installed on the server.\n apt: pkg=rsync\n sudo: true\n\n#clear and recreate the backup directory\n- name: delete...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1866, "all_permissive": false }
ansible_role
markmandel/ansible_wordpress
c44e9274ddc20ef52b4f4aadfb3d140d7dffcda9
6
provision/roles/install_wordpress
4,397
[ "no_license" ]
[ { "path": "provision/roles/install_wordpress/tasks/main.yml", "content": "#install process is from: http://ubuntuserverguide.com/2012/05/how-to-install-latest-wordpress-in-ubuntu-server-12-04-lts.html\n---\n#packages\n- name: install rsync.\n apt: pkg=rsync\n sudo: yes\n- name: install wordpress\n apt: p...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 7055, "all_permissive": false }
ansible_role
markmandel/ansible_wordpress
c44e9274ddc20ef52b4f4aadfb3d140d7dffcda9
6
provision/roles/restore_wordpress
4,397
[ "no_license" ]
[ { "path": "provision/roles/restore_wordpress/vars/main.yml", "content": "---\ndb_host: 'localhost'\nrestore_user: 'vagrant'\nwordpress_db_user: 'wordpress'\nwordpress_db_password: '<PASSWORD>'\nrestore_mysql: true\nrestore_uploads: true", "license_type": "no_license", "detected_licenses": [], "s...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1770, "all_permissive": false }
ansible_role
markmandel/ansible_wordpress
c44e9274ddc20ef52b4f4aadfb3d140d7dffcda9
6
provision/roles/vagrant
4,397
[ "no_license" ]
[ { "path": "provision/roles/vagrant/tasks/main.yml", "content": "---\n - name: \"install mysql\"\n apt: pkg=mysql-server state=latest\n sudo: yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 79, "all_permissive": false }
ansible_role
sulaimonkhan/roboshop-ansible
ab2ddf6c23ce55c87ae6fe414c9030d6fbd0395e
0
roles/common
4,397
[ "no_license" ]
[ { "path": "roles/common/tasks/app_prerequisites.yml", "content": "- name: Add Application User\n ansible.builtin.user:\n name: roboshop\n\n- name: Create Application Directory\n ansible.builtin.file:\n path: /app\n state: directory\n\n- name: Download and extract application content\n ansible.bu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 360, "all_permissive": false }
ansible_role
darkone23/adapa
2513f160b324eeeece2cbc5a4296c941c2f4024d
1
ansible/roles/etcd
4,397
[ "no_license" ]
[ { "path": "ansible/roles/etcd/defaults/main.yaml", "content": "etcd_server_address: 127.0.0.1:7001\netcd_client_address: 127.0.0.1:4001\netcd_join_address: off\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 95 }, { "path": "ansible/roles/etcd/tasks/main.yaml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 821, "all_permissive": false }
ansible_role
darkone23/adapa
2513f160b324eeeece2cbc5a4296c941c2f4024d
1
ansible/roles/serf
4,397
[ "no_license" ]
[ { "path": "ansible/roles/serf/tasks/main.yaml", "content": "- name: fetching serf\n get_url: dest=~/tmp/serfdom-0.1.1.zip\n url=https://dl.bintray.com/mitchellh/serf/0.1.1_linux_amd64.zip\n\n- name: extracting serf\n shell: creates=~/bin/serf\n unzip ~/tmp/serfdom-0.1.1.zip -d ~/bin \n\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 704, "all_permissive": false }
ansible_role
darkone23/adapa
2513f160b324eeeece2cbc5a4296c941c2f4024d
1
ansible/roles/supervise
4,397
[ "no_license" ]
[ { "path": "ansible/roles/supervise/tasks/main.yaml", "content": "- name: ensuring directories for {{ name }}\n file: path={{ item }} state=directory\n with_items: app_dirs\n\n- name: installing config for {{ name }}\n template: src=app.ini.j2 dest={{ supervisor_home }}/conf.d/{{ name }}.ini\n register: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1983, "all_permissive": false }
ansible_role
darkone23/adapa
2513f160b324eeeece2cbc5a4296c941c2f4024d
1
ansible/roles/supervisord
4,397
[ "no_license" ]
[ { "path": "ansible/roles/supervisord/tasks/main.yaml", "content": "- name: installing supervisor\n pip: name=supervisor\n version={{ supervisor_version }}\n virtualenv={{ supervisor_virtualenv }}\n {% if pip_args %} extra_args={{ pip_args }} {% endif %}\n\n- name: ensuring supervisor dire...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2732, "all_permissive": false }
ansible_role
daquinoaldo/visitors-splitted
5a8df2d8f525e4f9630840e86faee7500488e958
0
visitors-frontend-operator/roles/visitorsapp
4,397
[ "no_license" ]
[ { "path": "visitors-frontend-operator/roles/visitorsapp/templates/service.yml.j2", "content": "---\napiVersion: v1\nkind: Service\nmetadata:\n name: {{ name }}-frontend-service\n namespace: {{ namespace }}\n labels:\n app: {{ name }}\n tier: frontend\nspec:\n type: NodePort\n ports:\n - port: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1811, "all_permissive": false }
ansible_role
Doaa-hemaid/iVolve-training
edbfc84fbf00a5b69611df463c6ac4a7923e22ca
1
Ansible/Lab4/roles/Docker
4,397
[ "no_license" ]
[ { "path": "Ansible/Lab4/roles/Docker/tasks/main.yaml", "content": "---\n- name: Update apt package index\n apt:\n update_cache: yes\n\n- name: Install packages to allow apt to use a repository over HTTPS\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - soft...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 844, "all_permissive": false }
ansible_role
Doaa-hemaid/iVolve-training
edbfc84fbf00a5b69611df463c6ac4a7923e22ca
1
Ansible/Lab4/roles/Jenkins
4,397
[ "no_license" ]
[ { "path": "Ansible/Lab4/roles/Jenkins/tasks/main.yaml", "content": "---\n- name: Update apt package index\n apt:\n update_cache: yes\n- name: Install fontconfig\n shell: apt install fontconfig -y\n- name: Install Java (required by Jenkins)\n shell: apt install fontconfig openjdk-17-jre -y\n- name: Dow...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 855, "all_permissive": false }
ansible_role
Doaa-hemaid/iVolve-training
edbfc84fbf00a5b69611df463c6ac4a7923e22ca
1
Ansible/Lab4/roles/OpenShift
4,397
[ "no_license" ]
[ { "path": "Ansible/Lab4/roles/OpenShift/tasks/main.yaml", "content": "---\n- name: Update apt package index\n apt:\n update_cache: yes\n\n- name: Install prerequisites\n apt:\n name:\n - curl\n - tar\n state: present\n\n- name: Download OpenShift CLI\n get_url:\n url: \"https://mirr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 609, "all_permissive": false }
ansible_role
bprashanth/containers
0f82392c1da7303d359a7127d2fd0f2fe52f2cb7
0
ansible-playbooks/roles/common
4,517
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/common/tasks/main.yaml", "content": "- name: Log OS family and distro version\n shell: echo \"{{ ansible_os_family }} {{ ansible_distribution_version }}\"\n\n- name: Install Prerequisites\n apt: name=aptitude update_cache=yes state=latest force_apt_get=yes\n\n- name: Upd...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 704, "all_permissive": false }
ansible_role
bprashanth/containers
0f82392c1da7303d359a7127d2fd0f2fe52f2cb7
0
ansible-playbooks/roles/docker
4,517
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/docker/tasks/debian.yaml", "content": "- name: Add Docker GPG apt Key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n- name: Add Docker Repository\n apt_repository:\n repo: deb https://download.docker.com/linux/ubuntu bionic s...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1411, "all_permissive": false }
ansible_role
bprashanth/containers
0f82392c1da7303d359a7127d2fd0f2fe52f2cb7
0
ansible-playbooks/roles/kubeflow
4,517
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/kubeflow/tasks/config.yaml", "content": "- name: Update container runtime to PNS\n shell: \"kubectl get configmap workflow-controller-configmap --namespace kubeflow -o yaml | sed 's/docker/pns/g' | kubectl apply -f -\"\n tags: [config, apply]\n\n# TODO: make these templa...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 10, "total_bytes": 18162, "all_permissive": false }
ansible_role
bprashanth/containers
0f82392c1da7303d359a7127d2fd0f2fe52f2cb7
0
ansible-playbooks/roles/master
4,517
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/master/files/kind.yaml", "content": "kind: Cluster\napiVersion: kind.x-k8s.io/v1alpha4\nnodes:\n- role: control-plane\n kubeadmConfigPatches:\n - |\n kind: InitConfiguration\n nodeRegistration:\n kubeletExtraArgs:\n node-labels: \"ingress-ready=true\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3193, "all_permissive": false }
ansible_role
Edevops09/ansible-hw
6820bfd1b53ce1443b72e3c99eb247bcf1eb4d4d
0
roles/create-user-groups
4,517
[ "no_license" ]
[ { "path": "roles/create-user-groups/handlers/main.yml", "content": "---\n# handlers file for create-user-groups", "license_type": "no_license", "detected_licenses": [], "size_bytes": 42 }, { "path": "roles/create-user-groups/vars/main.yml", "content": "---\n# vars file for create-use...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 994, "all_permissive": false }
ansible_role
Edevops09/ansible-hw
6820bfd1b53ce1443b72e3c99eb247bcf1eb4d4d
0
roles/wordpress-redhat
4,517
[ "no_license" ]
[ { "path": "roles/wordpress-redhat/handlers/main.yml", "content": "---\n# handlers file for wordpress-redhat\n- name: Start webserver\n systemd: \n name: \"{{ item }}\" \n state: restarted\n enabled: true\n with_items:\n - httpd\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1727, "all_permissive": false }
ansible_role
Edevops09/ansible-hw
6820bfd1b53ce1443b72e3c99eb247bcf1eb4d4d
0
roles/wordpress-ubuntu
4,517
[ "no_license" ]
[ { "path": "roles/wordpress-ubuntu/vars/main.yml", "content": "---\n# vars file for wordpress-ubuntu\ninstall_core_files:\n - apache2\n - mysql-server \n - python3-pymysql\n - php\n - php-mysql\n - libapache2-mod-php \n\nphp_modules: \n - php\n - libapache2-mod-php\n - php-mysql\n - php-curl\n - p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2810, "all_permissive": false }
ansible_role
XAMeLeOH/mesos-cluster
4f4a7a6238d338d60e89418947ce89d5d10611b0
0
provisioning/roles/common
4,517
[ "no_license" ]
[ { "path": "provisioning/roles/common/tasks/main.yml", "content": "---\n\n- name: Set nearest repositories\n template: src=templates/etc-apt-sources.list dest=/etc/apt/sources.list\n when: common_repo_country != None\n\n- name: Add Java repository key\n apt_key: keyserver=keyserver.ubuntu.com id=EEA14886\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 956, "all_permissive": false }
ansible_role
XAMeLeOH/mesos-cluster
4f4a7a6238d338d60e89418947ce89d5d10611b0
0
provisioning/roles/mesos-master
4,517
[ "no_license" ]
[ { "path": "provisioning/roles/mesos-master/templates/etc-mesos-master-quorum.j2", "content": "{{ ((groups.mesos_masters|length + 1) / 2) | round(0, \"ceil\") | int }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "provisioning/roles/mesos-master...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2549, "all_permissive": false }
ansible_role
XAMeLeOH/mesos-cluster
4f4a7a6238d338d60e89418947ce89d5d10611b0
0
provisioning/roles/mesos-slave
4,517
[ "no_license" ]
[ { "path": "provisioning/roles/mesos-slave/templates/etc-mesos-slave-hostname.j2", "content": "{{ server_ip }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 16 }, { "path": "provisioning/roles/mesos-slave/tasks/main.yml", "content": "---\n\n- name: Create co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 793, "all_permissive": false }
ansible_role
zheek/ansible_htpc_nuc
5bab7e92bdce4fedde1b07eae36f5be0398ac2e9
0
ansible/roles/setup
4,517
[ "no_license" ]
[ { "path": "ansible/roles/setup/tasks/main.yml", "content": "---\n- name: Set en_US locale\n copy:\n src=locale\n dest=/etc/default/locale\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 82, "all_permissive": false }
ansible_role
zheek/ansible_htpc_nuc
5bab7e92bdce4fedde1b07eae36f5be0398ac2e9
0
ansible/roles/xbmc
4,517
[ "no_license" ]
[ { "path": "ansible/roles/xbmc/tasks/main.yml", "content": "---\n# Install XBMC on nuc\n# \n# The purpose is to install a stand-alone XBMC as the front-end application in the nuc, \n# that only requires the least system requirements.\n#.\n# Note: for some reason xbmc package is renmaed to kodi\n# \n# Referen...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2564, "all_permissive": false }
ansible_role
ashkankamyab/huebsch
6c30ef2781aa878e84e88c7f37db580f2a69ef5c
0
roles/apps
4,517
[ "no_license" ]
[ { "path": "roles/apps/tasks/main.yml", "content": "---\n- name: remove docker packages\n ansible.builtin.apt:\n name: \n - docker \n - docker-engine\n - docker.io\n - containerd\n - runc\n state: absent\n when: ansible_facts['os_family'] == 'Debian'\n become: true\n tags:\n - apt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 980, "all_permissive": false }
ansible_role
ashkankamyab/huebsch
6c30ef2781aa878e84e88c7f37db580f2a69ef5c
0
roles/packages
4,517
[ "no_license" ]
[ { "path": "roles/packages/vars/main.yml", "content": "---\napt_packages:\n - git\n - wget\n - curl\n - vim\n - vlc\n - tmux\n - screen\n - tree\n - jcal\n - zsh\n - fonts-powerline\n - fonts-inconsolata\n - ifstat\n - dstat\n - iptraf\n - iotop\n - lsof\n - cowsay\n - mosh\n - hping3\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 5489, "all_permissive": false }
ansible_role
ashkankamyab/huebsch
6c30ef2781aa878e84e88c7f37db580f2a69ef5c
0
roles/sudoers
4,517
[ "no_license" ]
[ { "path": "roles/sudoers/tasks/main.yml", "content": "- name: Ensure admin group exists\n group:\n name: admin\n state: present\n\n- name: Add admin group to sudoers\n lineinfile:\n path: /etc/sudoers\n line: '%admin ALL=(ALL) NOPASSWD: ALL'\n state: present\n validate: 'visudo -cf %s'\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 315, "all_permissive": false }
ansible_role
ashkankamyab/huebsch
6c30ef2781aa878e84e88c7f37db580f2a69ef5c
0
roles/user_mgmt
4,517
[ "no_license" ]
[ { "path": "roles/user_mgmt/tasks/main.yml", "content": "---\n- name: Add users\n user:\n name: \"{{ item.name }}\"\n uid: \"{{ item.uid }}\"\n comment: \"{{ item.comment }}\"\n group: \"{{ item.group }}\"\n with_items: \"{{ users }}\"\n when: item.state == 'present'\n\n- name: Remove users\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 561, "all_permissive": false }
ansible_role
mwaaas/Wezatele-docker-builder
892e4127b2fc07a0d6a968aeb93a06c3331d6005
0
splunk_base_container/roles/splunk-forwarder
4,517
[ "no_license" ]
[ { "path": "splunk_base_container/roles/splunk-forwarder/vars/main.yml", "content": "splunk_filename: splunkforwarder-6.1.2-213098-linux-2.6-amd64.deb\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "splunk_base_container/roles/splunk-forwarder/tas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1076, "all_permissive": false }
ansible_role
agrebin/EcsAutoScaling
6413bcc350dd994cd16fbad296afc01f5807f78d
0
roles/aws-ecs-autoscale-role
4,517
[ "no_license" ]
[ { "path": "roles/aws-ecs-autoscale-role/tasks/main.yml", "content": "# Check pre-requisites\n- include: pre-requisites.yml\n\n# Commission block\n- block:\n # Cluster: A logical grouping of container instances that you can place tasks on\n - name: \"AWS | ECS | Provision the cluster\"\n ecs_cluster:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4881, "all_permissive": false }
ansible_role
agrebin/EcsAutoScaling
6413bcc350dd994cd16fbad296afc01f5807f78d
0
roles/prototype-role
4,517
[ "no_license" ]
[ { "path": "roles/prototype-role/tasks/pre-requisites.yml", "content": "- name: \"Prototype | ECS | Check vpc_name has been defined\"\n fail: msg=\"You must specify the VPC in which you are creating the Task Definition (required to resolve other variables - this isnt an ECS requirement)\"\n when: vpc_name ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4555, "all_permissive": false }
ansible_role
jmarhee/infrastructure
9e0f281d3f697f2c2a20780c3f19c031698126dc
1
roles/ca-signed-cert-service
4,517
[ "no_license" ]
[ { "path": "roles/ca-signed-cert-service/handlers/main.yml", "content": "---\r\n- name: Reload nginx\r\n service:\r\n name: \"nginx\"\r\n state: reloaded\r\n\r\n- name: Start nginx\r\n service:\r\n name: \"nginx\"\r\n state: started\r\n\r\n- name: Kill pid\r\n shell: 'kill -HUP $(cat /var/run/...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2853, "all_permissive": false }
ansible_role
jmarhee/infrastructure
9e0f281d3f697f2c2a20780c3f19c031698126dc
1
roles/cert-service
4,517
[ "no_license" ]
[ { "path": "roles/cert-service/tasks/main.yml", "content": "---\r\n- name: Creates directory for Certificate Signing Requests, Keys, and Certfiles\r\n file:\r\n path: \"/etc/ssl/{{ item }}\"\r\n state: directory\r\n owner: root\r\n group: root\r\n mode: 0775\r\n recurse: yes\r\n with_item...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1312, "all_permissive": false }
ansible_role
jmarhee/infrastructure
9e0f281d3f697f2c2a20780c3f19c031698126dc
1
roles/dns
4,517
[ "no_license" ]
[ { "path": "roles/dns/templates/dnsmasq_conf.j2", "content": "# {{ hostname }} ({{ address}}): {{ description}}\naddress=/{{ hostname }}/{{ address }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 88 }, { "path": "roles/dns/tasks/main.yml", "content": "---\r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 710, "all_permissive": false }
ansible_role
jmarhee/infrastructure
9e0f281d3f697f2c2a20780c3f19c031698126dc
1
roles/docker
4,517
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\r\n- name: Install docker and pip\r\n apt:\r\n name: \"{{ item }}\"\r\n state: present\r\n update_cache: yes\r\n with_items:\r\n - docker.io\r\n - python-pip\r\n- name: pip install docker\r\n pip:\r\n name: docker\r\n- name: Addin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 355, "all_permissive": false }
ansible_role
jmarhee/infrastructure
9e0f281d3f697f2c2a20780c3f19c031698126dc
1
roles/drone
4,517
[ "no_license" ]
[ { "path": "roles/drone/tasks/main.yml", "content": "---\r\n- name: Generate DRONE_RPC_SECRET\r\n shell: openssl rand -hex 16\r\n register: drone_rpc_secret \r\n\r\n# Used with the cert-service or ca-signed-cert-service role, so will use http\r\n- name: Drone Container\r\n docker_container:\r\n name: d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 723, "all_permissive": false }
ansible_role
jmarhee/infrastructure
9e0f281d3f697f2c2a20780c3f19c031698126dc
1
roles/iscsiadm
4,517
[ "no_license" ]
[ { "path": "roles/iscsiadm/tasks/connect_to_target.yml", "content": "---\n- name: Discover WWNs from iSCSI server\n command: >-\n iscsiadm --mode discoverydb --type sendtargets --discover\n --portal {{ iscsi_target_ip }}:{{ iscsi_target_port }}\n args:\n creates: \"/var/lib/iscsi/send_targets/{{ i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1020, "all_permissive": false }
ansible_role
jmarhee/infrastructure
9e0f281d3f697f2c2a20780c3f19c031698126dc
1
roles/kubeadm_tools
4,517
[ "no_license" ]
[ { "path": "roles/kubeadm_tools/tasks/main.yml", "content": "---\n- name: Add an Apt signing key for Kubeadm\n apt_key:\n url: https://packages.cloud.google.com/apt/doc/apt-key.gpg\n state: present\n\n- name: Add Kubeadm Apt repo\n apt_repository:\n repo: deb https://apt.kubernetes.io/ kubernetes-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 384, "all_permissive": false }
ansible_role
jmarhee/infrastructure
9e0f281d3f697f2c2a20780c3f19c031698126dc
1
roles/rstudio
4,517
[ "no_license" ]
[ { "path": "roles/rstudio/tasks/main.yml", "content": "---\n#- name: Generate PASSWORD\n# command: openssl rand -hex 16\n# register: rstudio_password\n- name: Generate Rstudio password\n shell: openssl rand -hex 16\n run_once: true\n delegate_to: 127.0.0.1\n register: rstudio_password\n\n- name: Deploy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 534, "all_permissive": false }