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
pogo61/Kafka-Zookeeper-with-Vault-using_Ansible
dc02c22e54b5ba1ecd96f8ba450847809983e22c
1
Ansible/roles/kafka
229
[ "no_license" ]
[ { "path": "Ansible/roles/kafka/files/install-kafka/kafka_service", "content": "#!/bin/bash\n#\n# chkconfig: 345 83 04\n# description: Kafka is a distributed messging system\n# processname: kafka\n#\n### BEGIN INIT INFO\n# Provides: kafka\n# Required-Start: $all\n# Required-Stop: $all\n# Short-Description...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 20947, "all_permissive": false }
ansible_role
pogo61/Kafka-Zookeeper-with-Vault-using_Ansible
dc02c22e54b5ba1ecd96f8ba450847809983e22c
1
Ansible/roles/kafka_connect
229
[ "no_license" ]
[ { "path": "Ansible/roles/kafka_connect/tasks/main.yml", "content": "- name: upgrade all packages\n yum: name=* state=latest\n\n- name: Check for reboot hint.\n shell: LAST_KERNEL=$(rpm -q --last kernel | awk 'NR==1{sub(/kernel-/,\"\"); print $1}'); CURRENT_KERNEL=$(uname -r); if [ $LAST_KERNEL != $CURRENT...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 19986, "all_permissive": false }
ansible_role
pogo61/Kafka-Zookeeper-with-Vault-using_Ansible
dc02c22e54b5ba1ecd96f8ba450847809983e22c
1
Ansible/roles/management_tools
229
[ "no_license" ]
[ { "path": "Ansible/roles/management_tools/files/install-tools/install-tools.sh", "content": "#!/bin/bash\n\nset -ex\n\n#sudo yum -y update\n\n# Install packages to allow apt to use a repository over HTTPS:\n#sudo yum install -y \\\n# apt-transport-https \\\n# ca-certificates \\\n# curl \\\n# sof...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 6695, "all_permissive": false }
ansible_role
pogo61/Kafka-Zookeeper-with-Vault-using_Ansible
dc02c22e54b5ba1ecd96f8ba450847809983e22c
1
Ansible/roles/vault
229
[ "no_license" ]
[ { "path": "Ansible/roles/vault/files/install-vault/conf_vault.py", "content": "import json\nimport boto3\nimport botocore\nfrom six.moves import urllib\nimport subprocess\nimport time\nimport paramiko\n\ndef determineNode(nodelist, max, region):\n sum = 0\n print('in determineNode')\n for item in n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 15542, "all_permissive": false }
ansible_role
kirillmart1987/napa_labs
359d5d3aba61ce8ea18b7a1e53e31a1fe3d9e417
0
roles/install-nginx
229
[ "no_license" ]
[ { "path": "roles/install-nginx/tasks/main.yml", "content": "- name: Download nginx\n get_url:\n url: \"{{ nginx_url }}\"\n dest: /tmp/nginx\n mode: '0750'\n\n- name: Check binary\n shell: \"/tmp/nginx -h\"\n register: result\n failed_when: result.rc != 0\n\n- name: Add nginx_user\n user:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3077, "all_permissive": false }
ansible_role
kirillmart1987/napa_labs
359d5d3aba61ce8ea18b7a1e53e31a1fe3d9e417
0
roles/prepare-disk
229
[ "no_license" ]
[ { "path": "roles/prepare-disk/tasks/main.yml", "content": "- name: Install parted\n apt:\n name: parted\n state: present\n\n- name: Check /data dir\n stat:\n path: /data\n register: data_path\n\n- debug: var=data_path\n\n- block:\n - name: Check if /data alredy mounted\n shell: mountpoint -q...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1315, "all_permissive": false }
ansible_role
kmdrn7/funtastic-container-and-how-to-tame-them
cd7b1f26281462a7dbcff3957b4f71307362ff77
1
ansible/roles/common
229
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yaml", "content": "##################################################\n# Configure Common Server Setting\n##################################################\n\n- name: Switch off swap\n command: swapoff -a\n\n- name: Disable Swap\n mount:\n name: swap\n fst...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 664, "all_permissive": false }
ansible_role
kmdrn7/funtastic-container-and-how-to-tame-them
cd7b1f26281462a7dbcff3957b4f71307362ff77
1
ansible/roles/debug
229
[ "no_license" ]
[ { "path": "ansible/roles/debug/tasks/main.yaml", "content": "- name: Print the gateway for each host when defined\n ansible.builtin.debug:\n msg: \"{{ hostvars['192.168.100.51']['ansible_facts']['hostname'] }}\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 150 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 150, "all_permissive": false }
ansible_role
kmdrn7/funtastic-container-and-how-to-tame-them
cd7b1f26281462a7dbcff3957b4f71307362ff77
1
ansible/roles/docker
229
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yaml", "content": "##################################################\n# Install Docker\n##################################################\n\n- name: Installing Dependency\n include_tasks: deps.yaml\n\n- name: Install Docker Container Engine\n yum:\n name: \"...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1313, "all_permissive": false }
ansible_role
kmdrn7/funtastic-container-and-how-to-tame-them
cd7b1f26281462a7dbcff3957b4f71307362ff77
1
ansible/roles/haproxy
229
[ "no_license" ]
[ { "path": "ansible/roles/haproxy/tasks/main.yaml", "content": "- name: Install haproxy\n yum:\n name: haproxy\n state: present\n\n- name: Setting sebool haproxy_connect_any\n seboolean:\n name: haproxy_connect_any\n state: yes\n persistent: yes\n\n- name: Configuring HAProxy\n template:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 614, "all_permissive": false }
ansible_role
kmdrn7/funtastic-container-and-how-to-tame-them
cd7b1f26281462a7dbcff3957b4f71307362ff77
1
ansible/roles/helm
229
[ "no_license" ]
[ { "path": "ansible/roles/helm/tasks/main.yaml", "content": "- name: Download Helm package\n get_url:\n url: https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz\n dest: /opt/helm.tar.gz\n checksum: sha256:https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz.sha256sum\n\n- name: Extract Helm binary\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 595, "all_permissive": false }
ansible_role
ahmetemresariyildiz/ansible-default
f8e93bafe1cbc6d84b2c6ca284d943b45be1ec52
0
roles/base
229
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "- name: add ssh key for oberyn\n authorized_key:\n user: oberyn\n key: <KEY> ansible default\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 98 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 98, "all_permissive": false }
ansible_role
ahmetemresariyildiz/ansible-default
f8e93bafe1cbc6d84b2c6ca284d943b45be1ec52
0
roles/db_servers
229
[ "no_license" ]
[ { "path": "roles/db_servers/tasks/main.yml", "content": " - name: install mariadb server\n tags: db,mariadb,kali\n apt:\n name: mariadb-server\n state: latest\n when: ansible_distribution == \"Kali GNU/Linux\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 160, "all_permissive": false }
ansible_role
ahmetemresariyildiz/ansible-default
f8e93bafe1cbc6d84b2c6ca284d943b45be1ec52
0
roles/web_servers
229
[ "no_license" ]
[ { "path": "roles/web_servers/tasks/main.yml", "content": " - name: install apache2 package (Kali GNU/Linux)\n tags: apache,apache2,ubuntu\n apt:\n name:\n - apache2\n - libapache2-mod-php\n state: latest\n when: ansible_distribution == \"Kali GNU/Linux\"\n\n - name: install httpd p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 581, "all_permissive": false }
ansible_role
rocketlawyer/cloudera-centos
641efd8d646f031445ef7d6bf2b9c5a509697c87
1
roles/dataimport
229
[ "permissive" ]
[ { "path": "roles/dataimport/tasks/main.yml", "content": "---\n\n- include_vars: ../../../group_vars/cdh_servers.yml\n- include_vars: ../../../group_vars/scm_server.yml\n- include_vars: ../../../group_vars/db_server.yml\n\n# Check whether the cluster build command completed \n- name: Check whether cluster co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1062, "all_permissive": true }
ansible_role
rocketlawyer/cloudera-centos
641efd8d646f031445ef7d6bf2b9c5a509697c87
1
roles/selinux
229
[ "permissive" ]
[ { "path": "roles/selinux/tasks/main.yml", "content": "---\n- name: Ensure libselinux-python is installed.\n yum: \n name: libselinux-python\n\n- name: Check the selinux status.\n command: getenforce\n register: result\n changed_when: False\n\n- name: Ensure selinux is disabled.\n command: setenforce...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 522, "all_permissive": true }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/backup
229
[ "no_license" ]
[ { "path": "roles/backup/tasks/main.yml", "content": "---\n- name: make the backup staging and repository directories\n file:\n path: \"{{item}}\"\n state: directory\n owner: root\n group: root\n mode: 0755\n loop:\n - \"{{backup_staging_directory}}\"\n - \"{{borg_backup_directory}}\"\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2612, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/common
229
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Update and upgrade apt packages\n become: true\n apt:\n upgrade: true\n update_cache: true\n cache_valid_time: 86400 # One day\n- name: install common packages\n apt:\n name:\n - acl\n - curl\n - git\n - ng...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 773, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/dnsmasq
229
[ "no_license" ]
[ { "path": "roles/dnsmasq/templates/dnsmasq.conf.j2", "content": "# templates/dnsmasq.conf.j2\n\n# dnsmasq.conf for local DNS resolution\ninterface=eth0\nlisten-address=127.0.0.1,{{ web_server_ip }}\n\n# DNS settings for hosting domain\naddress=/jellyfin.tristanhavelick.com/{{ web_server_ip }}\naddress=/jell...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1382, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/dynamicdns
229
[ "no_license" ]
[ { "path": "roles/dynamicdns/tasks/main.yml", "content": "---\n- name: Install ddclient package\n apt:\n name: ddclient\n state: present\n- name: Copy ddclient configuration file\n template:\n src: templates/ddclient.conf.j2\n dest: /etc/ddclient.conf\n owner: root\n group: root\n mode...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 477, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/home_assistant
229
[ "no_license" ]
[ { "path": "roles/home_assistant/tasks/main.yml", "content": "---\n- name: create directories\n file:\n path: \"{{item}}\"\n state: directory\n mode: 0755\n loop:\n - \"{{home_assistant_site_root}}\"\n - \"{{home_assistant_site_root}}/config\"\n- name: get the current timezone\n command: ca...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 829, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/jellyfin
229
[ "no_license" ]
[ { "path": "roles/jellyfin/templates/jellyfin_nginx.conf.j2", "content": "server {\n\tserver_name {{domain}};\n\tlisten 443 ssl;\n\n ## The default `client_max_body_size` is 1M, this might not be enough for some posters, etc.\n client_max_body_size 20M;\n\n # use a variable to store the upstream pro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 4671, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/jellyseerr
229
[ "no_license" ]
[ { "path": "roles/jellyseerr/tasks/main.yml", "content": "---\n- name: create directories\n file:\n path: \"{{item}}\"\n state: directory\n owner: jellyfin\n group: jellyfin\n mode: 0755\n loop:\n - \"{{jellyseerr_base_directory}}\"\n - \"{{jellyseerr_base_directory}}/config\"\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 807, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/just_auth
229
[ "no_license" ]
[ { "path": "roles/just_auth/templates/just-auth.service.j2", "content": "[Unit]\nDescription=Just Auth ({{proxy_to_service_name}})\nAfter=syslog.target network.target\n\n[Service]\nWorkingDirectory={{just_auth_site_root}}/public_html\nExecStart={{just_auth_site_root}}/public_html/just_auth.py\nRestart=on-fai...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1219, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/just_bangs
229
[ "no_license" ]
[ { "path": "roles/just_bangs/files/custom-bang.js", "content": "[\n {\n \"t\": \"al\",\n \"u\": \"https://kiwix.tristanhavelick.com/search?content=archlinux_en_all_nopic_2022-05&pattern={{{s}}}\"\n },\n {\n \"t\": \"cl\",\n \"u\": \"https://denver.craigslist.org/search/?q...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3116, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/kiwix
229
[ "no_license" ]
[ { "path": "roles/kiwix/tasks/main.yml", "content": "---\n- name: install kiwix tools (includes kiwix-server)\n apt:\n name:\n - kiwix-tools\n- name: make all the folders\n file:\n path: \"{{item}}\"\n state: directory\n owner: 'www-data'\n group: 'www-data'\n with_items:\n - \"{{ki...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1172, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/miniflux
229
[ "no_license" ]
[ { "path": "roles/miniflux/tasks/main.yml", "content": "---\n- name: create the miniflux database\n become_user: postgres\n postgresql_db:\n name: \"{{miniflux_db}}\"\n- name: create a miniflux db user\n become_user: postgres\n postgresql_user:\n name: \"{{miniflux_db_user_name}}\"\n db: \"{{min...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1490, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/nextcloud
229
[ "no_license" ]
[ { "path": "roles/nextcloud/templates/nextcloud_nginx.conf.j2", "content": "server {\n\tserver_name {{domain}};\n client_max_body_size 1024M;\n\n location ^~ /.well-known {\n location = /.well-known/carddav { return 301 /remote.php/dav/; }\n location = /.well-known/caldav { return 301 /r...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4720, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/nginx_standard
229
[ "no_license" ]
[ { "path": "roles/nginx_standard/tasks/main.yml", "content": "---\n- name: copy nginx site config\n template: src={{nginx_conf_template}} dest=/etc/nginx/sites-available/{{domain}}\n register: nginx_standard\n- name: enable the nginx site config\n file:\n dest: /etc/nginx/sites-enabled/{{domain}}\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1125, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/onlyoffice
229
[ "no_license" ]
[ { "path": "roles/onlyoffice/tasks/main.yml", "content": "---\n- name: create directories\n file:\n path: \"{{item}}\"\n state: directory\n owner: www-data\n group: www-data\n mode: 0755\n loop:\n - \"{{onlyoffice_base_directory}}\"\n - \"{{onlyoffice_data_directory}}\"\n- name: run th...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 815, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/prowlarr
229
[ "no_license" ]
[ { "path": "roles/prowlarr/defaults/main.yml", "content": "---\nprowlarr_base_directory: /var/www/prowlarr\nprowlarr_config_directory: \"{{prowlarr_base_directory}}/config\"\nprowlarr_home_directory: /home/jellyfin\nprowlarr_user: jellyfin\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1180, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/radarr
229
[ "no_license" ]
[ { "path": "roles/radarr/defaults/main.yml", "content": "---\nradarr_base_directory: /var/www/radarr\nradarr_config_directory: \"{{radarr_base_directory}}/config\"\nradarr_home_directory: /home/jellyfin\nradarr_movies_directory: \"{{radarr_base_directory}}/movies\"\nradarr_user: jellyfin\n", "license_typ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1505, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/readarr
229
[ "no_license" ]
[ { "path": "roles/readarr/defaults/main.yml", "content": "---\nreadarr_base_directory: /var/www/readarr\nreadarr_config_directory: \"{{readarr_base_directory}}/config\"\nreadarr_home_directory: /home/readarr\nreadarr_books_directory: \"{{readarr_base_directory}}/books\"\nreadarr_downloads_directory: \"{{read...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1728, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/searxng
229
[ "no_license" ]
[ { "path": "roles/searxng/templates/searxng.yml.j2", "content": "---\nuse_default_settings: true\n\ngeneral:\n debug: false\n instance_name: \"SearXNG\"\n\nsearch:\n safe_search: 2\n autocomplete: 'duckduckgo'\n formats:\n - html\n - json\n\nserver:\n # Is overwritten by ${SEARXNG_SECRET}\n secr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 12138, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/service_standard
229
[ "no_license" ]
[ { "path": "roles/service_standard/tasks/main.yml", "content": "---\n- name: create the systemd service\n template:\n src: templates/{{service_name}}.service.j2\n dest: /etc/systemd/system/{{service_name}}.service\n- name: start and enable the systemd service\n service:\n name: \"{{service_name}}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 275, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/transmission
229
[ "no_license" ]
[ { "path": "roles/transmission/tasks/main.yml", "content": "---\n- name: create the highseas group\n group:\n name: highseas\n state: present\n- name: create directories\n file:\n path: \"{{item}}\"\n state: directory\n owner: www-data\n group: highseas\n mode: 0775\n loop:\n - \"{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 992, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/tubesync
229
[ "no_license" ]
[ { "path": "roles/tubesync/tasks/main.yml", "content": "---\n- name: create the tubesync user\n user:\n name: \"{{tubesync_user}}\"\n state: present\n shell: /bin/false\n createhome: true\n home: \"{{tubesync_home_directory}}\"\n- name: create directories\n file:\n path: \"{{item}}\"\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1745, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/wallabag
229
[ "no_license" ]
[ { "path": "roles/wallabag/templates/parameters.yml.j2", "content": "parameters:\n database_driver: pdo_sqlite\n database_host: 127.0.0.1\n database_port: null\n database_name: wallabag\n database_user: root\n database_password: <PASSWORD>\n database_path: /var/www/{{wallabag_domain}}/wa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3902, "all_permissive": false }
ansible_role
thavelick/home-server
1c2d6c95c09b7fca2c97adb452fd07f690db1382
0
roles/youtranscript
229
[ "no_license" ]
[ { "path": "roles/youtranscript/tasks/main.yml", "content": "---\n- name: make base folder\n file:\n path: \"{{youtranscript_site_root}}\"\n state: directory\n owner: 'www-data'\n group: 'www-data'\n- name: clone the repo\n register: youtranscript_clone\n become_user: 'www-data'\n git:\n r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2102, "all_permissive": false }
ansible_role
evaldofelipe/uma-automator
8686d81b97ee292fa18df998817a750c495c8653
0
ansible/roles/uma-bot-ansible
229
[ "no_license" ]
[ { "path": "ansible/roles/uma-bot-ansible/tasks/main.yml", "content": "---\n- name: Install Docker Module for Python\n pip:\n name: docker\n\n- name: Create config file\n template:\n src: \"/uma-automator/ansible/roles/uma-bot-ansible/files/uma/{{ item }}.j2\"\n dest: \"/home/uma/{{ item }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 725, "all_permissive": false }
ansible_role
ECarry/playbook
876faa73818edd51a2d72694baad0581db059341
0
lnmp/roles/common
229
[ "no_license" ]
[ { "path": "lnmp/roles/common/tasks/main.yml", "content": "---\n- name: install epel-release\n yum: name=epel-release state=present\n\n- name: install packages\n yum:\n name: \"{{item}}\"\n state: present\n loop:\n - net-tools\n - vim\n - bash-completion\n - wget\n - curl\n - gc\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 736, "all_permissive": false }
ansible_role
ECarry/playbook
876faa73818edd51a2d72694baad0581db059341
0
lnmp/roles/mysql
229
[ "no_license" ]
[ { "path": "lnmp/roles/mysql/tasks/install.yml", "content": "- name: install mysql8.0\n yum:\n name: \"{{ item }}\"\n state: installed\n loop:\n - mysql-community-server\n - mysql-community-client\n - python-PyMySQL\n - MySQL-python", "license_type": "no_license", "detected_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 181, "all_permissive": false }
ansible_role
ECarry/playbook
876faa73818edd51a2d72694baad0581db059341
0
lnmp/roles/nginx
229
[ "no_license" ]
[ { "path": "lnmp/roles/nginx/defaults/main.yml", "content": "---\n# defaults file for nginx\nGROUPID: \"nginx\"\nUSERID: \"nginx\"\nworker_rlimit_nofile: 1024\nworker_connections: 1024\nmultis_accept: \"on\"\nsend_file: \"on\"\ntcp_nopush: \"off\"\ntcp_nodelay: \"on\"\nkeepalive_timeout: 65\nserver_tokens: \...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 4294, "all_permissive": false }
ansible_role
ECarry/playbook
876faa73818edd51a2d72694baad0581db059341
0
lnmp/roles/php
229
[ "no_license" ]
[ { "path": "lnmp/roles/php/tasks/install.yml", "content": "---\n- name: download php.tar.gz\n url: name=http://pan.ecarry.cc/software/php-7.4.15.tar.gz dest=/tmp\n\n- name: copy auto_install script\n copy: src=auto_install.sh dest=/tmp mode=0700\n\n- name: auto install nginx \n shell: /bin/bash /tmp/auto_...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1578, "all_permissive": false }
ansible_role
ECarry/playbook
876faa73818edd51a2d72694baad0581db059341
0
roles/docker
229
[ "no_license" ]
[ { "path": "roles/docker/vars/main.yml", "content": "# 加速源\n# 163:http://hub-mirror.c.163.com\n# aliyun: https://ID.mirror.aliyuncs.com ID需要登陆阿里云获取\nspeed_up: http://hub-mirror.c.163.com ", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 }, { "path": "roles/docker...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 1042, "all_permissive": false }
ansible_role
ECarry/playbook
876faa73818edd51a2d72694baad0581db059341
0
roles/mysql
229
[ "no_license" ]
[ { "path": "roles/mysql/vars/main.yml", "content": "---\n# vars file for mysql\nmysql:\n mysql_passwd: \"<PASSWORD>.\"\n client: \n socket: \"/data/mysql.sock\"\n mysqldump: \n max_allowed_packet: \"32M\"\n mysqld: \n port: 3306\n datadir: \"/data\"\n socket: \"/data/mysql.sock\"\n serv...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1895, "all_permissive": false }
ansible_role
ECarry/playbook
876faa73818edd51a2d72694baad0581db059341
0
roles/nginx
229
[ "no_license" ]
[ { "path": "roles/nginx/tasks/config.yml", "content": "- name: config nginx\n template: src=nginx.conf.j2 dest={{ installDir }}/conf/nginx.conf\n notify: restart nginx", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 }, { "path": "roles/nginx/templates/nginx.se...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 1798, "all_permissive": false }
ansible_role
ECarry/playbook
876faa73818edd51a2d72694baad0581db059341
0
roles/tomcat
229
[ "no_license" ]
[ { "path": "roles/tomcat/tasks/install_jdk.yml", "content": "- name: download jdk8\n get_url: url=http://pan.ecarry.cc/software/jdk-8u281-linux-x64.rpm dest=/tmp\n\n- name: install jdk8\n yum: name=/tmp/jdk-8u281-linux-x64.rpm state=present", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 966, "all_permissive": false }
ansible_role
ECarry/playbook
876faa73818edd51a2d72694baad0581db059341
0
roles/zabbix-agent
229
[ "no_license" ]
[ { "path": "roles/zabbix-agent/tasks/install.yml", "content": "- name: install repo\n yum: name=https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm state=present\n\n- name: config zabbix repo from aliyun\n copy: src=zabbix.repo dest=/etc/yum.repos.d/\n\n- name: install zabb...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2721, "all_permissive": false }
ansible_role
ECarry/playbook
876faa73818edd51a2d72694baad0581db059341
0
roles/zabbix-server
229
[ "no_license" ]
[ { "path": "roles/zabbix-server/tasks/config.yml", "content": "- name: Configure the database for Zabbix server\n template: src=zabbix_server.conf.j2 dest=/etc/zabbix/zabbix_server.conf\n notify: restart zabbix server\n\n- name: Configure PHP for Zabbix frontend\n template: src=zabbix.conf.j2 dest=/etc/op...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 2486, "all_permissive": false }
ansible_role
hidepin/postgresql-playbook
b5409eb6791523a1797645d7d79571c78abbd6cd
0
roles/pg_stats_reporter
229
[ "no_license" ]
[ { "path": "roles/pg_stats_reporter/defaults/main.yml", "content": "---\n# defaults file for pg_stats_reporter\nproxy_env:\n no_proxy: '*'\n# http_proxy: http://172.16.111.1:8080\n# https_proxy: http://172.16.111.1:8080\npg_stats_reporter_version: \"3.3.1-1\"\npg_statsinfo_user: \"statsinfo\"\npg_statsinf...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 5506, "all_permissive": false }
ansible_role
hidepin/postgresql-playbook
b5409eb6791523a1797645d7d79571c78abbd6cd
0
roles/postgresql
229
[ "no_license" ]
[ { "path": "roles/postgresql/templates/archive_remove_pglog.sh.j2", "content": "#!/bin/bash\n#############################################################################\n# Copyright (c) 2009-2017, NIPPON TELEGRAPH AND TELEPHONE CORPORATION\n#################################################################...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 25393, "all_permissive": false }
ansible_role
nokogerra/generate_csr_and_keys_from_list
238824304838205b5cac33ced29833e406d9f662
1
roles/generate_csr_and_key_from_list
229
[ "no_license" ]
[ { "path": "roles/generate_csr_and_key_from_list/tasks/generate_csrs_and_keys.yml", "content": "# code: language=ansible\n---\n- name: \"Generate CSRs and keys based on the openssl configs\"\n command: openssl req -config /home/{{ ansible_user_id }}/csrs_and_keys/configs/{{ item.cn }}.conf \\\n -n...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 3264, "all_permissive": false }
ansible_role
Nimble85/Dnipro_DevOps_int_2020
d8e87b0075b3c4346b160fdf1bfc26188188a575
0
task5-ansible-v2/roles/base_db
237
[ "no_license" ]
[ { "path": "task5-ansible-v2/roles/base_db/vars/main.yml", "content": "---\n# vars file for jenkins_docker_nginx", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "task5-ansible-v2/roles/base_db/tasks/main.yml", "content": "---\n# tasks file for ba...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2350, "all_permissive": false }
ansible_role
Nimble85/Dnipro_DevOps_int_2020
d8e87b0075b3c4346b160fdf1bfc26188188a575
0
task5-ansible-v2/roles/lb_haproxy
237
[ "no_license" ]
[ { "path": "task5-ansible-v2/roles/lb_haproxy/handlers/main.yml", "content": "---\n# handlers file for loadbalancer\n- name: reload haproxy\n service:\n name : haproxy\n state: reloaded \n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 111 }, { "path": "task...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3851, "all_permissive": false }
ansible_role
Nimble85/Dnipro_DevOps_int_2020
d8e87b0075b3c4346b160fdf1bfc26188188a575
0
task5-ansible-v2/roles/web_nginx
237
[ "no_license" ]
[ { "path": "task5-ansible-v2/roles/web_nginx/vars/main.yml", "content": "---\n# vars file for docker_nginx", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "task5-ansible-v2/roles/web_nginx/files/site/dbconfig.php", "content": "<?php\n/*\n Autho...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 11229, "all_permissive": false }
ansible_role
Nimble85/Dnipro_DevOps_int_2020
d8e87b0075b3c4346b160fdf1bfc26188188a575
0
tsk-final-aws-tform-ansible-docker-jenkins/dev/ansible/roles/jenkins_slave
237
[ "no_license" ]
[ { "path": "tsk-final-aws-tform-ansible-docker-jenkins/dev/ansible/roles/jenkins_slave/tasks/main.yml", "content": "- name: Ensure jenkins_slave directory on slave hosts\n file:\n state: directory\n path : /home/ubuntu/jenkins_slave\n owner: \"{{ user }}\"\n group: \"{{ user }}\"\n\n\n", "li...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 252, "all_permissive": false }
ansible_role
Nimble85/Dnipro_DevOps_int_2020
d8e87b0075b3c4346b160fdf1bfc26188188a575
0
tsk-final-aws-tform-ansible-docker-jenkins/prod/ansible/roles/docker
237
[ "no_license" ]
[ { "path": "tsk-final-aws-tform-ansible-docker-jenkins/prod/ansible/roles/docker/tasks/main.yml", "content": "---\n- name: Update all packages\n apt:\n name: \"*\"\n state: latest\n update_cache: yes\n\n\n#- name: check linux distro\n# debug: var=ansible_os_family\n\n- name: Install aptitude using...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2714, "all_permissive": false }
ansible_role
dave-pl/ansible_jenkins
58e59480ecd5e78301f310867b38e5a807e4e8a9
0
roles/jenkins
237
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/jenkins.yml", "content": "---\n- name: install jenkins for CentOS7\n include: centos7_jenkins.yml\n when: ansible_distribution == \"CentOS\" and ansible_distribution_major_version == \"7\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 1...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 2726, "all_permissive": false }
ansible_role
dave-pl/ansible_jenkins
58e59480ecd5e78301f310867b38e5a807e4e8a9
0
roles/jenkins_node
237
[ "no_license" ]
[ { "path": "roles/jenkins_node/tasks/docker.yml", "content": "---\n- block:\n\n - name: Install first part of soft\n yum:\n name:\n - yum-utils\n - device-mapper-persistent-data\n - lvm2\n state: present\n\n - name: add docker repo\n get_url:\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2525, "all_permissive": false }
ansible_role
dave-pl/ansible_jenkins
58e59480ecd5e78301f310867b38e5a807e4e8a9
0
roles/jenkins_with_nginx
237
[ "no_license" ]
[ { "path": "roles/jenkins_with_nginx/vars/main.yml", "content": "---\n# vars file for installation", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "roles/jenkins_with_nginx/tasks/centos7_nginx.yml", "content": "---\n- name: create nginx repo\n c...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 5729, "all_permissive": false }
ansible_role
aerogear-attic/mobile-core
ef99f09e699afb1a2e3bdb97aceaf4a15b1540dd
7
installer/roles/ansible-service-broker-setup
237
[ "permissive" ]
[ { "path": "installer/roles/ansible-service-broker-setup/tasks/main.yml", "content": "---\n\n# Copy all apb images from aerogearcatalog repo to the dockerhub_org repo - unless that is set to aerogearcatalog\n\n- block:\n - name: List all public APB's in aerogearcatalog docker org\n uri:\n url: \"htt...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 7605, "all_permissive": true }
ansible_role
aerogear-attic/mobile-core
ef99f09e699afb1a2e3bdb97aceaf4a15b1540dd
7
installer/roles/create-mobile-client-crd
237
[ "permissive" ]
[ { "path": "installer/roles/create-mobile-client-crd/files/mobile-client-crd.yaml", "content": "apiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: mobileclients.mobile.k8s.io\nspec:\n group: mobile.k8s.io\n version: v1alpha1\n scope: Namespaced\n names:\n plur...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1852, "all_permissive": true }
ansible_role
aerogear-attic/mobile-core
ef99f09e699afb1a2e3bdb97aceaf4a15b1540dd
7
installer/roles/oc-cluster-up
237
[ "permissive" ]
[ { "path": "installer/roles/oc-cluster-up/defaults/main.yml", "content": "---\n# defaults file for oc-cluster-up\nservice_catalog: \"true\"\nhawkular_metrics: \"false\"\nuse_existing_config: \"false\"\nhost_config_dir: \"{{playbook_dir}}/../ui\"\ncluster_image: openshift/origin\ncluster_version: \"v3.9.0\"\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2829, "all_permissive": true }
ansible_role
aerogear-attic/mobile-core
ef99f09e699afb1a2e3bdb97aceaf4a15b1540dd
7
installer/roles/output-oc-cluster-status
237
[ "permissive" ]
[ { "path": "installer/roles/output-oc-cluster-status/tasks/main.yml", "content": "- name: get status\n command: oc cluster status\n register: cluster_status\n\n- debug: msg=\"{{ cluster_status.stdout_lines }}\"", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "si...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 124, "all_permissive": true }
ansible_role
aerogear-attic/mobile-core
ef99f09e699afb1a2e3bdb97aceaf4a15b1540dd
7
installer/roles/patch-origin-web-console
237
[ "permissive" ]
[ { "path": "installer/roles/patch-origin-web-console/tasks/main.yml", "content": "---\n# tasks file for patch-origin-web-console\n- name: Get current user\n shell: \"oc whoami\"\n register: \"oc_whoami_output\"\n\n- set_fact:\n current_user: \"{{oc_whoami_output.stdout}}\"\n\n- name: Login as system adm...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1420, "all_permissive": true }
ansible_role
aerogear-attic/mobile-core
ef99f09e699afb1a2e3bdb97aceaf4a15b1540dd
7
installer/roles/provision-mobile-catalog
237
[ "permissive" ]
[ { "path": "installer/roles/provision-mobile-catalog/defaults/main.yml", "content": "---\nansible_service_broker_namespace: openshift-ansible-service-broker\n# this regex covers versions newer than 3.9.0\nopenshift_version_regex: \"openshift v3.(9|1[0-9]).[0-9]\"", "license_type": "permissive", "dete...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4426, "all_permissive": true }
ansible_role
aerogear-attic/mobile-core
ef99f09e699afb1a2e3bdb97aceaf4a15b1540dd
7
installer/roles/setup-openshift-admin-user
237
[ "permissive" ]
[ { "path": "installer/roles/setup-openshift-admin-user/tasks/main.yml", "content": "---\n# tasks file for setup-openshift-admin-user\n\n- name: Login as system admin\n shell: \"oc login -u system:admin\"\n\n- name: Get admin user\n shell: \"oc get user admin\"\n register: admin_user\n failed_when: false\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 583, "all_permissive": true }
ansible_role
crabvk/pocket-ansible
5c956b6836c6d965e93702a17ab52aa400cddbfb
2
roles/firewall
237
[ "no_license" ]
[ { "path": "roles/firewall/tasks/main.yaml", "content": "- name: Install nftables\n ansible.builtin.package:\n name: nftables\n\n- name: Create nftables.d directory\n ansible.builtin.file:\n path: /etc/nftables.d\n mode: 0640\n state: directory\n\n- name: Copy nftables config\n ansible.builtin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 624, "all_permissive": false }
ansible_role
crabvk/pocket-ansible
5c956b6836c6d965e93702a17ab52aa400cddbfb
2
roles/pocket
237
[ "no_license" ]
[ { "path": "roles/pocket/templates/pocket.service.j2", "content": "[Unit]\nDescription=Pocket node\nAfter=network-online.target nss-lookup.target\n\n[Service]\nUser=pocket\nExecStart={{ pocket_binary }} start\nRestart=on-failure\nRestartSec=5\nLimitNOFILE=16384\n\n[Install]\nWantedBy=multi-user.target\n", ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2710, "all_permissive": false }
ansible_role
crabvk/pocket-ansible
5c956b6836c6d965e93702a17ab52aa400cddbfb
2
roles/relay
237
[ "no_license" ]
[ { "path": "roles/relay/files/0001.json", "content": "{\n \"relay_network_id\": \"0001\",\n \"payload\": {\n \"data\": \"{}\",\n \"method\": \"POST\",\n \"path\": \"v1/query/height\",\n \"headers\": {}\n }\n}\n", "license_type": "no_license", "detected_licenses": ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 13, "total_bytes": 4846, "all_permissive": false }
ansible_role
crabvk/pocket-ansible
5c956b6836c6d965e93702a17ab52aa400cddbfb
2
roles/web
237
[ "no_license" ]
[ { "path": "roles/web/tasks/main.yaml", "content": "- name: Install Nginx\n ansible.builtin.package:\n name: nginx\n\n- name: Copy nftables config for HTTP(S)\n ansible.builtin.copy:\n src: nftables/http.conf\n dest: /etc/nftables.d/http.conf\n mode: 0640\n notify:\n - Restart nftables\n\n-...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2331, "all_permissive": false }
ansible_role
SpyFax/lfs258
3c2e2679643facada6a1d7ad447008fdfe5f0026
0
ansible/roles/cp
237
[ "no_license" ]
[ { "path": "ansible/roles/cp/tasks/main.yml", "content": "---\n- name: \"Copy init config file\"\n ansible.builtin.template:\n src: kubeadm-config.yaml.j2\n dest: /root/kubeadm-config.yaml\n mode: \"0644\"\n\n- name: Checked for existing Kubernetes cluster\n ansible.builtin.stat:\n path: \"/etc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3577, "all_permissive": false }
ansible_role
SpyFax/lfs258
3c2e2679643facada6a1d7ad447008fdfe5f0026
0
ansible/roles/cri
237
[ "no_license" ]
[ { "path": "ansible/roles/cri/tasks/main.yml", "content": "---\n- name: \"Add docker repo\"\n block:\n - name: \"Add docker public signing key\"\n ansible.builtin.get_url:\n url: https://download.docker.com/linux/ubuntu/gpg\n dest: \"{{ docker_gpg_key }}\"\n mode: 0644\n - na...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1266, "all_permissive": false }
ansible_role
SpyFax/lfs258
3c2e2679643facada6a1d7ad447008fdfe5f0026
0
ansible/roles/init
237
[ "no_license" ]
[ { "path": "ansible/roles/init/tasks/main.yml", "content": "---\n- name: \"Updating the guest operating system.\"\n ansible.builtin.apt:\n force_apt_get: true\n name: \"*\"\n state: latest # noqa package-latest\n update_cache: true\n only_upgrade: true\n\n- name: \"Installing additional p...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1573, "all_permissive": false }
ansible_role
SpyFax/lfs258
3c2e2679643facada6a1d7ad447008fdfe5f0026
0
ansible/roles/kubernetes
237
[ "no_license" ]
[ { "path": "ansible/roles/kubernetes/tasks/main.yml", "content": "- name: \"Add apt repo\"\n block:\n - name: \"Add Google Cloud public signing key\"\n ansible.builtin.get_url:\n url: https://packages.cloud.google.com/apt/doc/apt-key.gpg\n dest: \"{{ k8s_gpg_key }}\"\n mode: \"0...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 935, "all_permissive": false }
ansible_role
mackenzie-trabalhos/iac-tab-1
5c96f5251dbe7fb2b21384c720142a890a28ba86
0
roles/defaults
237
[ "no_license" ]
[ { "path": "roles/defaults/tasks/mysql.yml", "content": "- name: Install Mysql\n package:\n name: mysql-server\n state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 }, { "path": "roles/defaults/tasks/java.yml", "content": "- name: Install Ja...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 149, "all_permissive": false }
ansible_role
mackenzie-trabalhos/iac-tab-1
5c96f5251dbe7fb2b21384c720142a890a28ba86
0
roles/jenkins
237
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/main.yml", "content": "- name: Jenkins setup\n hosts: server01\n become: yes\n tasks:\n - include: ../../defaults/tasks/java.yml\n\n - name: add jenkins repository\n apt_key:\n state: present\n url: https://pkg.jenkins.io/debian-stable/jenkins.io.ke...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 605, "all_permissive": false }
ansible_role
mackenzie-trabalhos/iac-tab-1
5c96f5251dbe7fb2b21384c720142a890a28ba86
0
roles/lamp
237
[ "no_license" ]
[ { "path": "roles/lamp/tasks/main.yml", "content": "- name: Lamp setup\n hosts: server03\n become: yes\n tasks:\n - include: ../../defaults/tasks/apache.yml\n - include: ../../defaults/tasks/mysql.yml\n - include: ../../defaults/tasks/php.yml\n", "license_type": "no_license", "detected_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 197, "all_permissive": false }
ansible_role
mackenzie-trabalhos/iac-tab-1
5c96f5251dbe7fb2b21384c720142a890a28ba86
0
roles/rundeck
237
[ "no_license" ]
[ { "path": "roles/rundeck/tasks/main.yml", "content": "- name: Rundeck setup\n hosts: server02\n become: yes\n tasks:\n - include: ../../defaults/tasks/java.yml\n\n - name: Install Rundeck\n package:\n name: rundeckpro-enterprise\n state: present\n", "license_type": "no_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 211, "all_permissive": false }
ansible_role
pliesveld/tutorial-kafka
6839bd8be44c540c6e178c735c1613b5556d7447
0
ansible/roles/kafka-java-deploy
237
[ "no_license" ]
[ { "path": "ansible/roles/kafka-java-deploy/tasks/main.yml", "content": "---\n- name: Install tutorial-kafka.jar\n copy:\n src: ../target/tutorial-kafka.jar\n dest: \"{{project.install_dir}}\"\n remote_src: false\n force: true\n notify: reload systemd daemon\n register: result\n\n- name: Print...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1975, "all_permissive": false }
ansible_role
ansible/network-infra-playbooks
b2bff19104439c099108aa0cf2567c2fc0e6ae1f
21
roles/bootstrap-pip
237
[ "no_license" ]
[ { "path": "roles/bootstrap-pip/vars/Debian.yml", "content": "---\npip_binary_path: /usr/local/bin/pip\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "roles/bootstrap-pip/vars/RedHat.yml", "content": "---\npip_binary_path: /usr/bin/pip\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 458, "all_permissive": false }
ansible_role
ansible/network-infra-playbooks
b2bff19104439c099108aa0cf2567c2fc0e6ae1f
21
roles/dci-agent
237
[ "no_license" ]
[ { "path": "roles/dci-agent/tasks/RedHat.yaml", "content": "---\n- name: install dci-agent\n yum:\n name: https://packages.distributed-ci.io/dci-release.el7.noarch.rpm\n state: present\n become: yes\n\n- name: install dci-ansible\n yum:\n name: dci-ansible\n state: present\n become: yes\n\n- ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3520, "all_permissive": false }
ansible_role
rphillips/dev-envs
77f755a2fb37fa5c3385d4fa1fa823634a139463
0
roles/base
237
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "- user:\n name: rphillips\n groups: sudo\n when: ansible_pkg_mgr == 'apt'\n- user:\n name: rphillips\n groups: wheel\n when: ansible_pkg_mgr == 'dnf'\n- authorized_key:\n user: rphillips\n state: present\n key: \"{{ lookup('file', '~/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 267, "all_permissive": false }
ansible_role
rphillips/dev-envs
77f755a2fb37fa5c3385d4fa1fa823634a139463
0
roles/home
237
[ "no_license" ]
[ { "path": "roles/home/tasks/main.yml", "content": "- block:\n - git:\n repo: https://github.com/hlissner/.vim\n dest: /home/rphillips/.vim\n - git:\n repo: https://github.com/sorin-ionescu/prezto.git\n dest: /home/rphillips/.zprezto\n recursive: yes\n - shell: |\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 556, "all_permissive": false }
ansible_role
rphillips/dev-envs
77f755a2fb37fa5c3385d4fa1fa823634a139463
0
roles/kubernetes
237
[ "no_license" ]
[ { "path": "roles/kubernetes/tasks/main.yml", "content": "- block:\n - git:\n repo: https://github.com/kubernetes/kubernetes\n dest: /home/rphillips/kubernetes\n become: yes\n become_user: rphillips", "license_type": "no_license", "detected_licenses": [], "size_bytes": 154 } ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 154, "all_permissive": false }
ansible_role
rphillips/dev-envs
77f755a2fb37fa5c3385d4fa1fa823634a139463
0
roles/kubernetes-apt
237
[ "no_license" ]
[ { "path": "roles/kubernetes-apt/tasks/main.yml", "content": "- name: install compilers and build essentials\n apt: name={{ item }} state=installed\n with_items:\n - build-essential\n - git-core\n - neovim\n - python-pip\n - zsh", "license_type": "no_license", "detected_licenses": [...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 177, "all_permissive": false }
ansible_role
rphillips/dev-envs
77f755a2fb37fa5c3385d4fa1fa823634a139463
0
roles/kubernetes-dnf
237
[ "no_license" ]
[ { "path": "roles/kubernetes-dnf/tasks/main.yml", "content": "- name: install compilers and build essentials\n dnf: name={{ item }} state=installed\n with_items:\n - git \n - gcc\n - gcc-c++ \n - make \n - gdb\n - automake\n - autoconf\n - libtool\n - pkgconfig\n - neovim\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 258, "all_permissive": false }
ansible_role
rhinocerose/homelab-segmented
83bf45eb0254821b363209ac75712d18d2ea0cff
0
roles/base-packages
237
[ "no_license" ]
[ { "path": "roles/base-packages/files/.bash_aliases", "content": "alias reload='source ~/.bashrc'\n\nalias ll='ls -lah'\nalias l='ls -la'\nalias ..='cd ..'\nalias ...='cd ../..'\nalias df='df -h'\n\nfunction cd() {\n\tif [ -n \"$1\" ]; then\n\t\tbuiltin cd \"$@\" && ll\n\telse\n\t\tbuiltin cd ~ && ll\n\tfi\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1686, "all_permissive": false }
ansible_role
rhinocerose/homelab-segmented
83bf45eb0254821b363209ac75712d18d2ea0cff
0
roles/mealie
237
[ "no_license" ]
[ { "path": "roles/mealie/defaults/main.yml", "content": "---\nmealie_enabled: false\nmealie_available_externally: false\nmealie_container_name: \"mealie\"\nmealie_container_store: \"hkotel\"\nmealie_config_directory: \"{{ docker_app_data }}/mealie\"\nmealie_version: latest\nmealie_port_http: \"9925\"\nmealie...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1989, "all_permissive": false }
ansible_role
rhinocerose/homelab-segmented
83bf45eb0254821b363209ac75712d18d2ea0cff
0
roles/tandoor
237
[ "no_license" ]
[ { "path": "roles/tandoor/defaults/main.yml", "content": "---\ntandoor_enabled: false\ntandoor_available_externally: false\ntandoor_container_name: recipes\ntandoor_container_store: vabene1111\ntandoor_config_directory: \"{{ docker_app_data }}/tandoor\"\ntandoor_version: 1.0.4.1\ntandoor_port_http: 8111\ntan...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 8796, "all_permissive": false }
ansible_role
mmatokovic/vagrant-zagrabi
159aab5c0c93494ab864a9a55f46f3f2ea6b3c54
0
ansible/roles/nginx
237
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx\n apt:\n name: nginx\n state: present\n\n- name: copy nginx config for zagrabi\n copy:\n src: /ansible/assets/zagrabi.nginx\n dest: /etc/nginx/sites-available/zagrabi.nginx\n\n- name: Create symbolic link fo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 773, "all_permissive": false }
ansible_role
stellar-fox/ansible-playbooks
3c2f7833bc7e51ba6161e60be44a215f0c0bd4ce
0
api.docs.deploy/inventories/production/roles/web
237
[ "no_license" ]
[ { "path": "api.docs.deploy/inventories/production/roles/web/tasks/local_build.yml", "content": "---\n# These tasks are responsible for building the latest production API\n# documentation from the version control system. This is done locally.\n\n- name: Clone repository tag.\n git:\n repo: \"{{ repositor...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 625, "all_permissive": false }
ansible_role
stellar-fox/ansible-playbooks
3c2f7833bc7e51ba6161e60be44a215f0c0bd4ce
0
cygnus.deploy/inventories/production/roles/web
237
[ "no_license" ]
[ { "path": "cygnus.deploy/inventories/production/roles/web/tasks/remote_deploy.yml", "content": "---\n# These tasks are responsible deploying build directory to the remote server.\n\n- name: SCP tarball to the server.\n copy:\n src: \"{{ repository_destination }}/{{ tag }}.tar.gz\"\n dest: \"{{ remote...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1969, "all_permissive": false }
ansible_role
ilya-korotya/cicd
09a85148c915d40f854d4b75bb29b8e65c713b98
0
roles/docker
236
[ "no_license" ]
[ { "path": "roles/docker/tasks/setupDebian.yml", "content": "---\n- name: Delete old docker\n apt:\n name: \"{{ item }}\"\n state: absent\n loop:\n - docker \n - docker-engine\n - docker.io\n - containerd\n - runc\n- name: Add apt key Docker in Debian\n apt_key:\n url: https://down...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1954, "all_permissive": false }
ansible_role
ilya-korotya/cicd
09a85148c915d40f854d4b75bb29b8e65c713b98
0
roles/java
236
[ "no_license" ]
[ { "path": "roles/java/tasks/main.yml", "content": "---\n- name: Java package for Debian\n set_fact:\n java_version: openjdk-8-jdk \n when: ansible_facts['os_family'] == \"Debian\"\n- name: Java package for RedHat\n set_fact:\n java_version: java-1.8.0-openjdk\n when: ansible_facts['os_family'] == ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 362, "all_permissive": false }
ansible_role
ilya-korotya/cicd
09a85148c915d40f854d4b75bb29b8e65c713b98
0
roles/jenkins
236
[ "no_license" ]
[ { "path": "roles/jenkins/files/jenkins.env", "content": "# Env variables for configure Jenkins\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/jenkins/defaults/main.yml", "content": "---\njenkins_home_dir: /home/ec2-user\njenkins_cli_in...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 4760, "all_permissive": false }
ansible_role
ilya-korotya/cicd
09a85148c915d40f854d4b75bb29b8e65c713b98
0
roles/os
236
[ "no_license" ]
[ { "path": "roles/os/tasks/main.yml", "content": "---\n- name: Install software dependecy for RedHat\n block:\n - name: Install init scripts\n yum:\n name: initscripts\n state: present\n - name: Install epel-release\n yum:\n name: epel-release\n state: present\n when: \"{{ ansib...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 703, "all_permissive": false }
ansible_role
eduVirtTUL/eduVirt-ansible
c0aab1afe1df25e055f1b79019f4f640079b8ea0
0
roles/deploy_eduvirt
236
[ "no_license" ]
[ { "path": "roles/deploy_eduvirt/templates/environments/backend.env.j2", "content": "HOST={{ deploy_eduvirt_host }}\n\nMAIL_HOST={{ deploy_eduvirt_mail_host }}\nMAIL_PORT={{ deploy_eduvirt_mail_port }}\nMAIL_USERNAME={{ deploy_eduvirt_mail_username }}\nMAIL_PASSWORD={{ deploy_eduvirt_mail_password }}\nMAIL_S...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 21569, "all_permissive": false }
ansible_role
eduVirtTUL/eduVirt-ansible
c0aab1afe1df25e055f1b79019f4f640079b8ea0
0
roles/keycloak_configured
236
[ "no_license" ]
[ { "path": "roles/keycloak_configured/meta/argument_specs.yaml", "content": "argument_specs:\n main:\n short_description: Role for configuring the keycloak instance for ovirt.\n description:\n - Role for configuring the keycloak instance for ovirt.\n - >\n Creates a internal keycloak ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 14508, "all_permissive": false }