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
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/cre
7,773
[ "no_license" ]
[ { "path": "roles/cre/tasks/install-containerd.yml", "content": "- name: Install Containerd packages\n include_tasks: \"install-containerd-pkgs-{{ ansible_facts['os_family'] }}.yml\"\n\n- name: Clean-up /etc/cni/net.d\n become: yes\n file:\n path: /etc/cni/net.d/\n state: absent\n\n #- name: Re...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 6444, "all_permissive": false }
ansible_role
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/helm
7,773
[ "no_license" ]
[ { "path": "roles/helm/tasks/main.yml", "content": "- name: Install Helm v3\n become: yes\n shell: curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash\n ignore_errors: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 151 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 151, "all_permissive": false }
ansible_role
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/k8s_leader
7,773
[ "no_license" ]
[ { "path": "roles/k8s_leader/tasks/main.yml", "content": "- name: Configure kubeadm-init.conf\n template:\n src: kubeadm-init.yaml.j2\n dest: kubeadm-init.yaml\n\n- name: Initialialize leader\n become: yes\n shell: kubeadm init --config=kubeadm-init.yaml --upload-certs | tee kubeadm-init.out\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 590, "all_permissive": false }
ansible_role
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/k8s_masters
7,773
[ "no_license" ]
[ { "path": "roles/k8s_masters/tasks/main.yml", "content": "- name: Get certificate-key from leader\n shell: grep '\\--control-plane' kubeadm-init.out\n register: master_controlplane_cert\n delegate_to: \"{{ groups['LEADER'][0] }}\"\n\n- name: Get join token from LEADER\n shell: \"kubeadm token create --p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 851, "all_permissive": false }
ansible_role
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/k8s_workers
7,773
[ "no_license" ]
[ { "path": "roles/k8s_workers/tasks/main.yml", "content": "- name: Get join token from LEADER\n shell: \"kubeadm token create --print-join-command\"\n register: worker_join_token\n delegate_to: \"{{ groups['LEADER'][0] }}\"\n\n- name: Have workernodes join the leader\n become: yes\n shell: \"{{ worker_j...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 282, "all_permissive": false }
ansible_role
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/lb
7,773
[ "no_license" ]
[ { "path": "roles/lb/handlers/main.yml", "content": "- name: Restart haproxy\n become: yes\n systemd:\n name: haproxy\n state: restarted\n listen: restart_haproxy\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 114 }, { "path": "roles/lb/defaults/main.yml...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 4324, "all_permissive": false }
ansible_role
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/no_fw
7,773
[ "no_license" ]
[ { "path": "roles/no_fw/tasks/main.yml", "content": "- name: Disable UFW\n become: yes\n shell: ufw disable\n", "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
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/ping
7,773
[ "no_license" ]
[ { "path": "roles/ping/tasks/main.yml", "content": "- name: Ping host\n ping:\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 26 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 26, "all_permissive": false }
ansible_role
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/prep_k8s
7,773
[ "no_license" ]
[ { "path": "roles/prep_k8s/tasks/prep-k8s-RedHat.yml", "content": "- name: Add K8S repo\n become: yes\n template:\n src: kubernetes.repo.j2\n dest: /etc/yum.repos.d/kubernetes.repo\n mode: 0640\n\n- name: Install K8S packages\n become: yes\n dnf:\n name: \"{{ item }}-{{ k8s.version }}\"\n lo...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1649, "all_permissive": false }
ansible_role
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/prep_masters
7,773
[ "no_license" ]
[ { "path": "roles/prep_masters/defaults/main.yml", "content": "firewalld_open_port_list: \n- \"22/tcp\"\n- \"179/tcp\"\n- \"5473/tcp\"\n- \"4789/tcp\"\n- \"6783/tcp\"\n- \"6783-6784/udp\"\n- \"8472/udp\"\n- \"6443/tcp\"\n- \"2379-2380/tcp\"\n- \"10250/tcp\"\n- \"10251/tcp\"\n- \"10252/tcp\"\n- \"10255/tcp\"\...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1465, "all_permissive": false }
ansible_role
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/prep_nodes
7,773
[ "no_license" ]
[ { "path": "roles/prep_nodes/defaults/main.yml", "content": "firewalld_open_port_list: \n- \"22/tcp\"\n- \"179/tcp\"\n- \"2379-2380/tcp\"\n- \"5473/tcp\"\n- \"4789/tcp\"\n- \"4240/tcp\"\n- \"6783/tcp\"\n- \"6783-6784/udp\"\n- \"8472/udp\"\n- \"6443/tcp\"\n- \"2379-2380/tcp\"\n- \"10250/tcp\"\n- \"10251/tcp\"...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 744, "all_permissive": false }
ansible_role
pascal71/k8s4all-ansible
c51df0d4b0b9d89bc1cf34580b9bed5a63d74fd1
1
roles/storage
7,773
[ "no_license" ]
[ { "path": "roles/storage/tasks/main.yml", "content": "#- name: Destroy old PVs\n# become: yes\n# shell: dd if=/dev/zero of=/dev/vdb bs=1024k count=10\n\n- name: Create VG /dev/{{ k8s.vg_name_containers }} using {{ k8s.pvs }}\n become: yes\n lvg:\n vg: \"{{ k8s.vg_name_containers }}\"\n pvs: \"{{ k...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1678, "all_permissive": false }
ansible_role
mohdtarique/ansible-cicd-lab
5263b1d7105f2b0a511f32880cc7d505a68f5258
0
roles/common
7,773
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\r\n- name: Update APT package cache\r\n ansible.builtin.apt:\r\n update_cache: yes\r\n cache_valid_time: 3600\r\n\r\n- name: Ensure curl is installed\r\n ansible.builtin.apt:\r\n name: curl\r\n state: present", "license_type": "no_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 208, "all_permissive": false }
ansible_role
mohdtarique/ansible-cicd-lab
5263b1d7105f2b0a511f32880cc7d505a68f5258
0
roles/nginx
7,773
[ "no_license" ]
[ { "path": "roles/nginx/templates/index.html.j2", "content": "<!DOCTYPE html>\r\n<html>\r\n<head>\r\n <title>Welcome!</title>\r\n <style>\r\n body { font-family: sans-serif; text-align: center; background-color: #f0f0f0; padding-top: 50px; }\r\n div { background-color: white; border: 1px ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1551, "all_permissive": false }
ansible_role
lewiseason/ansible
557041745e436ff40f522136bae77f2c3fdaf04a
0
roles/laptop
7,773
[ "no_license" ]
[ { "path": "roles/laptop/tasks/packages.yml", "content": "- name: Packages\n become: yes\n package: name=\"{{ item }}\" state=installed\n with_items:\n - xbacklight\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 107 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 107, "all_permissive": false }
ansible_role
lewiseason/ansible
557041745e436ff40f522136bae77f2c3fdaf04a
0
roles/workstation
7,773
[ "no_license" ]
[ { "path": "roles/workstation/tasks/main.yml", "content": "---\n- include: packages.yml\n- include: installers.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 54 }, { "path": "roles/workstation/tasks/packages.yml", "content": "---\n- name: Repositories\n ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2305, "all_permissive": false }
ansible_role
v-homsi/evmos-deploy
d628da0a19eea7aee92d5a6a7b7055b85c98f512
1
ansible/roles/base
7,773
[ "no_license" ]
[ { "path": "ansible/roles/base/vars/aarch64.yml", "content": "---\narch: \"arm64\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 18 }, { "path": "ansible/roles/base/vars/x86_64.yml", "content": "---\narch: \"x86_64\"\n", "license_type": "no_license", ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1479, "all_permissive": false }
ansible_role
v-homsi/evmos-deploy
d628da0a19eea7aee92d5a6a7b7055b85c98f512
1
ansible/roles/evmos
7,773
[ "no_license" ]
[ { "path": "ansible/roles/evmos/templates/evmosd.service.j2", "content": "[Unit]\nDescription=EVMOS\nWants=network-online.target\nAfter=network-online.target\nConditionPathExists={{ evmos_home_path }}/data\n\n[Service]\nType=simple\nUser={{ user }}\nGroup={{ group }}\nLimitNOFILE=50000\n\nRestart=always\nRes...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 9048, "all_permissive": false }
ansible_role
v-homsi/evmos-deploy
d628da0a19eea7aee92d5a6a7b7055b85c98f512
1
ansible/roles/node-exporter
7,773
[ "no_license" ]
[ { "path": "ansible/roles/node-exporter/vars/x86_64.yml", "content": "---\narch: \"amd64\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 18 }, { "path": "ansible/roles/node-exporter/templates/node-exporter.service.j2", "content": "[Unit]\nDescription=Node Ex...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1854, "all_permissive": false }
ansible_role
tiida-red/aap-test
dc5cf4f7ad441801b2c91f2822ac697c9f8aafcb
0
roles/get_public_ip
7,773
[ "no_license" ]
[ { "path": "roles/get_public_ip/tasks/main.yml", "content": "---\n- name: Get AWS metadata api_token\n ansible.builtin.uri:\n url: \"http://169.254.169.254/latest/api/token\"\n method: PUT\n headers:\n X-aws-ec2-metadata-token-ttl-seconds: \"21600\"\n return_content: yes\n register: metada...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 625, "all_permissive": false }
ansible_role
joecoolish/kafka-infrastructure-ansible
a74922a15c64d20e4f2343e94a7138ed7077083f
2
roles/azure.infrastructure
7,773
[ "no_license" ]
[ { "path": "roles/azure.infrastructure/tasks/common.yml", "content": "- name: check if ssh key exists\n stat:\n path: \"{{ssh_path}}\"\n register: ssh_exists\n- name: Create SSH Key\n openssh_keypair:\n path: \"{{ssh_path}}\"\n force: True\n async: 6000\n poll: 0\n register: ssh_async\n when:...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 8114, "all_permissive": false }
ansible_role
joecoolish/kafka-infrastructure-ansible
a74922a15c64d20e4f2343e94a7138ed7077083f
2
roles/git.confluent
7,773
[ "no_license" ]
[ { "path": "roles/git.confluent/templates/confluent_hosts.j2", "content": "---\nall:\n vars:\n ansible_ssh_private_key_file: {{ssh_path}}\n {% for var in confluent_global %}\n{{var}}: {{confluent_global[var]}}\n {% endfor %}\n\n{% for group in groups | difference(['all', 'ungrouped']) %}\n{{group}}...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1316, "all_permissive": false }
ansible_role
RoValentim/hpd-devops
fb439bbb096fe260b8c3a6953a73c0e0f41959aa
0
Ansible/WordPress/roles/mysql
7,773
[ "no_license" ]
[ { "path": "Ansible/WordPress/roles/mysql/tasks/main.yml", "content": "---\n- name: Install Mysql package\n yum: name={{ item }} state=present\n with_items:\n - mariadb.x86_64\n - mariadb-server\n - MySQL-python\n - libselinux-python\n - libsemanage-python\n\n- name: Configure SELinux to start my...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 541, "all_permissive": false }
ansible_role
Cour-de-cassation/juritcom
8da9e1bc40ec70c670a823eb48eeb27eff602ec9
0
ansible/roles/deploy_juritcom
7,773
[ "no_license" ]
[ { "path": "ansible/roles/deploy_juritcom/tasks/secret/secret_s3.yml", "content": "---\n- name: Creation secrets s3\n k8s:\n apply: true\n state: present\n verify_ssl: true\n definition:\n apiVersion: v1\n kind: Secret\n metadata:\n name: s3-secret\n namespace: \"{{ ...
{ "task_files": 7, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 6378, "all_permissive": false }
ansible_role
npongratz/webapp-prototype
eac50098acdad7a21de73e11cdf789410f5fb91d
0
ansible/roles/geerlingguy.nfs
7,773
[ "no_license" ]
[ { "path": "ansible/roles/geerlingguy.nfs/tasks/main.yml", "content": "---\n# Setup/install tasks.\n- include: setup-RedHat.yml\n when: ansible_os_family == 'RedHat'\n\n- include: setup-Debian.yml\n when: ansible_os_family == 'Debian'\n\n- name: Copy exports file.\n template:\n src: exports.j2\n des...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1343, "all_permissive": false }
ansible_role
npongratz/webapp-prototype
eac50098acdad7a21de73e11cdf789410f5fb91d
0
ansible/roles/npongratz.fileserver-linux
7,773
[ "no_license" ]
[ { "path": "ansible/roles/npongratz.fileserver-linux/README.md", "content": "# Ansible Role: run fileserver-linux on startup\n\nThis role ensures fileserver-linux is running upon startup (in theory). TODO: see if this is true.\n\nBased on geerlingguy.packer-rhel\n\n## Requirements\n\nPrior to running this ro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2840, "all_permissive": false }
ansible_role
stevester94/CSC255_Project
328f858afb02915b2ee753f49ca83123c9d177de
1
roles/openvpn_tunnel
7,781
[ "no_license" ]
[ { "path": "roles/openvpn_tunnel/templates/server.conf.j2", "content": "# Server\n\nport {{ openvpn_server_port }}\nproto {{ openvpn_server_proto }}\n\ndev tun1\n\nca ca.crt\ncert {{ inventory_hostname }}.crt\nkey {{ inventory_hostname }}.key # This file should be kept secret\ndh dh.pem\n\n{# topology subne...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 8106, "all_permissive": false }
ansible_role
stevester94/CSC255_Project
328f858afb02915b2ee753f49ca83123c9d177de
1
roles/wireguard_tunnel
7,781
[ "no_license" ]
[ { "path": "roles/wireguard_tunnel/tasks/main.yml", "content": "---\n- name: Add WireGuard PPA (Ubuntu)\n apt_repository:\n repo: \"ppa:wireguard/wireguard\"\n when:\n - ansible_distribution == \"Ubuntu\"\n\n- name: Install linux headers (Ubuntu)\n apt:\n update_cache: yes\n state: present\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4130, "all_permissive": false }
ansible_role
lxygwqf9527/ansible
eab7e3b1b522aa3483c01f623babae7f55fe5291
0
roles/kubernetes
7,781
[ "no_license" ]
[ { "path": "roles/kubernetes/files/kubeadm/init.yml", "content": "---\napiVersion: kubeadm.k8s.io/v1beta3\nbootstrapTokens:\n- groups:\n - system:bootstrappers:kubeadm:default-node-token\n token: <PASSWORD>\n ttl: 24h0m0s\n usages:\n - signing\n - authentication\nkind: InitConfiguration\nlocalAPIEndpoi...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 4663, "all_permissive": false }
ansible_role
lxygwqf9527/ansible
eab7e3b1b522aa3483c01f623babae7f55fe5291
0
roles/system_init
7,781
[ "no_license" ]
[ { "path": "roles/system_init/tasks/Ubuntu.yml", "content": "- name: Update system\n apt:\n upgrade: yes\n \n when: ansible_distribution == 'Ubuntu'", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "roles/system_init/tasks/Centos-7.yml", "co...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 7956, "all_permissive": false }
ansible_role
takkyuuplayer/ansible-exercise
3d7bede443232a939faa733b153b694422717c2e
0
roles/common
7,781
[ "no_license" ]
[ { "path": "roles/common/tasks/development.yml", "content": "---\n- name: Install development tools\n apt:\n name:\n - ack-grep\n - apache2-utils\n - dstat\n - git\n - git-core\n - jq\n - screen\n - sqlite3\n - tmux\n - tree\n - vim\n - zip\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 573, "all_permissive": false }
ansible_role
akhileshmishrabiz/may-bootcamp
c9918cf5feb40a06b3c3ac15c66a89f92d74928a
2
class11/image2/ansible/roles/common
7,781
[ "no_license" ]
[ { "path": "class11/image2/ansible/roles/common/tasks/main.yml", "content": "---\n# Common role tasks\n\n- name: Configure SSH\n block:\n - name: Update SSH configuration\n template:\n src: sshd_config.j2\n dest: /etc/ssh/sshd_config\n owner: root\n group: root\n m...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 8658, "all_permissive": false }
ansible_role
Cylinder471/Ansible5.2
3155781e1c22e3b78f0d0dcb1faeedb5d48b77da
0
roles/docker
7,781
[ "no_license" ]
[ { "path": "roles/docker/handlers/main.yml", "content": "---\n- name: Restart Docker to apply changes\n systemd:\n name: docker\n state: restarted\n enabled: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 110 }, { "path": "roles/docker/tasks/main.ym...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2997, "all_permissive": false }
ansible_role
Cylinder471/Ansible5.2
3155781e1c22e3b78f0d0dcb1faeedb5d48b77da
0
roles/nginx
7,781
[ "no_license" ]
[ { "path": "roles/nginx/templates/index.html.j2", "content": "<!doctype html>\n<html lang=\"en\">\n<head>\n <title>HTML Document Template</title>\n <style>\n p {\n font-family: Arial;\n }\n </style>\n</head>\n<body>\n <p>Hello, <NAME>!</p>\n <script>\n console.log(document.querySelector('p...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 1909, "all_permissive": false }
ansible_role
atSistemas/techfriday
699397f9c81ff4740dff78d86973b59a0b8cc516
1
20160129_Vagrant_Ansible_Docker/workshop/mean/roles/base
7,781
[ "no_license" ]
[ { "path": "20160129_Vagrant_Ansible_Docker/workshop/mean/roles/base/tasks/main.yml", "content": "---\n\n\n\n#- name: Install base packages\n# apt: name={{ item }} force=yes state=latest\n# with_items:\n# - build-essential\n# - ntp\n# - htop\n# - git\n# - nodejs\n# - npm\n# tags: package...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 802, "all_permissive": false }
ansible_role
kumsa-Mergia/Ansible-Mastery
7634d64bb9b14fc5fb396c0a94153b8d2c793a21
0
intermediate/roles/nginx
7,781
[ "no_license" ]
[ { "path": "intermediate/roles/nginx/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: mastering Ansible\n company: FIGURING OUT\n license: MIT\n min_ansible_version: 2.1\n\n platforms:\n - name: Fedora\n versions:\n - all\n\n galaxy_tags:\n - nginx\n - web\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 2172, "all_permissive": false }
ansible_role
Dauxdu/ansible
212a3f1acde91db2d66d455f3d6f3b66b718fd34
1
roles/common
7,781
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Update apt cache (Debian/Ubuntu)\n apt:\n update_cache: true\n when: ansible_os_family == \"Debian\"\n\n- name: Update yum cache (RHEL/CentOS)\n yum:\n name: \"*\"\n state: latest\n when: ansible_os_family == \"RedHat\"\n\n- name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 446, "all_permissive": false }
ansible_role
Dauxdu/ansible
212a3f1acde91db2d66d455f3d6f3b66b718fd34
1
roles/firewall
7,781
[ "no_license" ]
[ { "path": "roles/firewall/tasks/main.yml", "content": "---\n- name: Install UFW (Debian/Ubuntu)\n apt:\n name: ufw\n state: present\n when: ansible_os_family == \"Debian\"\n\n- name: Set UFW default policy to deny incoming traffic (Debian/Ubuntu)\n ufw:\n direction: incoming\n policy: deny\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1045, "all_permissive": false }
ansible_role
Dauxdu/ansible
212a3f1acde91db2d66d455f3d6f3b66b718fd34
1
roles/motd
7,781
[ "no_license" ]
[ { "path": "roles/motd/tasks/main.yml", "content": "---\n- name: Remove static MOTD file\n file:\n path: /etc/motd\n state: absent\n\n- name: Create symbolic link for MOTD\n file:\n src: /var/run/motd\n dest: /etc/motd\n state: link\n force: true\n follow: false\n\n- name: Create dynam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1441, "all_permissive": false }
ansible_role
Dauxdu/ansible
212a3f1acde91db2d66d455f3d6f3b66b718fd34
1
roles/ntp
7,781
[ "no_license" ]
[ { "path": "roles/ntp/handlers/main.yml", "content": "---\n- name: restart ntp\n systemd:\n name: \"{{ 'ntp' if ansible_os_family == 'Debian' else 'ntpd' }}\"\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 125 }, { "path": "roles/ntp/tas...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1045, "all_permissive": false }
ansible_role
Dauxdu/ansible
212a3f1acde91db2d66d455f3d6f3b66b718fd34
1
roles/ssh
7,781
[ "no_license" ]
[ { "path": "roles/ssh/tasks/main.yml", "content": "---\n- name: Ensure SSH service is enabled and started\n service:\n name: ssh\n enabled: true\n state: started\n\n- name: Configure SSH\n lineinfile:\n path: /etc/ssh/sshd_config\n regexp: \"^{{ item.regexp }}\"\n line: \"{{ item.line }}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 768, "all_permissive": false }
ansible_role
Dauxdu/ansible
212a3f1acde91db2d66d455f3d6f3b66b718fd34
1
roles/users
7,781
[ "no_license" ]
[ { "path": "roles/users/tasks/main.yml", "content": "---\n- name: Generate hashed password\n set_fact:\n hashed_password: \"{{ <PASSWORD> | string | password_hash('<PASSWORD>') }}\"\n\n- name: Create admin user\n user:\n name: \"{{ admin_user }}\"\n password: \"{{ <PASSWORD> }}\"\n groups: sudo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 675, "all_permissive": false }
ansible_role
vggscqq/ansible-system-config
f5bfebb178948badb131eff2226994e526c068a0
1
roles/base
7,781
[ "no_license" ]
[ { "path": "roles/base/files/users/vgscq/bin/rclone-mount.sh", "content": "#!/bin/bash\n\n\nrmount () {\n (\\\n setsid rclone mount --rc --rc-addr=127.0.0.1:5572 vggscqq-gdrive: ~/cloud/vggscqq-gdrive/ &> /dev/null & \\\n setsid rclone mount --rc --rc-addr=127.0.0.1:5573 ...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 29, "total_bytes": 31342, "all_permissive": false }
ansible_role
vggscqq/ansible-system-config
f5bfebb178948badb131eff2226994e526c068a0
1
roles/workstation
7,781
[ "no_license" ]
[ { "path": "roles/workstation/tasks/desktop_environments/gnome/appearance.yml", "content": "- name: Gnome | appearance | set dark theme\n tags: gnome,gnome-wallpaper\n become_user: vgscq\n become: true\n community.general.dconf:\n key: \"/org/gnome/desktop/interface/color-scheme\"\n value: \"'prefe...
{ "task_files": 11, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 16, "total_bytes": 26438, "all_permissive": false }
ansible_role
unmilb/ansible-cassandra
0192e73f8d82cd03c0c1fbbe50a3682c306ba5ad
0
roles/cassandra
7,781
[ "no_license" ]
[ { "path": "roles/cassandra/tasks/main.yml", "content": "---\n\n- include: repository.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "roles/cassandra/vars/main.yml", "content": "---\n# seeds_var : <seed-ip-1>\n# seeds_var2 : <seed-ip-2>\n#...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1248, "all_permissive": false }
ansible_role
unmilb/ansible-cassandra
0192e73f8d82cd03c0c1fbbe50a3682c306ba5ad
0
roles/cassandra-backup
7,781
[ "no_license" ]
[ { "path": "roles/cassandra-backup/tasks/main.yml", "content": "---\n- template:\n src: /etc/ansible/roles/cassandra-backup/template/cassandra-backup.sh.j2\n dest: /root/cassandra-backup.sh\n mode: 700\n\n- name: Backup using scripts saved at /var/lib/cassandra/backup\n command: sh /root/cassandra-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 248, "all_permissive": false }
ansible_role
unmilb/ansible-cassandra
0192e73f8d82cd03c0c1fbbe50a3682c306ba5ad
0
roles/java-8
7,781
[ "no_license" ]
[ { "path": "roles/java-8/tasks/main.yml", "content": "---\n- name: Install add-apt-repostory\n become: yes\n apt: name=software-properties-common state=latest\n\n- name: Ensure java is installed .\n apt: name=openjdk-8-jre-headless state=present\n become: true\n\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 205, "all_permissive": false }
ansible_role
dwedia/reinstallAtomicRepo
faf3cc9cca980bcd14b47730b9e1652ee81fff8c
0
roles/alacrittySetup
7,781
[ "no_license" ]
[ { "path": "roles/alacrittySetup/tasks/main.yml", "content": "---\n- name: Create terminator config folder\n ansible.builtin.file:\n path: \"{{ ansible_user_dir }}/.config/alacritty/\"\n state: directory\n mode: 0744\n owner: \"{{ ansible_user_id }}\"\n group: \"{{ ansible_user_id }}\"\n\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 881, "all_permissive": false }
ansible_role
dwedia/reinstallAtomicRepo
faf3cc9cca980bcd14b47730b9e1652ee81fff8c
0
roles/distroboxInstall
7,781
[ "no_license" ]
[ { "path": "roles/distroboxInstall/tasks/main.yml", "content": "---\n- name: Create distrobox containers\n ansible.builtin.shell:\n cmd: yes | distrobox create -n \"{{ item }}\" -i fedora:42\n loop:\n - fwsbox\n changed_when: false\n\n- name: Install packages in fwsbox container\n become: no\n ans...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1294, "all_permissive": false }
ansible_role
dwedia/reinstallAtomicRepo
faf3cc9cca980bcd14b47730b9e1652ee81fff8c
0
roles/flatpakInstall
7,781
[ "no_license" ]
[ { "path": "roles/flatpakInstall/tasks/main.yml", "content": "---\n- name: Add the flathub flatpak repository remote to the user installation\n community.general.flatpak_remote:\n name: flathub\n state: present\n flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo\n method: user\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1233, "all_permissive": false }
ansible_role
dwedia/reinstallAtomicRepo
faf3cc9cca980bcd14b47730b9e1652ee81fff8c
0
roles/layeredPackageInstall
7,781
[ "no_license" ]
[ { "path": "roles/layeredPackageInstall/tasks/main.yml", "content": "---\n- name: remove unwanted layered packages\n community.general.rpm_ostree_pkg:\n name: firefox firefox-langpacks-127.0-1.fc40.x86_64\n state: absent\n failed_when: false\n\n- name: Install desired layered packages\n community.ge...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 360, "all_permissive": false }
ansible_role
dwedia/reinstallAtomicRepo
faf3cc9cca980bcd14b47730b9e1652ee81fff8c
0
roles/terminatorSetup
7,781
[ "no_license" ]
[ { "path": "roles/terminatorSetup/tasks/main.yml", "content": "---\n- name: Create terminator config folder\n ansible.builtin.file:\n path: \"{{ ansible_user_dir }}/.config/terminator/\"\n state: directory\n mode: 0744\n owner: \"{{ ansible_user_id }}\"\n group: \"{{ ansible_user_id }}\"\n\n-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 473, "all_permissive": false }
ansible_role
anithagoutham/roboshop-mutable-ansible
baa94d720d69bea753d0d9c92795a6190203e167
0
roles/prometheus
7,781
[ "no_license" ]
[ { "path": "roles/prometheus/templates/prometheus.yml", "content": "# my global config\nglobal:\n scrape_interval: 15s\n evaluation_interval: 15s\n\nalerting:\n alertmanagers:\n - static_configs:\n - targets:\n\nrule_files:\n - alert-rules.yml\n\n#scrape_configs:\n #- job_name: \"prometheus\"\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1107, "all_permissive": false }
ansible_role
tonykay/solution_ansible_advanced_openstack
d86d8391270050503728fc32d8ee285c198a9704
1
collections/ansible_collections/tok/openstack/roles/openstack_control_node_setup
7,781
[ "no_license" ]
[ { "path": "collections/ansible_collections/tok/openstack/roles/openstack_control_node_setup/tasks/main.yml", "content": "---\n\n- name: Control Node privileged configuration\n block:\n\n - name: Install pre-requisite yum packages\n package:\n name: \"{{ _yum_packages }}\"\n state: lat...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1790, "all_permissive": false }
ansible_role
tonykay/solution_ansible_advanced_openstack
d86d8391270050503728fc32d8ee285c198a9704
1
collections/ansible_collections/tok/openstack/roles/openstack_manage_flavors
7,781
[ "no_license" ]
[ { "path": "collections/ansible_collections/tok/openstack/roles/openstack_manage_flavors/tasks/main.yml", "content": "---\n\n- when: openstack_flavors is not defined\n name: openstack_flavors is not defined\n debug:\n msg: openstack_flavors is not defined\n\n- when: openstack_flavors is defined\n name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 583, "all_permissive": false }
ansible_role
tonykay/solution_ansible_advanced_openstack
d86d8391270050503728fc32d8ee285c198a9704
1
collections/ansible_collections/tok/openstack/roles/openstack_manage_images
7,781
[ "no_license" ]
[ { "path": "collections/ansible_collections/tok/openstack/roles/openstack_manage_images/tasks/main.yml", "content": "---\n\n- when: openstack_images is not defined\n name: openstack_images is not defined\n debug:\n msg: openstack_images is not defined\n\n- when: openstack_images is defined\n name: Mana...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 694, "all_permissive": false }
ansible_role
tonykay/solution_ansible_advanced_openstack
d86d8391270050503728fc32d8ee285c198a9704
1
collections/ansible_collections/tok/openstack/roles/openstack_manage_inmemory_inventory
7,781
[ "no_license" ]
[ { "path": "collections/ansible_collections/tok/openstack/roles/openstack_manage_inmemory_inventory/tasks/main.yml", "content": "---\n\n- name: Generate inmemory inventory\n block:\n\n - name: Fetch Instance Info\n os_server_info:\n cloud: \"{{ openstack_cloud | default('openstack') }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1261, "all_permissive": false }
ansible_role
tonykay/solution_ansible_advanced_openstack
d86d8391270050503728fc32d8ee285c198a9704
1
collections/ansible_collections/tok/openstack/roles/openstack_manage_keypair
7,781
[ "no_license" ]
[ { "path": "collections/ansible_collections/tok/openstack/roles/openstack_manage_keypair/tasks/main.yml", "content": "---\n\n- when: openstack_keypair is not defined\n name: openstack_keypair is not defined\n debug:\n msg: openstack_keypair is not defined\n\n- when: openstack_keypair is defined\n name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1063, "all_permissive": false }
ansible_role
tonykay/solution_ansible_advanced_openstack
d86d8391270050503728fc32d8ee285c198a9704
1
collections/ansible_collections/tok/openstack/roles/openstack_manage_networks
7,781
[ "no_license" ]
[ { "path": "collections/ansible_collections/tok/openstack/roles/openstack_manage_networks/tasks/main.yml", "content": "---\n\n- when: openstack_networks is not defined\n name: openstack_networks is not defined\n debug:\n msg: openstack_networks is not defined\n\n- when: openstack_networks is defined\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3906, "all_permissive": false }
ansible_role
tonykay/solution_ansible_advanced_openstack
d86d8391270050503728fc32d8ee285c198a9704
1
collections/ansible_collections/tok/openstack/roles/openstack_manage_servers
7,781
[ "no_license" ]
[ { "path": "collections/ansible_collections/tok/openstack/roles/openstack_manage_servers/tasks/main.yml", "content": "- name: Create server instances\n os_server:\n cloud: \"{{ openstack_cloud | default('openstack') }}\"\n name: \"{{ item.instance_name }}\"\n state: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2333, "all_permissive": false }
ansible_role
tonykay/solution_ansible_advanced_openstack
d86d8391270050503728fc32d8ee285c198a9704
1
collections/ansible_collections/tok/openstack/roles/openstack_smoketest_auth
7,781
[ "no_license" ]
[ { "path": "collections/ansible_collections/tok/openstack/roles/openstack_smoketest_auth/tasks/main.yml", "content": "---\n\n- name: Validate OpenStack Control Node can authenticate\n os_auth:\n cloud: \"{{ openstack_cloud | default('openstack') }}\"\n", "license_type": "no_license", "detected_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 131, "all_permissive": false }
ansible_role
tonykay/solution_ansible_advanced_openstack
d86d8391270050503728fc32d8ee285c198a9704
1
collections/ansible_collections/tok/openstack/roles/openstack_test_role
7,781
[ "no_license" ]
[ { "path": "collections/ansible_collections/tok/openstack/roles/openstack_test_role/tasks/main.yml", "content": "---\n\n- name: Just a test role debug task\n debug:\n msg: Hello from test_role in the tok.openstack collection\n", "license_type": "no_license", "detected_licenses": [], "size_byt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 112, "all_permissive": false }
ansible_role
ATIX-AG/acd_playbook_for_prometheus_grafana
78d143fc88947a97f533137bd7a5d6b43870ebad
1
roles/grafana
7,781
[ "no_license" ]
[ { "path": "roles/grafana/tasks/main.yml", "content": "---\n- name: \"Install Grafana\"\n yum:\n name: \"{{gfn_dl_link}}\"\n become: \"true\"\n\n- name: \"Create Grafana Configuration file from Template\"\n template:\n src: \"grafana.ini.j2\"\n dest: \"/etc/grafana/grafana.ini\"\n become: \"true...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 11495, "all_permissive": false }
ansible_role
ATIX-AG/acd_playbook_for_prometheus_grafana
78d143fc88947a97f533137bd7a5d6b43870ebad
1
roles/prometheus
7,781
[ "no_license" ]
[ { "path": "roles/prometheus/templates/prometheus.service.j2", "content": "[Unit]\nDescription = prometheus\nWants = network.target\nAfter = network.target\n\n[Service]\nExecStart = {{pmt_dir}}/prometheus-{{pmt_vers}}.{{pmt_os}}-{{pmt_arch}}/prometheus --config.file={{pmt_dir}}/prometheus-{{pmt_vers}}.{{pmt_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1915, "all_permissive": false }
ansible_role
andrei-madalin/Deploy_Cisco_CMS_with_Ansible
3f988507569737fc2b74e0a9f4f613561c320ddc
0
roles/cms_config
7,781
[ "no_license" ]
[ { "path": "roles/cms_config/tasks/cospace_templates.yml", "content": "# Add CoSpaceTemplates\n\n- name: Add CoSpaceTemplates POST\n uri:\n url: https://{{ ansible_host }}:{{ webadmin_port | default('8443') }}/api/v1/coSpaceTemplates\n method: POST\n force_basic_auth: yes\n user: \"{{ ansible_u...
{ "task_files": 10, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 10, "total_bytes": 17932, "all_permissive": false }
ansible_role
pluralsh/stack-examples
81486681c6eca7e8695b0178dcda175224e674eb
0
ansible/roles/configs
7,781
[ "no_license" ]
[ { "path": "ansible/roles/configs/files/.vimrc", "content": "\"<NAME> (<EMAIL>) vim configuration file\n\n\" For all text files set 'textwidth' to 78 characters.\nautocmd FileType text setlocal textwidth=78\n\n\" Search Configuration\nset ignorecase \" Case Insensitivity\nset smartcase ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 10188, "all_permissive": false }
ansible_role
pluralsh/stack-examples
81486681c6eca7e8695b0178dcda175224e674eb
0
ansible/roles/fs
7,781
[ "no_license" ]
[ { "path": "ansible/roles/fs/tasks/main.yml", "content": "# vim:ft=ansible\n\n- name: Update /etc/fstab\n become: true\n mount:\n path: \"{{ item.path }}\"\n src: \"{{ item.src }}\"\n fstype: \"{{ item.fstype }}\"\n opts: \"{{ item.opts }}\"\n state: mounted\n loop: \"{{ fs_mounts }}\"\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 227, "all_permissive": false }
ansible_role
pluralsh/stack-examples
81486681c6eca7e8695b0178dcda175224e674eb
0
ansible/roles/golang
7,781
[ "no_license" ]
[ { "path": "ansible/roles/golang/tasks/main.yaml", "content": "- name: Download go {{go.version}} tar file for linux-{{ go.arch }}\n command: wget https://go.dev/dl/go{{go.version}}.linux-{{ go.arch }}.tar.gz\n\n- name: Delete previous go installation\n become: true\n command: rm -rf {{ go.root }}/go\n\n-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 477, "all_permissive": false }
ansible_role
pluralsh/stack-examples
81486681c6eca7e8695b0178dcda175224e674eb
0
ansible/roles/packages
7,781
[ "no_license" ]
[ { "path": "ansible/roles/packages/tasks/main.yaml", "content": "# vim:ft=ansible\n\n- name: Install packages with apt\n when: ansible_pkg_mgr == \"apt\"\n become: true\n apt:\n pkg: \"{{ packages }}\"\n state: present\n update_cache: yes\n\n- name: Install packages with yum\n when: ansible_pkg_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 657, "all_permissive": false }
ansible_role
qmtmabbu-cpe/MidExam_Abbu
602c37f4fc37649af01acbd3750967efcc7f379b
0
roles/grafana
7,781
[ "no_license" ]
[ { "path": "roles/grafana/tasks/main.yml", "content": "\n---\n# tasks file for grafana\n - name: Add repo for Grafana\n copy:\n src: grafana.repo\n dest: /etc/yum.repos.d/\n when: ansible_distribution == \"CentOS\"\n\n - name: Install Grafana\n yum: \n name: grafana\n state: la...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 912, "all_permissive": false }
ansible_role
qmtmabbu-cpe/MidExam_Abbu
602c37f4fc37649af01acbd3750967efcc7f379b
0
roles/nagios
7,781
[ "no_license" ]
[ { "path": "roles/nagios/tasks/nagios_plugins.yml", "content": "---\n# tasks file for nagios_plugins\n - name: Install Nagios Plugins\n unarchive:\n src: https://nagios-plugin.org/download/nagios-plugins-2.3.3.tar.gz\n dest: /tmp\n remote_src: yes\n\n - name: Configure Nagios Plugins\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2478, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/ghostty
7,778
[ "no_license" ]
[ { "path": "roles/ghostty/tasks/main.yml", "content": "---\n- name: Setup ghostty config\n ansible.builtin.file:\n src: \"{{ role_path }}/files\"\n dest: ~/.config/ghostty\n mode: u=rwx,go=r\n state: link\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
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/git
7,778
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "---\n- name: Setup symlinks for git\n ansible.builtin.file:\n src: \"{{ role_path }}/files\"\n dest: ~/.config/git\n mode: u=rwx,go=r\n state: link\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 153 }, {...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1113, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/graphite
7,778
[ "no_license" ]
[ { "path": "roles/graphite/tasks/main.yml", "content": "---\n- name: Setup graphite config\n ansible.builtin.file:\n src: \"{{ role_path }}/files\"\n dest: ~/.config/graphite\n mode: u=rwx,go=r\n state: link\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 157...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 157, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/nushell
7,778
[ "no_license" ]
[ { "path": "roles/nushell/files/config.nu", "content": "# config.nu\n#\n# Installed by:\n# version = \"0.101.0\"\n#\n# This file is used to override default Nushell settings, define\n# (or import) custom commands, or run any other startup tasks.\n# See https://www.nushell.sh/book/configuration.html\n#\n# Thi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2545, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/nvim
7,778
[ "no_license", "permissive" ]
[ { "path": "roles/nvim/files/nvim/lua/plugins/colorizer.lua", "content": "return {\n {\n \"norcalli/nvim-colorizer.lua\",\n event = \"BufEnter\",\n lazy = true,\n opts = { \"*\" },\n },\n}\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 15, "total_bytes": 10099, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/package_management
7,778
[ "no_license" ]
[ { "path": "roles/package_management/tasks/packages.yml", "content": "---\n- name: Install Homebrew Formulae\n when: ansible_os_family == 'Darwin'\n community.general.homebrew:\n update_homebrew: true\n state: present\n name: \"{{ brew_formula_packages }}\"\n\n- name: Install Paru packages\n when...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2435, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/scripts
7,778
[ "no_license" ]
[ { "path": "roles/scripts/files/tmux-sessionizer", "content": "#!/usr/bin/env bash\n\nif [[ $# -eq 1 ]]; then\n\tselected=$1\nelse\n\tselected=$(find -L ~ ~/code ~/code/.personal ~/code/.sources ~/.config -mindepth 1 -maxdepth 1 -type d | fzf)\nfi\n\nif [[ -z $selected ]]; then\n\texit 0\nfi\n\nselected_name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1964, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/sketchybar
7,778
[ "no_license" ]
[ { "path": "roles/sketchybar/tasks/main.yml", "content": "---\n- name: Setup sketchybar config\n when: ansible_os_family == 'Darwin' # Only for Mac\n ansible.builtin.file:\n src: \"{{ role_path }}/files/sketchybar\"\n dest: ~/.config/sketchybar\n mode: u=rwx,go=r\n state: link\n", "license_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 225, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/ssh
7,778
[ "no_license" ]
[ { "path": "roles/ssh/tasks/main.yml", "content": "---\n- name: Find SSH files\n register: ssh_files\n ansible.builtin.find:\n paths: \"{{ role_path }}/files\"\n file_type: file\n recurse: false\n\n- name: Check if SSH keys are setup\n register: ssh_keys_check\n ansible.builtin.stat:\n path: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 697, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/starship
7,778
[ "no_license" ]
[ { "path": "roles/starship/files/starship.toml", "content": "# Get editor completions based on the config schema\n\"$schema\" = 'https://starship.rs/config-schema.json'\n\nformat = '''\n$directory(\\[$git_branch(\\($git_commit\\))(:$git_status( | $git_state))\\])\n$hostname[$character](bold green)\n'''\n\nri...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2512, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/tmux
7,778
[ "no_license" ]
[ { "path": "roles/tmux/files/.gitignore", "content": "**/*.log\n\nplugins\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 18 }, { "path": "roles/tmux/tasks/main.yml", "content": "---\n- name: Copy tmux config\n ansible.builtin.file:\n src: \"{{ role_path }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2075, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/volta
7,778
[ "no_license" ]
[ { "path": "roles/volta/tasks/main.yml", "content": "---\n- name: Install node@lts\n ansible.builtin.shell: volta install node\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 73, "all_permissive": false }
ansible_role
rafaelrene/ansible-starter
f390ba1421d37c3fcc1371cdaae661bc7bcd5d38
0
roles/zsh
7,778
[ "no_license" ]
[ { "path": "roles/zsh/files/zsh/.zprofile", "content": "# PATHS\nexport VOLTA_HOME=\"$XDG_CONFIG_HOME/volta\"\nexport DIVERSION_HOME=\"$XDG_CONFIG_HOME/diversion\"\nexport PNPM_HOME=\"$XDG_CONFIG_HOME/pnpm\"\nexport GOPATH=\"$XDG_CONFIG_HOME/go\"\nexport SPIN_HOME=\"$HOME/.spin\"\n\nexport PATH=\"$SPIN_HOME/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 3176, "all_permissive": false }
ansible_role
mindkeep/k8s-dev-lab
d05cd5147974be5a9aa68ac24e2ec769f9029769
1
ansible/roles/common
7,778
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/docker.yml", "content": "---\n- name: Add an apt signing key for Docker\n apt_key:\n url: https://download.docker.com/linux/debian/gpg\n state: present\n\n- name: Add apt repository for Docker stable\n apt_repository:\n repo: deb [arch=amd64] https://download...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1219, "all_permissive": false }
ansible_role
mindkeep/k8s-dev-lab
d05cd5147974be5a9aa68ac24e2ec769f9029769
1
ansible/roles/k8s-common
7,778
[ "no_license" ]
[ { "path": "ansible/roles/k8s-common/tasks/main.yml", "content": "---\n# tasks file for k8s-common\n- block:\n - include_tasks: kubernetes.yml\n become: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 }, { "path": "ansible/roles/k8s-common/tasks/kubernet...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1047, "all_permissive": false }
ansible_role
mindkeep/k8s-dev-lab
d05cd5147974be5a9aa68ac24e2ec769f9029769
1
ansible/roles/k8s-control-init
7,778
[ "no_license" ]
[ { "path": "ansible/roles/k8s-control-init/tasks/main.yml", "content": "---\n# tasks file for k8s-control-init\n- block:\n - include_tasks: create_cluster.yml\n become: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "path": "ansible/roles/k8s-cont...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1742, "all_permissive": false }
ansible_role
mindkeep/k8s-dev-lab
d05cd5147974be5a9aa68ac24e2ec769f9029769
1
ansible/roles/k8s-worker
7,778
[ "no_license" ]
[ { "path": "ansible/roles/k8s-worker/tasks/main.yml", "content": "---\n# tasks file for k8s-worker\n- include_tasks: remove-taint.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "ansible/roles/k8s-worker/tasks/remove-taint.yml", "content": ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 385, "all_permissive": false }
ansible_role
mindkeep/k8s-dev-lab
d05cd5147974be5a9aa68ac24e2ec769f9029769
1
ansible/roles/k8s-worker-join
7,778
[ "no_license" ]
[ { "path": "ansible/roles/k8s-worker-join/tasks/main.yml", "content": "---\n# tasks file for k8s-worker-join\n- block:\n - include_tasks: join_cluster.yml\n become: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 }, { "path": "ansible/roles/k8s-worker-jo...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 308, "all_permissive": false }
ansible_role
kubespray-offline/kubespray-offline
7cdc69491f607817495f961df533bca4996438ef
90
target-scripts/playbook/roles/offline-repo
7,778
[ "no_license" ]
[ { "path": "target-scripts/playbook/roles/offline-repo/tasks/main.yml", "content": "- include_tasks: \"{{ ansible_os_family }}.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 47 }, { "path": "target-scripts/playbook/roles/offline-repo/defaults/main.yml", ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 845, "all_permissive": false }
ansible_role
techiewissen/lambda-ansible-start
418c2f946248c4030534753d603f1c0d02f2b1f7
0
config/roles/common
7,778
[ "no_license" ]
[ { "path": "config/roles/common/tasks/main.yml", "content": "---\n# tasks file for common\n- name: install docker-py for build docker\n pip:\n name: boto3\n state: present\n executable: pip3\n\n# - name: install git\n# pip: \n# name: git\n# state: present\n\n# - name: checkout from reposi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 425, "all_permissive": false }
ansible_role
techiewissen/lambda-ansible-start
418c2f946248c4030534753d603f1c0d02f2b1f7
0
config/roles/lambda
7,778
[ "no_license" ]
[ { "path": "config/roles/lambda/tasks/lambda.yml", "content": "---\n- name: execute lamda based on the given function name\n execute_lambda:\n name: \"{{ name }}\"\n payload:\n foo: bar\n value: 8\n wait: true\n tail_log: true\n register: response\n # the response will have a `logs` ...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 512, "all_permissive": false }
ansible_role
cgracia/ansible_desktop
4357b60045a0eb0bc36b0fc6ae6e65bf6f21235f
0
roles/desktop
7,778
[ "no_license" ]
[ { "path": "roles/desktop/tasks/sddm.yml", "content": "- name: Install sddm\n apt:\n name: sddm\n state: present\n update_cache: yes\n become: yes\n\n- name: Preseed sddm as default display manager\n debconf:\n name: sddm\n question: \"shared/default-x-display-manager\"\n value: \"sddm\"...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 5862, "all_permissive": false }
ansible_role
d-kaylor/home_lab
caec2142dbe37231e7bc36cecc14d064308f664d
1
sno/roles/adguard
7,778
[ "no_license" ]
[ { "path": "sno/roles/adguard/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - adguard\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "sno/roles/adguard/handlers/main.yml", "content": "---\n# handlers ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1191, "all_permissive": false }
ansible_role
d-kaylor/home_lab
caec2142dbe37231e7bc36cecc14d064308f664d
1
sno/roles/haproxy
7,778
[ "no_license" ]
[ { "path": "sno/roles/haproxy/tasks/main.yml", "content": "---\n# tasks file for haproxy\n\n- name: Configure HAProxy for cluster\n template:\n src: haproxy-sno.cfg.j2\n dest: \"/etc/haproxy/conf.d/{{ cluster_name }}.cfg\"\n notify: Restart haproxy service\n", "license_type": "no_license", "d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 350, "all_permissive": false }
ansible_role
d-kaylor/home_lab
caec2142dbe37231e7bc36cecc14d064308f664d
1
sno/roles/libvirt
7,778
[ "no_license" ]
[ { "path": "sno/roles/libvirt/defaults/main.yml", "content": "---\n# defaults file for libvirt\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "sno/roles/libvirt/templates/domain.xml.j2", "content": "<domain type='kvm'>\n <name>{{ cluster_name...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3320, "all_permissive": false }
ansible_role
d-kaylor/home_lab
caec2142dbe37231e7bc36cecc14d064308f664d
1
sno/roles/lvm
7,778
[ "no_license" ]
[ { "path": "sno/roles/lvm/vars/main.yml", "content": "---\n# vars file for lvm\n\ninstall_dir: \"{{ ansible_env.HOME }}/labs\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 68 }, { "path": "sno/roles/lvm/tasks/main.yml", "content": "---\n# tasks file for lvm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3019, "all_permissive": false }
ansible_role
d-kaylor/home_lab
caec2142dbe37231e7bc36cecc14d064308f664d
1
sno/roles/sno
7,778
[ "no_license" ]
[ { "path": "sno/roles/sno/templates/agent-config.yaml.j2", "content": "apiVersion: v1alpha1\nkind: AgentConfig\nmetadata:\n name: {{ cluster_name }}\nrendezvousIP: {{ machine_ip }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 107 }, { "path": "sno/roles/sno/ha...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 4097, "all_permissive": false }
ansible_role
SreekanthGorantla/expense-ansible-roles
a9b49a81a1e43de31eee6e3b6f253dfc914f3b1f
0
roles/common
7,778
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yaml", "content": "- name: Remove existing directory\n tags:\n - deployment\n ansible.builtin.file:\n path: \"{{ APP_LOCATION }}\" # Backent folder /app, frontend /ust/share/nginx/html\n state: absent\n\n- name: carate app directory\n tags:\n - deployment\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 594, "all_permissive": false }
ansible_role
AMIS-Services/ansible_sig_1
eaacc6bca461f279e3fd1d49f3830ed2f3f4c6e9
1
ansible_completed_tutorial/roles/apache
7,778
[ "no_license" ]
[ { "path": "ansible_completed_tutorial/roles/apache/tasks/main.yml", "content": "---\n- name: ensure httpd is installed by yum\n yum:\n name: httpd\n- name: ensure reverseproxy configuration is copied\n copy:\n src: etc/httpd/conf.d/\n dest: /etc/httpd/conf.d/\n- name: ensure httpd is started\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 282, "all_permissive": false }