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
uc2-io/openshift-assisted
960d72f8c07da4aeb5f04fcca444e05b26900004
1
roles/vmware_assisted_installer
150
[ "no_license" ]
[ { "path": "roles/vmware_assisted_installer/templates/vsphere-creds.j2", "content": "apiVersion: v1\ndata:\n {{ vcenter.hostname }}.password: \"{{ vcenter_password | ansible.builtin.b64encode }}\"\n {{ vcenter.hostname }}.username: \"{{ vcenter_username | ansible.builtin.b64encode }}\"\nkind: Secret\nmetad...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 14085, "all_permissive": false }
ansible_role
szyminson/ansible-workstation-setup
0286fc309783ac3990d530674686f4d6644e4f35
0
roles/win-setup
150
[ "no_license" ]
[ { "path": "roles/win-setup/tasks/powertoys.yml", "content": "---\n- name: Install PowerToys\n win_chocolatey:\n name: powertoys\n state: present\n\n- name: PowerToys config\n ansible.windows.win_copy:\n src: settings_133251735513170872.ptb\n dest: '%homepath%\\Documents\\PowerToys\\Backup\\'\n...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 8067, "all_permissive": false }
ansible_role
szyminson/ansible-workstation-setup
0286fc309783ac3990d530674686f4d6644e4f35
0
roles/wsl-setup
150
[ "no_license" ]
[ { "path": "roles/wsl-setup/handlers/main.yml", "content": "---\n# handlers file for wsl-setup\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "roles/wsl-setup/defaults/main.yml", "content": "---\n# defaults file for wsl-setup\nwsl_user: \"{{ a...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 1706, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/bind
150
[ "no_license" ]
[ { "path": "roles/bind/templates/named.conf.options.j2", "content": "acl \"trusted\" {\n 10.0.0.0/8; # RFC1918\n 172.16.0.0/12; # RFC1918\n 192.168.0.0/16; # RFC1918\n #fc00::/8; # Private IPv6 network\n #2606:E080::/32; # Edovo IPv6 Network\n};\n\noptions {\n directory \"/var/cache/bin...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1247, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/common_packages
150
[ "no_license" ]
[ { "path": "roles/common_packages/tasks/main.yml", "content": "# Role to nstall common packages\n---\n- name: Install Packages\n apt:\n name: \"{{ item }}\"\n state: present\n update_cache: yes\n loop:\n - tree\n - vim\n - sl\n - nmap\n - tmux\n - htop\n - curl\n - wget\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 605, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/docker
150
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Install Docker GPG Key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n tags:\n - gitlab_runner\n - kubernetes\n - kube_controller\n - kube_worker\n\n- name: Install Docker Repo\n apt_repositor...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 629, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/k8s
150
[ "no_license" ]
[ { "path": "roles/k8s/tasks/main.yml", "content": "- name: Install Google GPG Key\n apt_key:\n url: https://packages.cloud.google.com/apt/doc/apt-key.gpg\n state: present\n tags:\n - k8s\n\n- name: Install Kubernetes Repo\n apt_repository:\n repo: deb https://apt.kubernetes.io/ kubernetes-xeni...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 653, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/k8s-control
150
[ "no_license" ]
[ { "path": "roles/k8s-control/defaults/main.yml", "content": "output: |\n [wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory \"/etc/kubernetes/manifests\". This can take up to 4m0s\n [apiclient] All control plane components are healthy after 14.003904 se...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4142, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/nat
150
[ "no_license" ]
[ { "path": "roles/nat/tasks/main.yml", "content": "---\n- name: Enable IP forwarding on reboot\n lineinfile:\n path: /etc/sysctl.conf\n regex: '^#?net.ipv4.ip_forward=1'\n line: net.ipv4.ip_forward=1\n state: present\n notify:\n - Enable IP Forwarding\n tags:\n - nat\n\n- name: Ensure ip...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1423, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/nginx
150
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "# Role to install and configure nginx\n---\n# Install nginx\n- name: Install nginx\n apt:\n name: nginx\n state: present\n update_cache: true\n cache_valid_time: 3600\n tags:\n - nginx\n\n- name: Install Certbot\n snap:\n name: certbot...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4007, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/os_update
150
[ "no_license" ]
[ { "path": "roles/os_update/tasks/main.yml", "content": "# Role to update the OS of various machines\n---\n - name: Update\n apt:\n update_cache: yes\n cache_valid_time: 3600\n\n - name: Upgrade\n apt:\n upgrade: dist\n\n - name: Autoremove\n apt:\n autoremove: yes\n\n", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 229, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/rsyslog
150
[ "no_license" ]
[ { "path": "roles/rsyslog/tasks/main.yml", "content": "# Role to install and configure rsyslog\n---\n - name: Install rsyslog\n apt:\n name: rsyslog\n state: present\n update_cache: true\n cache_valid_time: 3600\n tags:\n - common\n - rsyslog\n \n - name: Copy rsysl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3174, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/unifi
150
[ "no_license" ]
[ { "path": "roles/unifi/tasks/main.yml", "content": "---\n\n- name: Install openjdk8\n apt:\n name: openjdk-8-jdk\n state: present\n update_cache: yes\n cache_valid_time: 3600\n tags:\n - unifi\n\n- name: Collect list of services\n service_facts:\n tags:\n - unifi\n\n- name: Download Un...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 830, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/users
150
[ "no_license" ]
[ { "path": "roles/users/files/vimrc", "content": "\" .vimrc\n\" <NAME>\n\n\" Basic visual indicators\nset cursorline\nset number\n\n\" Tab settings\nset textwidth=0 nosmartindent tabstop=2 shiftwidth=2 softtabstop=2 expandtab\n\n\" Start scrolling near screen boundaries\nset so=3\n\n\" Turn off annoying ding...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 8452, "all_permissive": false }
ansible_role
reschouw-homelab/ansible-homelab
0142dfc6f6f1b9bbfcdafae3d18e25d99471ddd6
2
roles/wireguard
150
[ "no_license" ]
[ { "path": "roles/wireguard/tasks/main.yml", "content": "---\n\n- name: Install wireguard\n apt:\n name: wireguard\n state: present\n update_cache: yes\n cache_valid_time: 3600\n tags:\n - wireguard\n\n- name: Check if IP forwarding is enabled\n command: sysctl net.ipv4.ip_forward\n regist...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1688, "all_permissive": false }
ansible_role
Mi-lex/ansible-workstation
68fa99e2eb2dcf62b4318122bcfff73d406efe23
0
roles/base
150
[ "no_license" ]
[ { "path": "roles/base/tasks/software/packages_dev_py.yml", "content": "- name: system setup | pyhon development packages\n tags:\n - dev\n - development\n - python\n package:\n name:\n - \"{{ python_flake8_package }}\"\n - \"{{ python_package }}\"\n - \"{{ python_pip_package }}\...
{ "task_files": 13, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 16, "total_bytes": 9032, "all_permissive": false }
ansible_role
Mi-lex/ansible-workstation
68fa99e2eb2dcf62b4318122bcfff73d406efe23
0
roles/workstation
150
[ "no_license" ]
[ { "path": "roles/workstation/tasks/shell-setup/navi.yaml", "content": "- name: shell-setup | navi | ensure curl is installed\n tags:\n - navi\n apt:\n name: curl\n state: present\n when: ansible_os_family == \"Debian\"\n\n- name: workstation | navi | ensure that fzf is installed\n tags:\n - ...
{ "task_files": 15, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 19, "total_bytes": 11622, "all_permissive": false }
ansible_role
VisiSB/EC2withAnsible
d937abb83f9168d7ee4c831cd17993c5a8c1c3c1
0
roles/ec2
150
[ "no_license" ]
[ { "path": "roles/ec2/tasks/main.yml", "content": "- name: \"Deploy\"\n ec2:\n assign_public_ip: no\n key_name: \"{{ aws_key }}\"\n image: \"{{ aws_image }}\"\n region: \"{{ aws_region }}\"\n vpc_subnet_id: \"{{ aws_sub }}\"\n instance_type: \"{{ aws_instance }}\"\n wait: yes\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 295, "all_permissive": false }
ansible_role
VisiSB/EC2withAnsible
d937abb83f9168d7ee4c831cd17993c5a8c1c3c1
0
roles/install
150
[ "no_license" ]
[ { "path": "roles/install/tasks/main.yml", "content": "- name: \"Configuring networking\"\n template: src=../files/50-cloud-init.cfg dest=/etc/network/interfaces.d/50-cloud-init.cfg owner=root group=root mode=0644\n\n- name: \"Add keys\"\n copy: src=../files/id_rsa dest=/home/[USER]/.ssh/id_rsa owner=maste...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1490, "all_permissive": false }
ansible_role
VisiSB/EC2withAnsible
d937abb83f9168d7ee4c831cd17993c5a8c1c3c1
0
roles/proxy
150
[ "no_license" ]
[ { "path": "roles/proxy/tasks/main.yml", "content": "- name: \"installing packages\"\n apt: pkg=haproxy state=present\n\n- name: \"Copying conf\"\n copy: src=../files/proxy.cnf dest=/etc/haproxy/haproxy.cfg owner=root group=root mode=0644\n\n- name: \"Restart haproxy\"\n service: name=haproxy state=restar...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 247, "all_permissive": false }
ansible_role
g0t4/consul-getting-started
1fa1a4eaec2f66835c48b519066085eeb9e0dad2
80
provision/ansible/roles/web
150
[ "no_license" ]
[ { "path": "provision/ansible/roles/web/handlers/main.yml", "content": "---\n\n- name: Restart web\n docker_container:\n name: web\n restart: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 76 }, { "path": "provision/ansible/roles/web/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1398, "all_permissive": false }
ansible_role
ViaQ/fluentd-openshift
ceadb72e4cecd7093eb3b4c86ff34fb6d5b64e2a
0
ansible/roles/fluentd-k8s-collector
149
[ "no_license" ]
[ { "path": "ansible/roles/fluentd-k8s-collector/templates/fluentd-dc.yaml", "content": "apiVersion: \"v1\"\nkind: \"List\"\nitems:\n-\n apiVersion: \"v1\"\n kind: \"Template\"\n metadata:\n name: fluentd-dc-template\n labels:\n logging-infra: fluentd\n annotations:\n description: \"Temp...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 7101, "all_permissive": false }
ansible_role
ViaQ/fluentd-openshift
ceadb72e4cecd7093eb3b4c86ff34fb6d5b64e2a
0
ansible/roles/fluentd-node-collector
149
[ "no_license" ]
[ { "path": "ansible/roles/fluentd-node-collector/tasks/configure_fluentd.yaml", "content": "- name: \"Go to logging project\"\n command: oc project {{ logging_project }}\n\n- name: delete old configmaps\n shell: \"oc delete configmap fluent-{{ item }}-cm|| true\"\n with_items: '{{ config_list.stdout_lines...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 9774, "all_permissive": false }
ansible_role
ViaQ/fluentd-openshift
ceadb72e4cecd7093eb3b4c86ff34fb6d5b64e2a
0
ansible/roles/fluentd-normalizer
149
[ "no_license" ]
[ { "path": "ansible/roles/fluentd-normalizer/tasks/generate_certs.yaml", "content": "---\n# Create shared key for mux\n- name: Ensure the presence of destination directory\n file:\n path: '{{ generated_certs_dir }}'\n state: directory\n\n- name: Checking for mux_shared_key\n stat: path=\"{{generated_...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 10093, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/catfish
149
[ "no_license" ]
[ { "path": "roles/catfish/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: catfish", "license_type": "no_license", "detected_licenses": [], "size_bytes": 47 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 47, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/debug
149
[ "no_license" ]
[ { "path": "roles/debug/tasks/main.yml", "content": "---\n- name: load group_vars\n debug: var=groups\n- name: load host_vars\n debug: var=hostvars\n- name: reg\n shell: cat /etc/arch-release\n register: hoge\n- name: out\n debug: var=hoge.stdout_lines[0]\n- name: withitems\n debug: var=item\n with_it...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 282, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/feh
149
[ "no_license" ]
[ { "path": "roles/feh/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: feh", "license_type": "no_license", "detected_licenses": [], "size_bytes": 43 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 43, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/ffmpeg
149
[ "no_license" ]
[ { "path": "roles/ffmpeg/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: ffmpeg", "license_type": "no_license", "detected_licenses": [], "size_bytes": 46 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 46, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/firejail
149
[ "no_license" ]
[ { "path": "roles/firejail/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: firejail", "license_type": "no_license", "detected_licenses": [], "size_bytes": 48 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 48, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/fstab
149
[ "no_license" ]
[ { "path": "roles/fstab/defaults/main.yml", "content": "fstab: []", "license_type": "no_license", "detected_licenses": [], "size_bytes": 9 }, { "path": "roles/fstab/tasks/main.yml", "content": "---\n- name: mkdir\n file:\n path: \"{{item.dir}}\"\n state: directory\n mode: \"...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 351, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/ghq
149
[ "no_license" ]
[ { "path": "roles/ghq/tasks/main.yml", "content": "- name: install\n become: yes\n become_user: \"{{ user.name }}\"\n aur:\n name: ghq", "license_type": "no_license", "detected_licenses": [], "size_bytes": 83 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 83, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/gparted
149
[ "no_license" ]
[ { "path": "roles/gparted/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: gparted", "license_type": "no_license", "detected_licenses": [], "size_bytes": 47 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 47, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/gpick
149
[ "no_license" ]
[ { "path": "roles/gpick/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: gpick", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 45, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/hub
149
[ "no_license" ]
[ { "path": "roles/hub/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: hub", "license_type": "no_license", "detected_licenses": [], "size_bytes": 43 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 43, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/imagemagick
149
[ "no_license" ]
[ { "path": "roles/imagemagick/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: imagemagick", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 51, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/init
149
[ "no_license" ]
[ { "path": "roles/init/templates/entry.conf.j2", "content": "title {{ item.title }}\nlinux {{ item.linux }}\n{% for initrd in item.initrds %}\ninitrd {{ initrd }}\n{% endfor %}\noptions {{ item.options }}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 138 }, { "pat...
{ "task_files": 10, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 16, "total_bytes": 3905, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/leafpad
149
[ "no_license" ]
[ { "path": "roles/leafpad/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: leafpad", "license_type": "no_license", "detected_licenses": [], "size_bytes": 47 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 47, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/libreoffice
149
[ "no_license" ]
[ { "path": "roles/libreoffice/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: \n - libreoffice-still\n - libreoffice-still-ja", "license_type": "no_license", "detected_licenses": [], "size_bytes": 95 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 95, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/linux_notification_center
149
[ "no_license" ]
[ { "path": "roles/linux_notification_center/tasks/main.yml", "content": "- name: install\n become: yes\n become_user: \"{{ user.name }}\"\n aur:\n name: deadd-notification-center-bin", "license_type": "no_license", "detected_licenses": [], "size_bytes": 109 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 109, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/lm_sensors
149
[ "no_license" ]
[ { "path": "roles/lm_sensors/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: lm_sensors", "license_type": "no_license", "detected_licenses": [], "size_bytes": 50 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 50, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/maim
149
[ "no_license" ]
[ { "path": "roles/maim/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: maim", "license_type": "no_license", "detected_licenses": [], "size_bytes": 44 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 44, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/man
149
[ "no_license" ]
[ { "path": "roles/man/tasks/main.yml", "content": "---\n- name: install (pacman)\n pacman:\n name: man\n\n- name: install (aur)\n become: yes\n become_user: \"{{ user.name }}\"\n aur:\n name: man-pages-ja", "license_type": "no_license", "detected_licenses": [], "size_bytes": 152 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 152, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/numlockontty
149
[ "no_license" ]
[ { "path": "roles/numlockontty/tasks/main.yml", "content": "---\n- name: install\n become: yes\n become_user: \"{{ user.name }}\"\n aur:\n name: systemd-numlockontty\n\n- name: enable\n service:\n name: numLockOnTty.service\n enabled: yes", "license_type": "no_license", "detected_license...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 179, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/numlockx
149
[ "no_license" ]
[ { "path": "roles/numlockx/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: numlockx", "license_type": "no_license", "detected_licenses": [], "size_bytes": 48 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 48, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/printer
149
[ "no_license" ]
[ { "path": "roles/printer/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: \n - cups\n - ghostscript\n - gutenprint\n- name: enable\n service:\n name: org.cups.cupsd.service\n enabled: yes\n state: started", "license_type": "no_license", "detected_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 187, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/python
149
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name: python,python-pip", "license_type": "no_license", "detected_licenses": [], "size_bytes": 57 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 57, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/qbittorrent
149
[ "no_license" ]
[ { "path": "roles/qbittorrent/tasks/main.yml", "content": "---\n- name: qbittorrent\n pacman:\n name: qbittorrent", "license_type": "no_license", "detected_licenses": [], "size_bytes": 55 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 55, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/remmina
149
[ "no_license" ]
[ { "path": "roles/remmina/tasks/main.yml", "content": "---\n- name: install\n pacman:\n name:\n - remmina\n - libvncserver", "license_type": "no_license", "detected_licenses": [], "size_bytes": 76 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 76, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/slack
149
[ "no_license" ]
[ { "path": "roles/slack/tasks/main.yml", "content": "- name: install\n become: yes\n become_user: \"{{ user.name }}\"\n aur:\n name: slack-desktop", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 93, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/smartmontools
149
[ "no_license" ]
[ { "path": "roles/smartmontools/defaults/main.yml", "content": "smartmontools: []", "license_type": "no_license", "detected_licenses": [], "size_bytes": 17 }, { "path": "roles/smartmontools/templates/smartd.conf.j2", "content": "DEVICESCAN\n{% for device in smartmontools%}\n{{device.d...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 688, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/system
149
[ "no_license" ]
[ { "path": "roles/system/tasks/main.yml", "content": "---\n- name: install system requirements\n pacman:\n name: \n - ntfs-3g\n- name: install utils\n pacman:\n name:\n - usbutils\n - mhwd", "license_type": "no_license", "detected_licenses": [], "size_bytes": 148 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 148, "all_permissive": false }
ansible_role
mikamo3/manjaro-ansible
4a41e95bf05cd68fefd861dfd4cc723cfffe0c95
0
roles/timesyncd
149
[ "no_license" ]
[ { "path": "roles/timesyncd/templates/timesyncd.conf.j2", "content": "[Time]\nNTP={{timesyncd.ntp}}\nFallbackNTP={{timesyncd.fallbackNtp}}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "roles/timesyncd/tasks/main.yml", "content": "---\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 252, "all_permissive": false }
ansible_role
climateamante/docker.alpine.ansible
f5cb5f68d5c9d5af3649cdefe5b5ea7e06ee25d9
0
app/roles/linode
149
[ "no_license" ]
[ { "path": "app/roles/linode/tasks/main.yml", "content": "---\n- name: Create the linode server\n linode:\n api_key: \"{{ linode_api_key }}\"\n name: \"{{ linode_server_name }}\"\n plan: \"{{ linode_plan_id }}\"\n datacenter: \"{{ linode_datacenter }}\"\n distribution: \"{{ linode_distributio...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1269, "all_permissive": false }
ansible_role
devopsschool-demo-labs-projects/ansible-hello-world-2.9
6374fac6a463cfa2f571bb9238d803de78dca9e8
0
roles/web
149
[ "no_license" ]
[ { "path": "roles/web/defaults/main.yml", "content": "---\n# defaults file for web\nsitename: devospschool\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 }, { "path": "roles/web/tasks/main.yml", "content": "---\n# tasks file for web\n - name: Install the ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 548, "all_permissive": false }
ansible_role
davenkin/vagrant
633a6379a2cb355f5990ac76992b4ede3aa0783a
11
ansible-go-server-2-agents-ubuntu1404/ansible/roles/apt_update
149
[ "no_license" ]
[ { "path": "ansible-go-server-2-agents-ubuntu1404/ansible/roles/apt_update/tasks/main.yml", "content": "---\n- name: archieve existing sources.list\n shell: creates=\"/etc/apt/sources.list.old\" mv /etc/apt/sources.list /etc/apt/sources.list.old\n\n- name: copy new sources.list\n copy: src=sources.list des...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 519, "all_permissive": false }
ansible_role
davenkin/vagrant
633a6379a2cb355f5990ac76992b4ede3aa0783a
11
ansible-go-server-2-agents-ubuntu1404/ansible/roles/goagent
149
[ "no_license" ]
[ { "path": "ansible-go-server-2-agents-ubuntu1404/ansible/roles/goagent/meta/main.yml", "content": "---\ndependencies:\n - { role: apt_update }\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 43 }, { "path": "ansible-go-server-2-agents-ubuntu1404/ansible/roles/go...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 382, "all_permissive": false }
ansible_role
davenkin/vagrant
633a6379a2cb355f5990ac76992b4ede3aa0783a
11
ansible-go-server-2-agents-ubuntu1404/ansible/roles/goserver
149
[ "no_license" ]
[ { "path": "ansible-go-server-2-agents-ubuntu1404/ansible/roles/goserver/tasks/main.yml", "content": "---\n- name: install jdk\n apt: pkg=default-jdk state=present\n\n- name: install go sever\n apt: pkg=go-server state=present\n notify:\n - start go server\n", "license_type": "no_license", "det...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 222, "all_permissive": false }
ansible_role
wox080xow/hadoop-ansible-roles
b5d18872745d3438f876eaf0af1270ac166ba451
0
roles/external_database_installation
149
[ "no_license" ]
[ { "path": "roles/external_database_installation/tasks/main.yml", "content": "---\n\n- name: Install rsync (yum)\n yum:\n name:\n - rsync\n become: true\n when: ansible_distribution == \"CentOS\"\n\n- name: Synchronization of src on the control machine to dest on the remote hosts\n ansible.posix....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 570, "all_permissive": false }
ansible_role
wox080xow/hadoop-ansible-roles
b5d18872745d3438f876eaf0af1270ac166ba451
0
roles/hadoop_user_group
149
[ "no_license" ]
[ { "path": "roles/hadoop_user_group/tasks/hdp.yml", "content": "- name: Delete Hadoop Users\n user:\n name: \"{{ item.name }}\"\n state: absent\n force: yes\n with_items:\n - { name: zookeeper, uid: 1000 }\n - { name: hdfs, uid: 1001 }\n - { name: yarn, uid: 1002 }\n - { name: mapred, ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4566, "all_permissive": false }
ansible_role
wox080xow/hadoop-ansible-roles
b5d18872745d3438f876eaf0af1270ac166ba451
0
roles/os_settings
149
[ "no_license" ]
[ { "path": "roles/os_settings/tasks/main.yml", "content": "---\n\n- name: Setup language\n ansible.builtin.blockinfile:\n path: /etc/profile\n block: |\n # setup language\n export LANGUAGE=en_US.UTF-8\n export LANG=en_US.UTF-8\n export LC_ALL=en_US.UTF-8\n become: yes\n\n-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3875, "all_permissive": false }
ansible_role
wox080xow/hadoop-ansible-roles
b5d18872745d3438f876eaf0af1270ac166ba451
0
roles/os_settings_cp1
149
[ "no_license" ]
[ { "path": "roles/os_settings_cp1/files/hosts", "content": "127.0.0.1 localhost\n#127.0.1.1 malvin-guest-template\n\n# The following lines are desirable for IPv6 capable hosts\n#::1 ip6-localhost ip6-loopback\n#fdf8:f53e:61e4::18 ip6-localnet\n#fd00:a516:7c1b:17cd:6d81:2137:bd2a:2c5b ip6-mcastprefix\n#fd...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3108, "all_permissive": false }
ansible_role
Div-oops/ansib
de7ef30c8caf25d6217da5a81e546b29cb9af677
0
roles/zabbix
149
[ "no_license" ]
[ { "path": "roles/zabbix/tasks/main.yml", "content": "---\n# tasks file for zabbix\n - name: Download zabbix-release_5.0-1+bionic_all.deb\n get_url: \n url: https://repo.zabbix.com/zabbix/5.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_5.0-1+bionic_all.deb\n dest: /tmp/zabbix-release_5.0...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2482, "all_permissive": false }
ansible_role
Div-oops/ansib
de7ef30c8caf25d6217da5a81e546b29cb9af677
0
roles/zabbix-agent_nginx
149
[ "no_license" ]
[ { "path": "roles/zabbix-agent_nginx/handlers/main.yml", "content": "---\n# handlers file for zabbix-agent_nginx\n - name: zabbix-agent restart\n service: name=zabbix-agent state=restarted enabled=yes\n\n - name: nginx start\n service: name=nginx state=started enabled=yes\n", "license_type": "no_...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1098, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/backup_client_install
149
[ "no_license" ]
[ { "path": "roles/backup_client_install/tasks/main.yml", "content": "---\n# tasks file for roles/backup_client_install\n\n- name: Collectiong set facts\n include: initial_setup.yml\n\n- name: Installation of Bacula client\n include: bacula_client_install.yml\n\n- name: Change/Add server configuration\n in...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 12091, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/backup_server_install
149
[ "no_license" ]
[ { "path": "roles/backup_server_install/tasks/setup_nfs_server.yml", "content": "- name: Upgrade all apt packages\n apt:\n upgrade: dist\n update_cache: yes\n force_apt_get: yes\n\n- name: Install NFS server packages\n apt:\n name: [nfs-common,nfs-kernel-server]\n state: present\n", "lic...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 8896, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/basic_installation
149
[ "no_license" ]
[ { "path": "roles/basic_installation/README.md", "content": "Role Name\n=========\nThis role is used to install basic required packages for all hosts\n\n\n\nExample Playbook\n----------------\n\nIncluding an example of how to use your role (for instance, with variables passed in as parameters) is always nice...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 2453, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/bastion_server
149
[ "no_license" ]
[ { "path": "roles/bastion_server/templates/nignx.conf.j2", "content": "upstream proxmox {\n server \"{{ host_fqdn }}\";\n}\n \nserver {\n listen 80 default_server;\n rewrite ^(.*) https://$host$1 permanent;\n}\n \nserver {\n listen 443;\n server_name _;\n ssl on;\n ssl_certificate /etc/c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3113, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/certs_ipa_hosts
149
[ "no_license" ]
[ { "path": "roles/certs_ipa_hosts/tasks/hosts_certificate_setup.yml", "content": "\n- name: Prepare LDAP Server login\n command: docker exec -it \"{{ internal_ldap_server_docker_name }}-master1\" bash -c 'echo \"{{ internal_ldap_server_admin_pass }}\" | kinit admin'\n changed_when: false\n\n- name: ADD Ali...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 6454, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/docker_install
149
[ "no_license" ]
[ { "path": "roles/docker_install/tasks/main.yml", "content": "\n\n\n- name: Install Docker\n include: docker-ubuntu.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 55 }, { "path": "roles/docker_install/tasks/docker-ubuntu.yml", "content": "---\n\n- name: ...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 998, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/elk_client_install
149
[ "no_license" ]
[ { "path": "roles/elk_client_install/tasks/initial-setup.yml", "content": "\n- name: \"Set server ip address for clients without vlans\"\n set_fact:\n internal_rsyslog_server_ip: \"{{ hostvars[groups.elk_rsyslog_server[0]].host_ip }}\"\n when: host_vlan == \"dhcp\" or host_vlan == \"43\"\n\n- name: \"Se...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1941, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/elk_server_install
149
[ "no_license" ]
[ { "path": "roles/elk_server_install/templates/logstash.conf.j2", "content": "input {\n\ttcp {\n\t\tport => 5000\n # type => \"syslogjson\"\n type => \"syslog\"\n codec => \"json\"\n\t}\n}\n\nfilter {\n if [type] == \"syslog\" {\n # Uses built-in Grok patterns t...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 14, "total_bytes": 18236, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/freeipa_client_install
149
[ "no_license" ]
[ { "path": "roles/freeipa_client_install/tasks/freeipa-client-prepare.yml", "content": "\n- block:\n\n - name: resolvconf install\n apt:\n name: resolvconf\n state: present\n\n - name: \"Change internal_icinga2_server_host_ip if client ip is inside vlan 70\"\n set_fact:\n internal_free...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 6819, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/freeipa_prepare_client
149
[ "no_license" ]
[ { "path": "roles/freeipa_prepare_client/tasks/main.yml", "content": "---\n\n- name: Collectiong set facts\n include: initial_setup.yml\n\n- name: LDAP Setup FreeIPA Server\n include: freeipa_server_setting.yml\n when: inventory_hostname in groups['ldapserver'][0]\n", "license_type": "no_license", ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 5394, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/freeipa_server
149
[ "no_license" ]
[ { "path": "roles/freeipa_server/tasks/freeipa_srv_install.yml", "content": "- block:\n\n - name: Get infos on container\n docker_container_info:\n name: \"{{ internal_ldap_server_docker_name }}-master1\"\n register: container_result\n\n - name: Set the time zone\n timezone:\n name: Euro...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 5826, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/freeipa_server_replica
149
[ "no_license" ]
[ { "path": "roles/freeipa_server_replica/tasks/initial_setup.yml", "content": "- name: Set fact for DNS and Domain Entry's\n set_fact:\n internal_ldap_server_master02_domain: \"{{ hostvars[groups.ldapserver[1]].host_domain }}\"\n internal_ldap_server_master02_dns: \"{{ hostvars[groups.ldapserver[1]].l...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 5808, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/helm_museum_install
149
[ "no_license" ]
[ { "path": "roles/helm_museum_install/tasks/main.yml", "content": "---\n# tasks file for roles/helm_chart_museum_install\n\n- name: Set fact fqdn\n set_fact:\n internal_hostname_fqdn: \"{{ host_fqdn }}\"\n internal_chart_museum_admin_pass: \"{{ ldap_server.<PASSWORD> }}\"\n internal_host_user: \"{{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4264, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/icinga2_client_installation
149
[ "no_license" ]
[ { "path": "roles/icinga2_client_installation/defaults/main.yml", "content": "# vars file for icinga2.client.installation\n\nicinga_pki_new_cert_command: \"icinga2 pki new-cert --cn {{ inventory_hostname }} --key /etc/icinga2/pki/{{ inventory_hostname }}.key \\\n --cert /et...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 12648, "all_permissive": false }
ansible_role
sharif08/ansible-example
6e37bb709f8cd646cce8cfd0122769c3f20c9177
0
roles/rancher_install
149
[ "no_license" ]
[ { "path": "roles/rancher_install/tasks/main.yml", "content": "\n\n- name: Initial Setup set facts\n include: initial_setup.yml\n when: inventory_hostname in groups['deployment_server'][1]\n\n\n- name: Rancher Installatio\n include: rancher_setup.yml\n when: inventory_hostname in groups['deployment_serve...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 5549, "all_permissive": false }
ansible_role
sivel/ansible-role-plugins
76b3df6a4f6fd8b66074ac1db6d33cdc784c95db
0
roles/test
149
[ "permissive" ]
[ { "path": "roles/test/filter_plugins/f.py", "content": "class FilterModule(object):\n def filters(self):\n return {\n 'foo': lambda x: 'FOO'\n }\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 113 }, { "path": "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 235, "all_permissive": true }
ansible_role
Gjonni/Openshift_NSO_Generator
2fadf6811dafac31d3c387e6d6c0d09d064d5ae3
0
roles/install
155
[ "no_license" ]
[ { "path": "roles/install/tasks/openshift-configure.yml", "content": "- name: Generate Random ClusterName\n set_fact: \n random_cluster_name: \"{{ lookup('community.general.random_string', length=5, upper=false, special=false) }}\"\n\n- name: Debug Cluster Name\n ansible.builtin.debug:\n msg: \"{{ ra...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 11068, "all_permissive": false }
ansible_role
zamama/playbooks
e14692e56d75cf987f1c8b165034a5066cb29580
0
roles/user-create
155
[ "no_license" ]
[ { "path": "roles/user-create/tasks/main.yml", "content": "---\n- name: Creating the users.\n user:\n name: \"{{ sname }}\"\n password: \"{{ '<PASSWORD>' | password_hash('<PASSWORD>') }}\"\n comment: \"{{ sfull }}\"\n shell: /bin/bash\n group: wheel\n groups: wheels\n home: /home/{{ s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 243, "all_permissive": false }
ansible_role
xueyeah/ansible-demo
7f6630637478915a316df56c8ea0368f261fda98
0
ansible-mms/roles/common
155
[ "no_license" ]
[ { "path": "ansible-mms/roles/common/files/ssh_config", "content": "Host *\n ForwardX11Trusted yes\n SendEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES\n SendEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT\n SendEnv LC_IDENTIFICATION LC_ALL LAN...
{ "task_files": 18, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 23, "total_bytes": 12905, "all_permissive": false }
ansible_role
babaev2023/devops
104e63b478d3768d0646679d0406b2ddf7edd27c
0
Kubernetes/Kubernetes-1/ansible/roles/gitlab
155
[ "no_license" ]
[ { "path": "Kubernetes/Kubernetes-1/ansible/roles/gitlab/defaults/main.yaml", "content": "---\ngitlab:\n name: gitlab\n image: gitlab/gitlab-ee:15.2.2-ee.0\n hostname: gitlab.local\n volumes:\n repo_path: /data/docker/gitlab/data\n logs_path: /data/docker/gitlab/log\n config_path: /data/docker/g...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1493, "all_permissive": false }
ansible_role
shaikusmandevops/roboshop-jenkins
aec41c685b10532bacb4e68714a1c4c18881561b
0
roles/jenkins
155
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/sjob.yml", "content": "- name: Copy sjob config file\n ansible.builtin.template:\n src: sjob.xml\n dest: /tmp/sjob.xml\n\n\n- name: Create a single pipeline branch in jenkins - {{item.job_name}}\n community.general.jenkins_job:\n config: \"{{ lookup('file', '/tmp/sj...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1509, "all_permissive": false }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/baseconfig_app
155
[ "permissive" ]
[ { "path": "ansible/roles/baseconfig_app/tasks/replace_master_uri.yml", "content": "---\n# This playbook replaces master_uri -> manager_uri or vice versa\n\n- name: \"({{ app_name }}) rename (master|manager)_uri to {{splunk_manager_uri_var}}\"\n tags:\n - splunk\n - splunk_baseconfig\n replace:\n ...
{ "task_files": 25, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 26, "total_bytes": 59099, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/cluster_manager
155
[ "permissive" ]
[ { "path": "ansible/roles/cluster_manager/tasks/main.yml", "content": "---\n# Main playbook for this role\n\n- name: start role tasks\n tags:\n - splunk\n - cluster_manager\n debug:\n msg: \"role '{{ role_name }}' start\"\n\n- name: apply baseconfig app org_cluster_manager_base\n tags:\n - spl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4398, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/common
155
[ "permissive" ]
[ { "path": "ansible/roles/common/tasks/users.yml", "content": "---\n# This playbook install a basic user with the login keys\n\n- name: Adding splunk aliases\n tags:\n - common\n - bashrc\n copy:\n src: home/ansible_user/bashrc.splunk\n dest: \"~{{ ansible_user }}/.bashrc.splunk\"\n mode: 06...
{ "task_files": 11, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 11, "total_bytes": 4967, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/deployer
155
[ "permissive" ]
[ { "path": "ansible/roles/deployer/tasks/main.yml", "content": "---\n# Main playbook for this role\n\n- name: start role tasks\n tags:\n - splunk\n - deployer\n debug:\n msg: \"role '{{ role_name }}' start\"\n\n- name: \"check if shclustering pass4SymmKey exists\"\n tags:\n - splunk\n - dep...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 5629, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/deployment_server
155
[ "permissive" ]
[ { "path": "ansible/roles/deployment_server/tasks/save_serverclass.yml", "content": "---\n# This playbook saves a copy of the serverclass.conf on the ansible host\n\n- name: create hostname and system/local dir on ansible host\n tags:\n - splunk\n - splunk_baseconfig\n - deployment_server\n - se...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 19813, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/heavy_forwarder
155
[ "permissive" ]
[ { "path": "ansible/roles/heavy_forwarder/tasks/main.yml", "content": "---\n# Main playbook for this role\n\n- name: start role tasks\n tags:\n - splunk\n - splunk_baseconfig\n - heavy_forwarder\n debug:\n msg: \"role '{{ role_name }}' start\"\n\n- name: apply baseconfig app org_all_deploymentc...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4234, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/indexer
155
[ "permissive" ]
[ { "path": "ansible/roles/indexer/tasks/idxsingle.yml", "content": "---\n# Main playbook for this role\n\n- name: start indexer cluster node\n tags:\n - splunk\n - indexer\n - idxsingle\n debug:\n msg: \"Configuring single indexer\"\n\n- name: apply baseconfig app org_all_deploymentclient\n ta...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 6647, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/ldap_server
155
[ "permissive" ]
[ { "path": "ansible/roles/ldap_server/templates/var/tmp/db.ldif.j2", "content": "dn: olcDatabase={2}hdb,cn=config\nchangetype: modify\nreplace: olcSuffix\nolcSuffix: {{ldap_dc}}\n\ndn: olcDatabase={2}hdb,cn=config\nchangetype: modify\nreplace: olcRootDN\nolcRootDN: cn=ldapadm,{{ldap_dc}}\n\ndn: olcDatabase={...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 3801, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/license_manager
155
[ "permissive" ]
[ { "path": "ansible/roles/license_manager/tasks/add_license.yml", "content": "---\n# This playbook installs a splunk license\n\n- name: get guid of source license file\n tags:\n - splunk\n - license_manager\n xml:\n path: \"{{ splunk_software }}/{{ splunk_license_file_name }}\"\n xpath: /licens...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3679, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/monitoring_console
155
[ "permissive" ]
[ { "path": "ansible/roles/monitoring_console/tasks/add_dserver.yml", "content": "---\n# add a certain dserver, if available\n\n- name: check if dserver is available\n tags:\n - splunk\n - splunk_baseconfig\n - monitoring_console\n - dserver\n wait_for:\n host: '{{ dserver_name }}'\n port:...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 5664, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/search_head
155
[ "permissive" ]
[ { "path": "ansible/roles/search_head/tasks/search_peers.yml", "content": "---\n# This playbook adds single indexers as search peers\n\n- name: get list of current distributedSearch peers (single indexers)\n tags:\n - splunk\n - splunk_baseconfig\n - search_head\n - search_peer\n # Same command...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 14861, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/splunk_common
155
[ "permissive" ]
[ { "path": "ansible/roles/splunk_common/defaults/main.yml", "content": "---\n# Variables for this role\n\n# default, but will be overwritten, when found\nsplunk_is_installed: false\n\nsplunk_user: splunk\nsplunk_group: splunk\nsplunk_install_dir: /opt\nsplunk_backup_dir: '{{ splunk_install_dir }}/{{splunk_in...
{ "task_files": 8, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 7104, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/splunk_conf
155
[ "permissive" ]
[ { "path": "ansible/roles/splunk_conf/tasks/loop_conf_files.yml", "content": "---\n# This playbook installs splunk apps\n\n- name: loop through the config files\n tags:\n - splunk\n - splunk_conf\n include_tasks:\n file: add_splunk_conf.yml\n with_dict: \"{{ splunk_conf }}\"\n loop_control:\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 885, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/splunk_control
155
[ "permissive" ]
[ { "path": "ansible/roles/splunk_control/templates/config/index.html.j2", "content": "<!doctype html>\n<html lang=\"en\">\n <head>\n <!-- Required meta tags -->\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\">\n\n <!-- Bootst...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 5468, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/splunk_software
155
[ "permissive" ]
[ { "path": "ansible/roles/splunk_software/tasks/uninstall.yml", "content": "---\n# This playbook uninstalls splunk enterprise or splunk universal forwarder\n\n- name: check for splunk binary\n tags:\n - splunk\n - splunk_software\n - splunk_uninstall\n stat:\n path: \"{{ splunk_home }}/bin/splu...
{ "task_files": 43, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 48, "total_bytes": 68695, "all_permissive": true }
ansible_role
splunk/splunk-platform-automator
27ae2b302fab00e5fe9858c15d5dad28e739458a
127
ansible/roles/universal_forwarder
155
[ "permissive" ]
[ { "path": "ansible/roles/universal_forwarder/defaults/main.yml", "content": "---\n# Variables for this role\n\nsplunk_install_app: splunkforwarder\nsplunk_service_name: splunk\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 95 }, { "path":...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 999, "all_permissive": true }