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
achang140/ACIT_4640_Notes
38cc8b7340f73bd9681357bea5b96a1b18250095
0
starter_code/ansible_terraform_role/ansible/roles/terraform_be_infra
7,826
[ "no_license" ]
[ { "path": "starter_code/ansible_terraform_role/ansible/roles/terraform_be_infra/vars/main.yml", "content": "---\r\n# vars file for terraform_be_infra\r\n# Matches dynamic inventory plugin configuration where the tag Project is used to create groups\r\n# prefixed with \"project_\".\r\n# Ony updates hosts in ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2870, "all_permissive": false }
ansible_role
mastabojo/home-control-ansible
8d1cbeec87c01a73d9f1ccd3731ca974cec96516
0
roles/apache
7,826
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n\n- name: Install Apache\n apt: \n name: apache2\n update_cache: yes\n state: latest\n\n\n- name: Set site conf file\n template:\n src: \"{{ app_name }}.conf.j2\"\n dest: \"/etc/apache2/sites-available/{{ app_name }}.conf\"\n tags: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1150, "all_permissive": false }
ansible_role
mastabojo/home-control-ansible
8d1cbeec87c01a73d9f1ccd3731ca974cec96516
0
roles/chromium
7,826
[ "no_license" ]
[ { "path": "roles/chromium/tasks/main.yml", "content": "---\n\n# Install Chromium\n- name: Install Chromium\n apt: \n name: chromium\n update_cache: yes\n state: latest\n\n# Setup Chromium to start in kiosk mode\n- name: Create Chromium autostart file\n copy: \n dest: \"home/pi/.config/autostar...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 784, "all_permissive": false }
ansible_role
mastabojo/home-control-ansible
8d1cbeec87c01a73d9f1ccd3731ca974cec96516
0
roles/cron
7,826
[ "no_license" ]
[ { "path": "roles/cron/tasks/main.yml", "content": "---\n\n### --\n### -- Cron jobs as pi\n### --\n\n# Get weather data\n- name: Weather data\n cron: \n name: \"Get weather data\"\n minute: \"5,35\"\n job: \"/usr/bin/php {{ app_jobs_dir }}getweatherdata.php\"\n user: pi\n\n# Get weather forecast...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1934, "all_permissive": false }
ansible_role
mastabojo/home-control-ansible
8d1cbeec87c01a73d9f1ccd3731ca974cec96516
0
roles/mysql
7,826
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n\n# Install mysql\n- name: Install Mysql\n apt:\n state: latest\n name:\n - mariadb-server\n # - mysql-client\n tags: mysql\n\n# Set the root password if not set\n- name: Set the root password\n community.mysql.mysql_user:\n name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 671, "all_permissive": false }
ansible_role
mastabojo/home-control-ansible
8d1cbeec87c01a73d9f1ccd3731ca974cec96516
0
roles/php
7,826
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n\n# Install PHP and modules\n# https://www.raspberrypi.org/documentation/remote-access/web-server/apache.md\n# https://pimylifeup.com/raspberry-pi-apache/\n\n# sudo apt install php\n# sudo apt install libapache2-mod-php{{ php_version }} php{{ php_versio...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 689, "all_permissive": false }
ansible_role
mastabojo/home-control-ansible
8d1cbeec87c01a73d9f1ccd3731ca974cec96516
0
roles/setup
7,826
[ "no_license" ]
[ { "path": "roles/setup/tasks/main.yml", "content": "---\n\n# Change default password for user pi\n- name: Change default password for user pi\n ansible.builtin.user:\n name: pi\n update_password: always\n password: \"{{ <PASSWORD>pass | password_hash('<PASSWORD>') }}\"\n\n# Make sudo require a pas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 991, "all_permissive": false }
ansible_role
mastabojo/home-control-ansible
8d1cbeec87c01a73d9f1ccd3731ca974cec96516
0
roles/ufw
7,826
[ "no_license" ]
[ { "path": "roles/ufw/tasks/main.yml", "content": "---\n\n# Install UFW\n# https://www.raspberrypi.org/documentation/configuration/security.md\n#\n\n- name: Install UFW\n become: yes\n apt: \n name: ufw\n update_cache: yes\n state: latest\n\n- name: Allow needed ports\n community.general.ufw:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 385, "all_permissive": false }
ansible_role
DO1JLR/ansible_weechat_setup
ff2ead6c90ed4eb5e1b1600d54585d32369442ae
0
roles/weechat-matrix-setup
7,826
[ "no_license" ]
[ { "path": "roles/weechat-matrix-setup/tasks/main.yml", "content": "---\n- name: fail if not debian sid\n fail:\n msg: \"This role is only compatible with Debian Buster. Sorry :-/\"\n when:\n - ansible_distribution != 'Debian' and ansible_distribution_release != 'sid'\n#--\n- name: combine weechat var...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1551, "all_permissive": false }
ansible_role
ansible-ops-org/gcp-ts-ansible
b80b83ab517abbb629e2ee5579d816a896394086
0
v.0.1/playbooks/generic-playbooks/roles/JRE-MAVEN-PROVISION
7,826
[ "no_license" ]
[ { "path": "v.0.1/playbooks/generic-playbooks/roles/JRE-MAVEN-PROVISION/tasks/jre-provision.yml", "content": "---\n#...........................................\n- name: CREATE TAR REPO\n file:\n name: \"{{ tar_repo }}\"\n state: directory\n#............................................\n\n- stat: pa...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2130, "all_permissive": false }
ansible_role
ansible-ops-org/gcp-ts-ansible
b80b83ab517abbb629e2ee5579d816a896394086
0
v.0.1/playbooks/infra-provision-playbooks/roles/INFRA-DESTROY
7,826
[ "no_license" ]
[ { "path": "v.0.1/playbooks/infra-provision-playbooks/roles/INFRA-DESTROY/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - INFRA-PROVISION", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "v.0.1/playbooks/infr...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 277, "all_permissive": false }
ansible_role
ansible-ops-org/gcp-ts-ansible
b80b83ab517abbb629e2ee5579d816a896394086
0
v.0.1/playbooks/infra-provision-playbooks/roles/INFRA-PROVISION
7,826
[ "no_license" ]
[ { "path": "v.0.1/playbooks/infra-provision-playbooks/roles/INFRA-PROVISION/handlers/main.yml", "content": "---\n# handlers file for INFRA-PROVISION", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "v.0.1/playbooks/infra-provision-playbooks/roles/INFR...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 708, "all_permissive": false }
ansible_role
ansible-ops-org/gcp-ts-ansible
b80b83ab517abbb629e2ee5579d816a896394086
0
v.0.1/playbooks/nginx-public-provision-playbooks/roles/NGINX-PROVISION
7,826
[ "no_license" ]
[ { "path": "v.0.1/playbooks/nginx-public-provision-playbooks/roles/NGINX-PROVISION/tasks/nginx-provision.yml", "content": "---\n- name: CREATION OF VIRTUAL HOST CONFIG\n file: \n path: \"{{ nginx_vhost_dir }}\"\n state: directory\n\n- name: DEPLOY NGINX CONFIG TEMPLATE\n template: \n src: \"{{ ng...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 731, "all_permissive": false }
ansible_role
ansible-ops-org/gcp-ts-ansible
b80b83ab517abbb629e2ee5579d816a896394086
0
v.0.1/playbooks/tomcat-private-provision-playbooks/roles/APP-DEPLOYMENT
7,826
[ "no_license" ]
[ { "path": "v.0.1/playbooks/tomcat-private-provision-playbooks/roles/APP-DEPLOYMENT/vars/main.yml", "content": "---\n# vars file for APP-DEPLOYMENT\n\n\ngit_repo: \"https://github.com/nik786/hello-tomcat-project-2.git\"\ngit_dest: \"/opt/apps/helo\"\nbranch: \"master\"\nprofile_path: \"/etc/profile\"\nmvn_cl...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 621, "all_permissive": false }
ansible_role
ansible-ops-org/gcp-ts-ansible
b80b83ab517abbb629e2ee5579d816a896394086
0
v.0.2/playbooks/generic-playbooks/roles/HANDLER
7,826
[ "no_license" ]
[ { "path": "v.0.2/playbooks/generic-playbooks/roles/HANDLER/tasks/main.yml", "content": "---\n# tasks file for HANDLER", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "v.0.2/playbooks/generic-playbooks/roles/HANDLER/tasks/handler.yml", "content":...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 229, "all_permissive": false }
ansible_role
ansible-ops-org/gcp-ts-ansible
b80b83ab517abbb629e2ee5579d816a896394086
0
v.0.2/playbooks/infra-provision-playbooks/roles/INFRA-PROVISION
7,826
[ "no_license" ]
[ { "path": "v.0.2/playbooks/infra-provision-playbooks/roles/INFRA-PROVISION/tasks/main.yml", "content": "---\n# tasks file for INFRA-PROVISION\n- import_tasks: infra-provision.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "v.0.2/playbooks/inf...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 112, "all_permissive": false }
ansible_role
ansible-ops-org/gcp-ts-ansible
b80b83ab517abbb629e2ee5579d816a896394086
0
v.0.2/playbooks/tomcat-private-provision-playbooks/roles/TOMCAT-PROVISION
7,826
[ "no_license" ]
[ { "path": "v.0.2/playbooks/tomcat-private-provision-playbooks/roles/TOMCAT-PROVISION/tasks/tomcat-provision.yml", "content": "---\n#............................................\n- name: CREATE DIRECTORIES\n file:\n path: \"{{ item }}\"\n state: directory\n \n with_items:\n - /opt/tars\n - /...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2507, "all_permissive": false }
ansible_role
SimonMachadoCPE/devops-sitot
0e0dd5294a9c28dba5b1852f8438be9c8d8e2f0b
0
TP3/ansible/roles/app
7,826
[ "no_license" ]
[ { "path": "TP3/ansible/roles/app/tasks/main.yml", "content": "---\n# tasks file for roles/app\n\n - name: Create backend container and connect to network\n docker_container:\n name: backend\n image: simonmachadocpe/backend\n networks:\n - name: app-network\n ports:\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 246, "all_permissive": false }
ansible_role
SimonMachadoCPE/devops-sitot
0e0dd5294a9c28dba5b1852f8438be9c8d8e2f0b
0
TP3/ansible/roles/database
7,826
[ "no_license" ]
[ { "path": "TP3/ansible/roles/database/tasks/main.yml", "content": "---\n# tasks file for roles/database\n\n - name: Create db container and connect to network\n docker_container:\n name: database\n image: simonmachadocpe/database\n networks:\n - name: app-network\n env :\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 312, "all_permissive": false }
ansible_role
SimonMachadoCPE/devops-sitot
0e0dd5294a9c28dba5b1852f8438be9c8d8e2f0b
0
TP3/ansible/roles/proxy
7,826
[ "no_license" ]
[ { "path": "TP3/ansible/roles/proxy/tasks/main.yml", "content": "---\n# tasks file for roles/proxy\n\n - name: Create proxy container and connect to network\n docker_container:\n name: httpd\n image: simonmachadocpe/httpd\n networks:\n - name: app-network\n ports: \n - 8...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 245, "all_permissive": false }
ansible_role
do-community/do-blueprint-nodeapp
d005e3f9a8a5c437a38a2f2ffc990e6132060b4a
9
roles/nginx
7,831
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n\n- include_vars: \"{{ item }}\"\n with_first_found:\n - \"../vars/{{ ansible_os_family }}.yml\"\n - \"../vars/empty.yml\"\n tags: [always]\n\n- import_tasks: selinux.yml\n when: ansible_selinux and ansible_selinux.status == \"enabled\"\n ta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1260, "all_permissive": false }
ansible_role
do-community/do-blueprint-nodeapp
d005e3f9a8a5c437a38a2f2ffc990e6132060b4a
9
roles/runstarterapp
7,831
[ "no_license" ]
[ { "path": "roles/runstarterapp/meta/main.yml", "content": "galaxy_info:\n author: DigitalOcean Community\n description: Role to start the node.js blueprint app\n company: DigitalOcean\n license: MIT\n min_ansible_version: 2.4\n platforms:\n - name: Ubuntu\n versions:\n - 16.04\n galaxy...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 4524, "all_permissive": false }
ansible_role
mjhermanson/ansible
24a0b666a6ea0bb8f29964d7c154ddd2adf09198
0
roles/common
7,831
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: \"print inventory hostname and uuid\"\n debug:\n msg: \"System {{ inventory_hostname }} has uuid {{ ansible_product_uuid }}\"\n\n- name: Configure SSH\n template:\n src: templates/sshd_config\n dest: /etc/ssh/sshd_config\n owner...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 441, "all_permissive": false }
ansible_role
mjhermanson/ansible
24a0b666a6ea0bb8f29964d7c154ddd2adf09198
0
roles/databases
7,831
[ "no_license" ]
[ { "path": "roles/databases/tasks/main.yml", "content": "---\n- name: Ensure DATABASE is in MOTD \n lineinfile:\n path: /etc/ansible/roles.txt\n create: yes\n line: 'ROLE: database'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 130, "all_permissive": false }
ansible_role
mjhermanson/ansible
24a0b666a6ea0bb8f29964d7c154ddd2adf09198
0
roles/linux:webserver
7,831
[ "no_license" ]
[ { "path": "roles/linux:webserver/defaults/main.yml", "content": "---\n# defaults file for linux:webserver", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "roles/linux:webserver/handlers/main.yml", "content": "---\n# handlers file for linux:webse...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 381, "all_permissive": false }
ansible_role
mjhermanson/ansible
24a0b666a6ea0bb8f29964d7c154ddd2adf09198
0
roles/webservers
7,831
[ "no_license" ]
[ { "path": "roles/webservers/tasks/main.yml", "content": "---\n- name: Ensure WEBSERVER is in roles.txt\n lineinfile:\n path: /etc/ansible/roles.txt\n line: 'ROLE: webserver'\n create: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 136 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 136, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/jackett
7,831
[ "no_license" ]
[ { "path": "roles/jackett/tasks/main.yaml", "content": "- name: Install Jackett dependencies\n ansible.builtin.apt: \n name: \"{{ item }}\"\n state: latest\n autoclean: yes\n autoremove: yes\n update_cache: yes\n with_items:\n - gnupg\n - ca-certificates\n\n- name: Add Mono apt key fro...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 5169, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/lidarr
7,831
[ "no_license" ]
[ { "path": "roles/lidarr/templates/lidarr.service.j2", "content": "[Unit]\nDescription=Lidarr Daemon\nAfter=syslog.target network.target\n\n[Service]\nUser={{ PVR_UID }}\nGroup={{ PVR_GID }}\nType=simple\n\nExecStart=/opt/lidarr/Lidarr -nobrowser -data=/home/{{ PVR_USERNAME }}/.config/lidarr\nTimeoutStopSec=...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2186, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/nfs
7,831
[ "no_license" ]
[ { "path": "roles/nfs/tasks/main.yaml", "content": "- name: Install nfs-common\n ansible.builtin.apt: \n name: ['nfs-common']\n state: latest\n autoclean: yes\n autoremove: yes\n\n- name: Create mount path\n ansible.builtin.file:\n path: \"{{ item }}\"\n state: directory\n owner: nobod...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 621, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/nginx
7,831
[ "no_license" ]
[ { "path": "roles/nginx/templates/pvr.conf.j2", "content": "server {\n listen 80;\n server_name pvr.home;\n\n # Heimdall Reverse Proxy\n location / {\n try_files $uri $uri:7889/ /index.php?$query_string;\n # proxy_pass http://127.0.0.1:7889;\n # proxy_set_header Host $host;\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 6033, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/openvpn
7,831
[ "no_license" ]
[ { "path": "roles/openvpn/tasks/main.yaml", "content": "- name: Install OpenVPN and Unzip packages\n ansible.builtin.apt: \n name: \"{{ item }}\"\n state: latest\n autoclean: yes\n autoremove: yes\n with_items:\n - openvpn\n - unzip\n\n- name: Create Downloads folder\n ansible.builtin.fi...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2447, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/prerequisites
7,831
[ "no_license" ]
[ { "path": "roles/prerequisites/tasks/config.yaml", "content": "- name: Set time zone for server\n community.general.timezone:\n name: \"{{ TZ }}\"\n\n- name: \"Set hostname {{ hostname }} in /etc/hostname\"\n ansible.builtin.hostname:\n name: \"{{ hostname }}\"\n notify: server reboot\n \n- name...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 4347, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/prowlarr
7,831
[ "no_license" ]
[ { "path": "roles/prowlarr/tasks/main.yaml", "content": "- name: Install Prowlarr dependencies\n ansible.builtin.apt: \n name: \"{{ item }}\"\n state: latest\n autoclean: yes\n autoremove: yes\n update_cache: yes\n with_items:\n - curl\n - sqlite3\n\n- name: Add Mono apt key from keyse...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2352, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/radarr
7,831
[ "no_license" ]
[ { "path": "roles/radarr/tasks/main.yaml", "content": "- name: Install Radarr dependencies\n ansible.builtin.apt: \n name: \"{{ item }}\"\n state: latest\n autoclean: yes\n autoremove: yes\n update_cache: yes\n with_items:\n - gnupg\n - ca-certificates\n\n- name: Add Mono apt key from ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2244, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/readarr
7,831
[ "no_license" ]
[ { "path": "roles/readarr/templates/readarr.service.j2", "content": "[Unit]\nDescription=Readarr Daemon\nAfter=syslog.target network.target\n\n[Service]\nUser={{ PVR_UID }}\nGroup={{ PVR_GID }}\nType=simple\n\nExecStart=/opt/readarr/Readarr -nobrowser -data=/home/{{ PVR_USERNAME }}/.config/readarr\nTimeoutSt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2182, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/sonarr
7,831
[ "no_license" ]
[ { "path": "roles/sonarr/templates/sonarr.service.j2", "content": "[Unit]\nDescription=Sonarr Daemon\nAfter=network.target\n\n[Service]\nUser={{ PVR_UID }}\nGroup={{ PVR_GID }}\nUMask=0002\n\nType=simple\nExecStart=/usr/bin/mono --debug /usr/lib/sonarr/bin/Sonarr.exe -nobrowser -data=/home/{{ PVR_USERNAME }}...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2349, "all_permissive": false }
ansible_role
BarneyBuffet/ansible-pvr
31733f2b84e6238eaaa691349323db4dc829a2cd
1
roles/transmission
7,831
[ "no_license" ]
[ { "path": "roles/transmission/templates/run-as-user.conf.j2", "content": "[Service]\nUser={{ PVR_UID }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 29 }, { "path": "roles/transmission/handlers/main.yaml", "content": "- name: transmission reload\n service...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 18568, "all_permissive": false }
ansible_role
jknedlik/example_ansible
1e15384bbf7dd460b0903b13d0a04a248fb49fee
0
roles/common
7,831
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: create test file\n copy:\n src: test \n dest: /home/jknedlik/test.test\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 87 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 87, "all_permissive": false }
ansible_role
mxchn4/ansible-aws-mongodb-shard
c2bbe992d50e46a7d61949ffd1002669229085f3
0
roles/mongoshard
7,831
[ "no_license" ]
[ { "path": "roles/mongoshard/templates/shardstack.yml", "content": "version: \"3\"\r\nservices:\r\n\r\n {{ mongoc1 }}:\r\n image: mongo\r\n networks:\r\n - backend\r\n deploy:\r\n placement:\r\n constraints: [node.role == manager]\r\n command: mongod --configsvr --replSet rc\r\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3064, "all_permissive": false }
ansible_role
geoffrey1330/mern_ecomm
0542f1c7ade0aadfb283d1d3bcadcc22e2c3c60d
1
.circleci/ansible/roles/deploy
7,831
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "---\n- name: \"Update apt packages\"\n become: true\n apt:\n update_cache: \"yes\"\n\n- name: \"Upgrade apt packages\"\n become: true\n apt:\n upgrade: \"yes\"\n\n# - name: Install the gpg key for nodejs LTS\n# apt_key:\n# ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1820, "all_permissive": false }
ansible_role
Finfra/hadoopInstall
ca488048a693c839ba7ffa730e65c823333e98d5
1
df/i1/ansible-hadoop/roles/hadoop
7,831
[ "no_license" ]
[ { "path": "df/i1/ansible-hadoop/roles/hadoop/templates/yarn-site.xml.j2", "content": "<configuration>\n <!-- ResourceManager 호스트명 설정 -->\n <property>\n <name>yarn.resourcemanager.hostname</name>\n <value>s1</value>\n </property>\n <property>\n <name>yarn.nodemanager.aux-serv...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 11116, "all_permissive": false }
ansible_role
Finfra/hadoopInstall
ca488048a693c839ba7ffa730e65c823333e98d5
1
df/i1/ansible-kafka/roles/kafka
7,831
[ "no_license" ]
[ { "path": "df/i1/ansible-kafka/roles/kafka/tasks/start_zookeeper.yml", "content": "- name: Start Zookeeper service\n hosts: consumer # Ensure the play is targeting the correct hosts (or specify a specific group)\n become: yes # Ensures you have the necessary privileges to start the service\n tasks:\n ...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 2928, "all_permissive": false }
ansible_role
Finfra/hadoopInstall
ca488048a693c839ba7ffa730e65c823333e98d5
1
df/i1/ansible-spark/roles/spark
7,831
[ "no_license" ]
[ { "path": "df/i1/ansible-spark/roles/spark/templates/spark-env.sh.j2", "content": "# Spark environment settings\nexport JAVA_HOME=/usr/lib/jvm/java-17-openjdk-17.0.13.0.11-4.0.1.el9.aarch64/\nexport HADOOP_CONF_DIR=/usr/local/hadoop/etc/hadoop\nexport SPARK_HOME=/usr/local/spark\nexport PATH=$SPARK_HOME/bin...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 2619, "all_permissive": false }
ansible_role
Finfra/hadoopInstall
ca488048a693c839ba7ffa730e65c823333e98d5
1
df/i1/ansible-zookeeper/roles/zookeeper
7,831
[ "no_license" ]
[ { "path": "df/i1/ansible-zookeeper/roles/zookeeper/tasks/main.yml", "content": "- name: Install dependencies\n ansible.builtin.yum:\n name:\n - java-11-openjdk\n - wget\n - tar\n state: latest\n\n- name: Extract ZooKeeper binary\n ansible.builtin.unarchive:\n src: \"/tmp/zookeeper....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 630, "all_permissive": false }
ansible_role
ngueagho/wordpress_website_deploy
b47a2cd50fb0e8768c73296af35aefc983b503f7
1
roles/apache
7,831
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n- name: Installer Apache et Certbot\n apt:\n name:\n - apache2\n - certbot\n - python3-certbot-apache\n state: present\n update_cache: yes\n\n- name: Activer les modules Apache nécessaires\n shell: |...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1420, "all_permissive": false }
ansible_role
ngueagho/wordpress_website_deploy
b47a2cd50fb0e8768c73296af35aefc983b503f7
1
roles/delete-all
7,831
[ "no_license" ]
[ { "path": "roles/delete-all/handlers/main.yml", "content": "---\n# handlers file for delete-all\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/delete-all/vars/main.yml", "content": "---\n# vars file for delete-all\n", "license_type...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1842, "all_permissive": false }
ansible_role
ngueagho/wordpress_website_deploy
b47a2cd50fb0e8768c73296af35aefc983b503f7
1
roles/wordpress
7,831
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "---\n\n# tasks file for wordpress\n\n- name: Créer les dossiers pour chaque site\n file:\n path: \"/opt/wordpress/{{ item }}\"\n state: directory\n loop: \"{{ wordpress_sites }}\"\n\n\n- name: Générer les fichiers Docker Compose\n template:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2156, "all_permissive": false }
ansible_role
itzikb/openstack
6d4994caf6c00ab17cb6be9e4862af747c0ede23
0
roles/image
7,830
[ "permissive" ]
[ { "path": "roles/image/tasks/create_image.yml", "content": "- name: Get an image\n get_url:\n url: \"{{ image_url }}\"\n dest: \"{{ image_path }}\"\n\n- name: Allow root access\n shell: \"virt-edit -a {{ image_path }} -e 's/^disable_root: 1/disable_root: 0/' /etc/cloud/cloud.cfg\"\n\n- name: Allow r...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 917, "all_permissive": true }
ansible_role
itzikb/openstack
6d4994caf6c00ab17cb6be9e4862af747c0ede23
0
roles/ipv6
7,830
[ "permissive" ]
[ { "path": "roles/ipv6/tasks/create_server.yml", "content": "- block:\n - name: Create a keypair\n openstack.cloud.keypair:\n cloud: \"{{ cloud }}\"\n state: present\n name: ansible_key\n public_key_file: \"{{ public_key }}\"\n\n - name: \"Create a {{ flavor_name }} fla...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 6839, "all_permissive": true }
ansible_role
GfavourBraimah/Automated-Infrastructure-Deployment-with-Terraform-and-Ansible
c0a615f9f13b04b045a7623548ea0b6a6cd73a53
0
roles/debian
7,830
[ "no_license" ]
[ { "path": "roles/debian/tasks/ debain12.yml", "content": "- name: Set timezone\r\n timezone:\r\n name: Africa/Lagos\r\n\r\n- name: Update The Apt Repository\r\n apt:\r\n update_cache: yes\r\n\r\n- name: Install Apache2\r\n apt:\r\n name: apache2\r\n state: present\r\n\r\n- name: Start The Apa...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 6752, "all_permissive": false }
ansible_role
GfavourBraimah/Automated-Infrastructure-Deployment-with-Terraform-and-Ansible
c0a615f9f13b04b045a7623548ea0b6a6cd73a53
0
roles/ubuntu
7,830
[ "no_license" ]
[ { "path": "roles/ubuntu/tasks/main.yml", "content": "- name: Ubuntu 20.04 Web Server Configuring\r\n import_tasks: ubuntu20.04.yml\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 78, "all_permissive": false }
ansible_role
jenifaelle/config
de5cad37f5c13d21bda41e3ae3cae50146df413d
1
ansible/roles/awesome
7,830
[ "no_license" ]
[ { "path": "ansible/roles/awesome/defaults/main.yml", "content": "awesome_config: \"~/.config/awesome\"\nawesome_theme: \"{{awesome_config}}/themes/default\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 87 }, { "path": "ansible/roles/awesome/tasks/main.yml", ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 733, "all_permissive": false }
ansible_role
jenifaelle/config
de5cad37f5c13d21bda41e3ae3cae50146df413d
1
ansible/roles/backup
7,830
[ "no_license" ]
[ { "path": "ansible/roles/backup/tasks/main.yml", "content": "---\n- name: activation backup\n cron:\n state: present\n job: \"~/scripts/backup\"\n minute: 5\n when: backup\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 114 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 114, "all_permissive": false }
ansible_role
jenifaelle/config
de5cad37f5c13d21bda41e3ae3cae50146df413d
1
ansible/roles/drivesync
7,830
[ "no_license" ]
[ { "path": "ansible/roles/drivesync/files/drivesync", "content": "#!/usr/bin/bash\n\n/home/jenifael/.rbenv/shims/ruby /opt/drivesync/drivesync.rb $1\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 }, { "path": "ansible/roles/drivesync/files/drivesync.yml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 3432, "all_permissive": false }
ansible_role
jenifaelle/config
de5cad37f5c13d21bda41e3ae3cae50146df413d
1
ansible/roles/editor
7,830
[ "no_license" ]
[ { "path": "ansible/roles/editor/files/nvim/init.vim", "content": "\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\" Plugin configurations (plug.vim)\n\ncall plug#begin('~/.config/nvim/plugged')\n...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 10, "total_bytes": 16688, "all_permissive": false }
ansible_role
jenifaelle/config
de5cad37f5c13d21bda41e3ae3cae50146df413d
1
ansible/roles/i3
7,830
[ "no_license" ]
[ { "path": "ansible/roles/i3/tasks/main.yml", "content": "---\n- name: installing i3\n pacman:\n name: i3-wm\n state: present\n become: true\n\n- name: install i3status\n pacman:\n name: i3status\n state: present\n become: true\n\n- name: install py3status\n pacman:\n name: py3status\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 888, "all_permissive": false }
ansible_role
jenifaelle/config
de5cad37f5c13d21bda41e3ae3cae50146df413d
1
ansible/roles/scripts
7,830
[ "no_license" ]
[ { "path": "ansible/roles/scripts/files/backup", "content": "#!/bin/bash\nbackup_path=\"/opt/backup\"\nrepo_path=\"$backup_path/jenifael\"\ncurrent_date=$(date '+%Y-%m-%d-%H%M')\nuuid=\"07af5634-144a-446f-a4e9-aba2cd71a9db\"\n\nmkdir $backup_path\nmount UUID=$uuid $backup_path\n\ncd /home/jenifael\nborg crea...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 563, "all_permissive": false }
ansible_role
jenifaelle/config
de5cad37f5c13d21bda41e3ae3cae50146df413d
1
ansible/roles/ssh
7,830
[ "no_license" ]
[ { "path": "ansible/roles/ssh/tasks/main.yml", "content": "---\n- name: Install openssh\n community.general.pacman:\n name: openssh\n become: yes\n\n- name: Ensure user systemd directory exists\n ansible.builtin.file:\n path: \"~/.config/systemd\"\n state: directory\n\n- name: Ensure user systemd...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 708, "all_permissive": false }
ansible_role
jenifaelle/config
de5cad37f5c13d21bda41e3ae3cae50146df413d
1
ansible/roles/sway
7,830
[ "no_license" ]
[ { "path": "ansible/roles/sway/defaults/main.yml", "content": "---\nsway_deps:\n - sway\n - swaylock\n - grim\n - slurp\n - wl-clipboard\n - brightnessctl\n - i3status\n - py3status\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 }, { "path": "ansibl...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2304, "all_permissive": false }
ansible_role
jenifaelle/config
de5cad37f5c13d21bda41e3ae3cae50146df413d
1
ansible/roles/utilities
7,830
[ "no_license" ]
[ { "path": "ansible/roles/utilities/tasks/main.yml", "content": "---\n- include_tasks: dependencies.yml\n\n- name: create shares group\n group:\n name: shares\n state: present\n become: yes\n\n- name: create wheel group\n group:\n name: wheel\n state: present\n become: yes\n\n- name: create s...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 13, "total_bytes": 9341, "all_permissive": false }
ansible_role
jenifaelle/config
de5cad37f5c13d21bda41e3ae3cae50146df413d
1
ansible/roles/xorg
7,830
[ "no_license" ]
[ { "path": "ansible/roles/xorg/files/brightness", "content": "#!/usr/bin/python\nimport argparse\nimport os\nimport subprocess\nimport sys\n\n\ndef main(args):\n display = args.display\n print(\"Will set brightness for: {}\".format(display))\n brightness_level = 0.5 # sane default\n\n if not (ar...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3094, "all_permissive": false }
ansible_role
chalkan3/pulumi-ansible-chef-nodes
fd8b17eb7ccc5c281a9a18725d717ad213a5179a
0
ansible/pulumi/chef/roles/knife
7,830
[ "no_license" ]
[ { "path": "ansible/pulumi/chef/roles/knife/tasks/fetch_credentials.yml", "content": "---\n\n- name: fetch-client-name-from-server\n ansible.builtin.fetch:\n src: \"/chef/resources/users/{{ chef_client_name}}.pem\"\n dest: \"/tmp/{{ chef_client_name }}.pem\"\n flat: true\n delegate_to: \"{{ chef_s...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 1469, "all_permissive": false }
ansible_role
chalkan3/pulumi-ansible-chef-nodes
fd8b17eb7ccc5c281a9a18725d717ad213a5179a
0
ansible/pulumi/chef/roles/node
7,830
[ "no_license" ]
[ { "path": "ansible/pulumi/chef/roles/node/templates/node.js.j2", "content": "{\n \"name\": \"{{ chef_node_name }}\",\n \"run_list\": [\n {% for run_list_item in node_run_list %}\n \"{{ run_list_item }}\"{{ \",\" if not loop.last }}\n {% endfor %}\n ]\n}\n", "license_type": "no_license", ...
{ "task_files": 11, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 14, "total_bytes": 2961, "all_permissive": false }
ansible_role
chalkan3/pulumi-ansible-chef-nodes
fd8b17eb7ccc5c281a9a18725d717ad213a5179a
0
ansible/pulumi/chef/roles/server
7,830
[ "no_license" ]
[ { "path": "ansible/pulumi/chef/roles/server/tasks/chef_server_create_organization.yml", "content": "---\n- name: chef-server-create-organization\n ansible.builtin.command:\n cmd: chef-server-ctl org-create main-org main-org organization --association_user root --filename /chef/resources/organizations/ma...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 1386, "all_permissive": false }
ansible_role
tomwilkie/ansible-kubernetes
598e97b40b419b13bee1d75a9892ef14a8163d60
0
roles/bootstrap
7,830
[ "permissive" ]
[ { "path": "roles/bootstrap/tasks/main.yaml", "content": "---\n- name: install ansible prerequisites\n script: ansible_prereqs.sh creates=/root/.ansible_prereqs_installed\n register: ans_preq\n changed_when: \"'CHANGE' in ans_preq.stdout\"\n", "license_type": "permissive", "detected_licenses": [ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 179, "all_permissive": true }
ansible_role
tomwilkie/ansible-kubernetes
598e97b40b419b13bee1d75a9892ef14a8163d60
0
roles/disk
7,830
[ "permissive" ]
[ { "path": "roles/disk/tasks/main.yaml", "content": "---\n- name: remove existing mount for /dev/xvdb\n mount:\n name: /mnt\n src: /dev/xvdb\n state: absent\n fstype: ext4\n\n- name: figure out which disks we have attached\n set_fact: ephemeral_devices=\"{{ ansible_devices.keys() | reject('equa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 960, "all_permissive": true }
ansible_role
tomwilkie/ansible-kubernetes
598e97b40b419b13bee1d75a9892ef14a8163d60
0
roles/docker
7,830
[ "permissive" ]
[ { "path": "roles/docker/handlers/main.yaml", "content": "---\n# See https://github.com/kubernetes/kubernetes/issues/33789\n- name: up cbr0\n become: true\n command: /bin/sh -c \"( ifdown cbr0 || true ) && ifup cbr0\"\n\n- name: docker reload\n become: true\n command: systemctl daemon-reload\n\n- name: d...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1328, "all_permissive": true }
ansible_role
tomwilkie/ansible-kubernetes
598e97b40b419b13bee1d75a9892ef14a8163d60
0
roles/kubelet
7,830
[ "permissive" ]
[ { "path": "roles/kubelet/tasks/main.yaml", "content": "---\n- name: install kubernetes apt key\n apt_key:\n state: present\n data: \"{{ lookup('file', 'weaveworks-apt-signing.key') }}\"\n\n- name: remove old kubernetes repo\n apt_repository: repo='deb http://apt.kubernetes.io/ kubernetes-xenial main...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1904, "all_permissive": true }
ansible_role
tomwilkie/ansible-kubernetes
598e97b40b419b13bee1d75a9892ef14a8163d60
0
roles/kubernetes-master
7,830
[ "permissive" ]
[ { "path": "roles/kubernetes-master/templates/kube-controller-manager.yaml", "content": "---\nkind: Pod\napiVersion: v1\nmetadata:\n name: kube-controller-manager\n namespace: kube-system\n labels:\n name: kube-controller-manager\nspec:\n hostNetwork: true\n containers:\n - name: kube-controller-man...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 7029, "all_permissive": true }
ansible_role
tomwilkie/ansible-kubernetes
598e97b40b419b13bee1d75a9892ef14a8163d60
0
roles/kubernetes-minion
7,830
[ "permissive" ]
[ { "path": "roles/kubernetes-minion/templates/kube-proxy.yaml", "content": "---\napiVersion: v1\nkind: Pod\nmetadata:\n name: kube-proxy\n namespace: kube-system\n labels:\n tier: node\n component: kube-proxy\n ignore_on_drain: \"true\"\nspec:\n hostNetwork: true\n containers:\n - name: kube-p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1553, "all_permissive": true }
ansible_role
tomwilkie/ansible-kubernetes
598e97b40b419b13bee1d75a9892ef14a8163d60
0
roles/logrotate
7,830
[ "permissive" ]
[ { "path": "roles/logrotate/handlers/main.yaml", "content": "---\n- name: logrotate\n become: true\n command: /etc/cron.daily/logrotate\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 74 }, { "path": "roles/logrotate/tasks/main.yaml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 179, "all_permissive": true }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/ambari
7,830
[ "no_license" ]
[ { "path": "ansible/roles/ambari/tasks/main.yml", "content": "---\n\n- name: Add Ambari APT Repo\n apt_repository:\n repo: \"deb http://public-repo-1.hortonworks.com/ambari/ubuntu14/2.x/updates/2.2.1.0 Ambari main\"\n\n- name: Add APT Key\n apt_key:\n keyserver: \"keyserver.ubuntu.com\"\n id: \"B9...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 376, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/common
7,830
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n\n- name: Apt install required system packages.\n apt: name={{item}} update_cache=yes cache_valid_time=3600\n with_items:\n - git\n - curl\n - wget\n - logrotate\n - ntp\n\n- name: Configure ntp servers\n template: src=ntp.c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 314, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/confluent
7,830
[ "no_license" ]
[ { "path": "ansible/roles/confluent/tasks/install.yml", "content": "- file: path=/opt/src state=directory\n\n- file: path={{confluent_dir}} state=directory\n\n- name: Download confluent package\n get_url: url={{confluent_pkg_url}} dest=/opt/src/confluent-{{confluent_version}}.tar.gz\n\n- name: Unpack tarbal...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 596, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/druid
7,830
[ "no_license" ]
[ { "path": "ansible/roles/druid/templates/coordinator/runtime.properties.j2", "content": "#druid.host={{druid_coordinator_host}}\n#druid.port={{druid_coordinator_port}}\n#druid.service=coordinator\n\n# The coordinator begins assignment operations after the start delay.\n# We override the default here to star...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 15436, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/git
7,830
[ "no_license" ]
[ { "path": "ansible/roles/git/tasks/main.yml", "content": "---\n\n- name: Install apt package\n apt:\n name: \"{{ item }}\"\n update_cache: yes\n cache_valid_time: 3600\n with_items:\n - git", "license_type": "no_license", "detected_licenses": [], "size_bytes": 135 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 135, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/hadoop
7,830
[ "no_license" ]
[ { "path": "ansible/roles/hadoop/tasks/service.yml", "content": "---\n\n#- name: Create hadoop logs folder.\n# file: path={{hadoop_logs}} state=directory recurse=yes owner=hadoop group=hadoop\n\n#- name: Kafka Upstart script.\n# template: src=hadoop.conf dest=/etc/init/hadoop.conf\n\n#\n#- name: Start hado...
{ "task_files": 7, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 12, "total_bytes": 11467, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/hostname
7,830
[ "no_license" ]
[ { "path": "ansible/roles/hostname/tasks/main.yml", "content": "---\n\n- name: Test ansible_fqdn and inventory_hostname are equal\n assert:\n that: \"{{ ansible_fqdn == inventory_hostname }}\"\n failed_when: False\n changed_when: True\n register: matching_hostnames\n ignore_errors: yes\n\n- name: Ens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 355, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/kafka
7,830
[ "no_license" ]
[ { "path": "ansible/roles/kafka/defaults/main.yml", "content": "kafka_download: \"no\"\nkafka_version: \"0.10.0.1\"\nkafka_scala_version: \"2.11\"\nkafka_name: \"kafka_{{ kafka_scala_version }}-{{ kafka_version }}\"\nkafka_archive: \"{{ kafka_name }}.tgz\"\n#kafka_pkg_url: \"http://www.interior-dsgn.com/apac...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 4135, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/kafka_old
7,830
[ "no_license" ]
[ { "path": "ansible/roles/kafka_old/tasks/install.yml", "content": "- file: path=/opt/src state=directory\n\n- file: path={{kafka_dir}} state=directory\n\n- name: Download kafka package\n get_url: url={{kafka_pkg_url}} dest=/opt/src/kafka-{{kafka_version}}.tar.gz\n\n- name: Unpack tarball\n command: tar zx...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1616, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/maven3
7,830
[ "no_license" ]
[ { "path": "ansible/roles/maven3/tasks/main.yml", "content": "---\n\n- name: Remove maven repos\n apt:\n name: \"{{ item }}\"\n state: absent\n with_items:\n - maven\n - maven2\n - maven3\n\n- name: Add Maven3 apt repository\n apt_repository:\n repo: \"ppa:andrei-pozolotin/maven3\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 369, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/metabase
7,830
[ "no_license" ]
[ { "path": "ansible/roles/metabase/tasks/main.yml", "content": "---\n\n- name: Ensure Metabase dir present\n file:\n dest: \"{{ item.dest }}\"\n state: \"{{ item.state | default('directory') }}\"\n with_items:\n - dest: \"{{ metabase_dir }}\"\n - dest: \"{{ metabase_init_dir }}\"\n\n- name: Dow...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1109, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/openjdk-8
7,830
[ "no_license" ]
[ { "path": "ansible/roles/openjdk-8/tasks/main.yml", "content": "---\n\n- name: Add apt ppa\n apt_repository:\n repo: \"ppa:openjdk-r/ppa\"\n\n- name: Install apt package\n apt:\n name: openjdk-8-jdk\n update_cache: yes\n cache_valid_time: 3600\n\n- name: Ensure JAVA_HOME environment variable s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 731, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/oracle-java
7,830
[ "no_license" ]
[ { "path": "ansible/roles/oracle-java/tasks/main.yml", "content": "---\n\n- name: Install Java PPA repository\n apt_repository:\n repo: \"{{ item.repo }}\"\n update_cache: yes\n with_items:\n - repo: \"ppa:webupd8team/java\"\n #- repo: \"ppa:andrei-pozolotin/maven3\"\n #- repo: \"ppa:cwchien...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1042, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/tranquility
7,830
[ "no_license" ]
[ { "path": "ansible/roles/tranquility/templates/tranquility_kafka.conf.j2", "content": "\n# Tranquility Kafka Consumer Server\n\ndescription \"Druid Tranquility Kafka Consumer Server\"\n\nscript\nchdir {{tranquility_dir}}/tranquility-distribution-{{ tranquility_version }}\nexec ./bin/tranquility kafka -confi...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 5422, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/zookeeper
7,830
[ "no_license" ]
[ { "path": "ansible/roles/zookeeper/templates/zoo.cfg.j2", "content": "tickTime=2000\ndataDir={{zookeeper_data}}\ndataLogDir={{zookeeper_logs}}\nclientPort=2181\ninitLimit=5\nsyncLimit=2\n#maxClientCnxns=60\n\n{% for server in zookeeper_servers %}\nserver.{{loop.index}}={{server}}:2888:3888\n{% endfor %}\n",...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2589, "all_permissive": false }
ansible_role
chrisjalinsky/vagrant-ansible-hadoop-kafka-druid
20affa511347d908149804d0b93ec91e5777a854
2
ansible/roles/zookeeper_old
7,830
[ "no_license" ]
[ { "path": "ansible/roles/zookeeper_old/defaults/main.yml", "content": "---\nzookeeper_version: 3.4.8\nzookeeper_url: http://apache.org/dist/zookeeper/stable/zookeeper-{{zookeeper_version}}.tar.gz\nzookeeper_dir: /opt/zookeeper-{{zookeeper_version}}\nzookeeper_data: /var/lib/zookeeper\nzookeeper_logs: /var/l...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1633, "all_permissive": false }
ansible_role
americanbwana/ansible-training
9d38c6ea8d5e09505002f2ff4b5851dadcb5ab4a
0
roles/control
7,830
[ "no_license" ]
[ { "path": "roles/control/tasks/main.yml", "content": "---\n - name: install tools\n yum: name={{item}} state=present update_cache=yes\n with_items:\n - wget\n - python-httplib2\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 155 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 155, "all_permissive": false }
ansible_role
americanbwana/ansible-training
9d38c6ea8d5e09505002f2ff4b5851dadcb5ab4a
0
roles/demo_app
7,830
[ "no_license" ]
[ { "path": "roles/demo_app/tasks/main.yml", "content": "---\n - name: Install epel-release\n yum: name=epel-release state=present update_cache=yes\n\n - name: install web components\n yum: name={{item}} state=present\n with_items:\n - python-pip\n - python-vir...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 750, "all_permissive": false }
ansible_role
americanbwana/ansible-training
9d38c6ea8d5e09505002f2ff4b5851dadcb5ab4a
0
roles/httpd
7,830
[ "no_license" ]
[ { "path": "roles/httpd/tasks/main.yml", "content": "---\n - name: Install epel-release\n yum: name=epel-release state=present update_cache=yes\n\n - name: install web components\n yum: name={{item}} state=present\n with_items:\n - httpd\n - mod_wsgi\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 758, "all_permissive": false }
ansible_role
americanbwana/ansible-training
9d38c6ea8d5e09505002f2ff4b5851dadcb5ab4a
0
roles/mysql
7,830
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n - name: Install epel-release\n yum: name=epel-release state=present update_cache=yes\n\n - name: Install tools\n yum: name={{item}} state=present update_cache=yes\n with_items:\n - libselinux-python\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1014, "all_permissive": false }
ansible_role
americanbwana/ansible-training
9d38c6ea8d5e09505002f2ff4b5851dadcb5ab4a
0
roles/nginx
7,830
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n - name: install epel-release\n yum: name=epel-release state=present update_cache=yes\n\n - name: install tools\n yum: name={{item}}\n with_items:\n - python-httplib2\n\n - name: install ngix\n yum: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 934, "all_permissive": false }
ansible_role
mihirk/ansible
c388af6ef0cd9286f43d5e268bc6ef4a22bb3c5c
0
roles/hosts
7,830
[ "no_license" ]
[ { "path": "roles/hosts/tasks/main.yml", "content": "- name: Create temp directory\n file: path=\"{{ temp_directory_path }}{{ item }}\" owner={{ root }} state=directory\n with_items:\n - \"{{temp_directory_name}}\"\n - \"{{temp_directory_name}}/{{ temp_directory_logs }}\"\n\n\n- name: Create logs i...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1442, "all_permissive": false }
ansible_role
mihirk/ansible
c388af6ef0cd9286f43d5e268bc6ef4a22bb3c5c
0
roles/java
7,830
[ "no_license" ]
[ { "path": "roles/java/defaults/main.yml", "content": "java_home: /usr/lib/jvm/java-1.7.0-openjdk-1.7.0.51.x86_64\ntools_path: /servers/tools.jar\nrepo_url: \"http://172.18.2.14/packages\"\njava_home_jre_lib: \"{{java_home}}/jre/lib\"", "license_type": "no_license", "detected_licenses": [], "size...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 354, "all_permissive": false }
ansible_role
mihirk/ansible
c388af6ef0cd9286f43d5e268bc6ef4a22bb3c5c
0
roles/mysql
7,830
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "- name: Install MySQL-shared-compat\n yum: pkg=MySQL-shared-compat state=latest\n\n\n- name: Install MySQL-shared\n yum: pkg=MySQL-shared state=latest\n\n\n- name: Install MySQL-client\n yum: pkg=MySQL-client state=latest\n\n\n- name: Install MySQL-serv...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 806, "all_permissive": false }
ansible_role
mihirk/ansible
c388af6ef0cd9286f43d5e268bc6ef4a22bb3c5c
0
roles/repos
7,830
[ "no_license" ]
[ { "path": "roles/repos/tasks/main.yml", "content": "- name: Bootstrap install epel epel debug\n copy: src=repo-bootstrap.repo\n dest=/etc/yum.repos.d/\n owner=root group=root mode=0644\n\n\n- name: epel repository enable\n ini_file: dest=/etc/yum.repos.d/repo-bootstrap.repo\n sect...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2346, "all_permissive": false }
ansible_role
mihirk/ansible
c388af6ef0cd9286f43d5e268bc6ef4a22bb3c5c
0
roles/utils
7,830
[ "no_license" ]
[ { "path": "roles/utils/tasks/main.yml", "content": "- name: Install git\n yum: pkg=git state=latest\n\n\n- name: Install ruby\n yum: pkg=ruby state=latest\n\n\n- name: Install wget\n yum: pkg=wget", "license_type": "no_license", "detected_licenses": [], "size_bytes": 138 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 138, "all_permissive": false }
ansible_role
mihirk/ansible
c388af6ef0cd9286f43d5e268bc6ef4a22bb3c5c
0
roles/ziptools
7,830
[ "no_license" ]
[ { "path": "roles/ziptools/tasks/main.yml", "content": "- name: Install ziptools\n yum: pkg={{ item }} state=latest\n with_items: \n - \"unzip\"\n - \"zip\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 102 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 102, "all_permissive": false }
ansible_role
IsotrolSA/ansible-client-role
fd102d85c695d8dbb823ac29db6f5cfd4e7fb80a
0
roles/system
7,830
[ "no_license" ]
[ { "path": "roles/system/tasks/keys.yml", "content": "---\n - name: Set RSA Pub Key user root\n authorized_key:\n user: root\n state: present\n manage_dir: yes\n key: https://raw.githubusercontent.com/IsotrolSA/ansible-client-role/{{branch}}/keys/id_rsa_guadalinfo.pub\n\n - name: Set...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 2370, "all_permissive": false }
ansible_role
Areso/Ansible-serverspace
b191edd9c250b676b71823e27ee309f8ea620a73
0
roles/clfl_del_dns_records
7,830
[ "no_license" ]
[ { "path": "roles/clfl_del_dns_records/tasks/main.yml", "content": "- name: clfl_get_dns_records\n uri:\n url: \"https://api.cloudflare.com/client/v4/zones/{{ clfl_zone_id }}/dns_records\"\n method: GET\n headers:\n \"X-Auth-Key\": \"{{ clfl_auth_key }}\"\n \"X-Auth-Email\": \"{{ clfl_aut...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1012, "all_permissive": false }