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
SambaEdu/poc-cl-ansible
3aba822fa5a446425d004237f840555b6cd75f6b
0
etc-ansible/roles/pammount
8,054
[ "no_license" ]
[ { "path": "etc-ansible/roles/pammount/templates/pam_mount.conf.xml.j2", "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!DOCTYPE pam_mount SYSTEM \"pam_mount.conf.xml.dtd\">\n<!--\n This file is managed by Ansible, don't edit it manually.\n See pam_mount.conf(5) for a description.\n-...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3115, "all_permissive": false }
ansible_role
SambaEdu/poc-cl-ansible
3aba822fa5a446425d004237f840555b6cd75f6b
0
etc-ansible/roles/reboot
8,054
[ "no_license" ]
[ { "path": "etc-ansible/roles/reboot/templates/reboot.sh.j2", "content": "#!/bin/sh\n\n### This file is managed by Ansible, don't edit it manually. ###\n\nexport PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\n\n# Cleaning of the cron task.\nrm -f '{{ role_reboot_cron_path }}'\n\n# Clean...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2041, "all_permissive": false }
ansible_role
SambaEdu/poc-cl-ansible
3aba822fa5a446425d004237f840555b6cd75f6b
0
etc-ansible/roles/sambamember
8,054
[ "no_license" ]
[ { "path": "etc-ansible/roles/sambamember/templates/smb.conf.j2", "content": "### This file is managed by Ansible, don't edit it manually. ###\n\n[global]\n security = ADS\n workgroup = {{ role_sambamember_workgroup }}\n realm = {{ role_sambamember_realm }}\n log file = /var/log/samba/%m.lo...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 6439, "all_permissive": false }
ansible_role
SambaEdu/poc-cl-ansible
3aba822fa5a446425d004237f840555b6cd75f6b
0
etc-ansible/roles/skel
8,054
[ "no_license" ]
[ { "path": "etc-ansible/roles/skel/tasks/main.yaml", "content": "---\n# Synchronize se4 skel to local client\n# - name: create local skel directory\n# shell: rm -Rf '{{ role_skel_client }}' && mkdir '{{ role_skel_client }}' && chown root:root '{{ role_skel_client }}' && chmod -R 700 '{{ role_skel_client }}'...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1944, "all_permissive": false }
ansible_role
adiq/djangodevbox
839d2a2ac923548207914da3e7f66a88d2880f05
1
provisioning/roles/djangobase
8,054
[ "no_license" ]
[ { "path": "provisioning/roles/djangobase/tasks/main.yml", "content": "---\n- name: DjangoBase | Symlink project\n action: file src=/vagrant/{{ django.projectdir }} dest=/var/www/devsite state=link\n\n- name: DjangoBase | Create VirtualEnv\n command: virtualenv /var/www/devsite-env --no-site-packages\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
adiq/djangodevbox
839d2a2ac923548207914da3e7f66a88d2880f05
1
provisioning/roles/nginx
8,054
[ "no_license" ]
[ { "path": "provisioning/roles/nginx/tasks/main.yml", "content": "---\n- name: NGINX | Install nginx\n apt: pkg=nginx state=present\n\n- name: NGINX | Copy site config\n template: src=devsite.j2 dest=/etc/nginx/sites-enabled/default\n\n- name: NGINX | Run nginx\n service: name=nginx state=started enabled=...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 537, "all_permissive": false }
ansible_role
adiq/djangodevbox
839d2a2ac923548207914da3e7f66a88d2880f05
1
provisioning/roles/postgres
8,054
[ "no_license" ]
[ { "path": "provisioning/roles/postgres/tasks/main.yml", "content": "---\n- name: Postgres | Install Postgres Server\n apt: pkg={{ item }} state=present\n with_items:\n - postgresql\n - postgresql-client\n - postgresql-server-dev-all\n - libpq-dev\n\n- name: Postgres | Configure access policy\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 943, "all_permissive": false }
ansible_role
adiq/djangodevbox
839d2a2ac923548207914da3e7f66a88d2880f05
1
provisioning/roles/python
8,054
[ "no_license" ]
[ { "path": "provisioning/roles/python/tasks/main.yml", "content": "---\n- name: Python | Install Python\n apt: pkg={{ item }} state=present\n with_items:\n - python\n - python-dev\n - python-setuptools\n\n- name: Python | Install PIP\n easy_install: name=pip\n\n- name: Python | Install VirtualEnv...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 254, "all_permissive": false }
ansible_role
adiq/djangodevbox
839d2a2ac923548207914da3e7f66a88d2880f05
1
provisioning/roles/system
8,054
[ "no_license" ]
[ { "path": "provisioning/roles/system/tasks/main.yml", "content": "---\n- name: Common | Update repository\n apt: update_cache=yes cache_valid_time=3600\n\n- name: Common | Install build essential\n apt: name=build-essential state=present\n\n- name: Common | Install GIT\n apt: name=git state=present\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 378, "all_permissive": false }
ansible_role
adiq/djangodevbox
839d2a2ac923548207914da3e7f66a88d2880f05
1
provisioning/roles/uwsgi
8,054
[ "no_license" ]
[ { "path": "provisioning/roles/uwsgi/templates/uwsgi.j2", "content": "[uwsgi]\nsocket = /tmp/devsite.sock\nhome = /var/www/devsite-venv\nchdir = /var/www/devsite\npythonpath = ..\napp = {{ uwsgi.appname }}.wsgi\nenv = DJANGO_SETTINGS_MODULE={{ uwsgi.appname }}.settings\nmodule = {{ uwsgi.appname }}.wsgi:appl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 476, "all_permissive": false }
ansible_role
pettamchandu73/UPtime_audit
abfd0afe7351d76e7b8368b9ce6e5fdc050aa374
0
roles/deploy
8,054
[ "no_license" ]
[ { "path": "roles/deploy/tasks/main.yml", "content": "---\n - name: Get hostname\n shell: hostname |awk -F\".\" '{print $1}'\n register: hostname\n\n - name: Get uptime\n# shell: uptime -p | tr \",\" \" \"\n shell: echo $(((($(date +%s)-$(date +%s --date $(uptime -s| awk '{print $1}')))/(...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1447, "all_permissive": false }
ansible_role
sortednet/baseansible
e36c90db5a46418d87bc932cebbbc1f058ce16ed
1
ansible/roles/hello
8,054
[ "no_license" ]
[ { "path": "ansible/roles/hello/tasks/main.yml", "content": "- name: file is present\n copy:\n src: hello-world.txt\n dest: /hello-world.txt\n mode: 0666\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "path": "ansible/roles/hello/main.yml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 187, "all_permissive": false }
ansible_role
tsuneto-lab/wsl-setup
15068fd0de424f27675586f449cbcf4d2262fdc3
0
roles/docker
8,054
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Add Docker GPG apt Key\n become: true\n ansible.builtin.apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n- name: Add Docker Repository\n become: true\n ansible.builtin.apt_repository:\n repo: deb https:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 686, "all_permissive": false }
ansible_role
tsuneto-lab/wsl-setup
15068fd0de424f27675586f449cbcf4d2262fdc3
0
roles/nvidia-docker
8,054
[ "no_license" ]
[ { "path": "roles/nvidia-docker/tasks/main.yml", "content": "- name: Add Docker GPG apt Key\n become: true\n ansible.builtin.apt_key:\n url: https://nvidia.github.io/libnvidia-container/gpgkey\n state: present\n\n- name: Get deb expression\n ansible.builtin.shell: |\n distribution=$(. /etc/os-rel...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 834, "all_permissive": false }
ansible_role
tsuneto-lab/wsl-setup
15068fd0de424f27675586f449cbcf4d2262fdc3
0
roles/wsl-common
8,054
[ "no_license" ]
[ { "path": "roles/wsl-common/tasks/main.yml", "content": "- name: Update and upgrade packages\n import_tasks: packages.yml\n\n- name: Fix date\n import_tasks: date.yml\n\n- name: Enable systemd\n import_tasks: systemd.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes":...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 460, "all_permissive": false }
ansible_role
iSchluff/ansible-nginx-relay
5b41b2c8c773d2cf433530078e40526ac65ff75e
0
roles/base
8,054
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "---\n- name: Install essential packages\n apt:\n name:\n - git\n - vim\n - htop\n - tmux\n - zsh\n - haveged\n - rsync\n - apt-transport-https\n - iptables-persistent\n - sudo\n - vnstat\n - tc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 274, "all_permissive": false }
ansible_role
iSchluff/ansible-nginx-relay
5b41b2c8c773d2cf433530078e40526ac65ff75e
0
roles/ingest
8,054
[ "no_license" ]
[ { "path": "roles/ingest/tasks/main.yml", "content": "---\n - name: create nginx vhost\n template:\n src: nginx/ingest.conf.j2\n dest: \"/etc/nginx/server-conf.d/{{ ansible_fqdn }}.conf\"\n register: ingest_vhost\n\n - name: reload nginx\n service:\n name: nginx\n state: reload...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 555, "all_permissive": false }
ansible_role
iSchluff/ansible-nginx-relay
5b41b2c8c773d2cf433530078e40526ac65ff75e
0
roles/nginx
8,054
[ "no_license" ]
[ { "path": "roles/nginx/tasks/dehydrated.yml", "content": "- name: Install dehydrated\n synchronize:\n src: dehydrated/\n dest: /etc/dehydrated/\n archive: no\n recursive: yes\n links: yes\n delete: no\n owner: no\n group: no\n perms: yes\n times: no\n checksum: yes\n\n- nam...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 7816, "all_permissive": false }
ansible_role
ahmedflqn/udapeople-cicd
e140ae7e321e47d45841e0ae88dd690052b0a525
1
.circleci/ansible/roles/deploy
8,054
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "---\r\n\r\n- name: Creates directory\r\n file:\r\n path: /home/ubuntu/backend-artifact\r\n state: directory\r\n\r\n- name: \"Unarchive\"\r\n unarchive:\r\n src: artifact.tar.gz\r\n dest: /home/ubuntu/backend-artifact\r\n\r\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 797, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/aflplusplus
8,054
[ "no_license" ]
[ { "path": "roles/aflplusplus/vars/archlinux.yml", "content": "---\r\n\r\naflplusplus_dependencies:\r\n - python\r\n - python-pip\r\n - python-setuptools\r\n - coreutils\r\n - lib32-glibc\r\n - glib2\r\n - clang\r\n - llvm\r\n - base-devel\r\n - wget\r\n - gnuplot\r\n - rsync\r\n - gdb\r\n - sc...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 807, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/asdf
8,054
[ "no_license" ]
[ { "path": "roles/asdf/tasks/main.yml", "content": "---\r\n\r\n- name: Ensure packages directory exists for user\r\n become: yes\r\n become_user: \"{{ user }}\"\r\n file:\r\n path: \"{{ download_location }}\"\r\n state: directory\r\n\r\n- name: clone asdf from github\r\n become: yes\r\n become_use...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 727, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/base
8,054
[ "no_license" ]
[ { "path": "roles/base/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Update the system\r\n pacman:\r\n update_cache: true\r\n upgrade: true\r\n\r\n- name: Installing base packages\r\n pacman:\r\n name: \"{{ base_packages }}\"\r\n state: present\r\n", "license_type": "no_license", ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1639, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/burpsuite
8,054
[ "no_license" ]
[ { "path": "roles/burpsuite/tasks/main.yml", "content": "---\r\n\r\n- name: Include distro specific variables\r\n include_vars: \"{{ loop_burpsuite_vars }}\"\r\n with_first_found:\r\n - \"{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml\"\r\n - \"{{ ansible_distributi...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1905, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/consul
8,054
[ "no_license" ]
[ { "path": "roles/consul/tasks/main.yml", "content": "---\n\n- name: Ensure role dependencies are installed\n include_tasks: dependencies.yml\n\n- name: Install consul agent\n include_tasks: install.yml\n\n- name: Read bootstrap state\n stat:\n path: \"/etc/consul.d/.bootstrapped\"\n register: bootstr...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 5586, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/crashwalk
8,054
[ "no_license" ]
[ { "path": "roles/crashwalk/tasks/main.yml", "content": "---\n\n- name: Dynamically try and determine GOPATH\n set_fact:\n go_path: \"{{ lookup('env', 'GOPATH') | default(ansible_env.HOME+'/go', true) }}\"\n\n- name: Install Crashwalk\n shell: go get -u github.com/bnagy/crashwalk/cmd/...\n environmen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 273, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/cutter
8,054
[ "no_license" ]
[ { "path": "roles/cutter/tasks/main.yml", "content": "- name: Run distro specific install tasks for cutter\r\n include_tasks: \"{{ loop_cutter_tasks }}\"\r\n with_first_found:\r\n - \"{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml\"\r\n - \"{{ ansible_distribution |...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 699, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/docker
8,054
[ "no_license" ]
[ { "path": "roles/docker/vars/ubuntu.yml", "content": "---\r\n\r\ndocker_group: docker\r\ndocker_service: docker.service\r\n\r\ndocker__apt_ignore_key_error: true\r\n\r\ndocker__channel: \"stable\"\r\n\r\ndocker__old_pkgs:\r\n - \"docker\"\r\n - \"docker-engine\"\r\n - \"docker.io\"\r\n - \"containerd\"\...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 3362, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/dotfiles
8,054
[ "no_license" ]
[ { "path": "roles/dotfiles/files/zshrc", "content": "# If you come from bash you might have to change your $PATH.\n# export PATH=$HOME/bin:/usr/local/bin:$PATH\n\n# Path to your oh-my-zsh installation.\nexport ZSH=\"/home/vagrant/.oh-my-zsh\"\n\n# Set name of the theme to load --- if set to \"random\", it wi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 4720, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/expand-disk
8,054
[ "no_license" ]
[ { "path": "roles/expand-disk/README.md", "content": "# expand-disk\r\n\r\nUsed within VMs to expand the disk to all free space. Particularly useful for\r\nuse with Vagrant to take up more than the default vagrant box size.\r\n\r\nAssumes the FS Type enables this (ex: ext3, ext4, etc...).\r\n", "license_...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2424, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/ffuf
8,054
[ "no_license" ]
[ { "path": "roles/ffuf/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Ensure aur directory exists for user\r\n become: yes\r\n become_user: \"{{ user }}\"\r\n file:\r\n path: \"{{ aur_location }}\"\r\n state: directory\r\n\r\n- name: Clone ffuf AUR repo\r\n become: yes\r\n become_user: \"{{ ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1824, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/filezilla
8,054
[ "no_license" ]
[ { "path": "roles/filezilla/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing filezilla\r\n pacman:\r\n name: filezilla\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 89, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/firefox
8,054
[ "no_license" ]
[ { "path": "roles/firefox/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing Firefox\r\n pacman:\r\n name: firefox\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 85, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/gdb
8,054
[ "no_license" ]
[ { "path": "roles/gdb/tasks/main.yml", "content": "---\r\n\r\n- name: Run distro specific base tasks\r\n include_tasks: \"{{ loop_gdb_tasks }}\"\r\n with_first_found:\r\n - \"{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml\"\r\n - \"{{ ansible_distribution | lower }}...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2239, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/ghidra
8,054
[ "no_license" ]
[ { "path": "roles/ghidra/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing ghidra\r\n pacman:\r\n name: ghidra\r\n state: present\r\n", "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
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/gnome
8,054
[ "no_license" ]
[ { "path": "roles/gnome/tasks/main.yml", "content": "---\r\n\r\n- name: Run distro specific base tasks\r\n include_tasks: \"{{ loop_docker_tasks }}\"\r\n with_first_found:\r\n - \"{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml\"\r\n - \"{{ ansible_distribution | low...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3932, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/gobuster
8,054
[ "no_license" ]
[ { "path": "roles/gobuster/vars/archlinux.yml", "content": "---\n\n# AUR location to clone AUR package\naur_location: \"/home/vagrant/aur\"\ngobuster_package_repo: \"https://aur.archlinux.org/gobuster-git.git\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 143 }, { ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1888, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/golang
8,054
[ "no_license" ]
[ { "path": "roles/golang/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing Golang\r\n pacman:\r\n name: go\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 79, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/google-chrome
8,054
[ "no_license" ]
[ { "path": "roles/google-chrome/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Ensure aur directory exists for user\r\n become: yes\r\n become_user: \"{{ user }}\"\r\n file:\r\n path: \"{{ aur_location }}\"\r\n state: directory\r\n\r\n- name: Clone google-chrome repo\r\n become: yes\r\n beco...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1921, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/hashid
8,054
[ "no_license" ]
[ { "path": "roles/hashid/defaults/main.yml", "content": "---\r\n\r\n# default user to build and install this with\r\nuser: vagrant\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 69 }, { "path": "roles/hashid/tasks/main.yml", "content": "---\r\n\r\n- name: I...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1919, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/honggfuzz
8,054
[ "no_license" ]
[ { "path": "roles/honggfuzz/tasks/main.yml", "content": "---\n\n- name: Include distro specific variables\n include_vars: \"{{ loop_aflplusplus_vars }}\"\n with_first_found:\n - \"{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml\"\n - \"{{ ansible_distribution | lower...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2471, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/i3
8,054
[ "no_license" ]
[ { "path": "roles/i3/meta/main.yml", "content": "---\r\n\r\ndependencies:\r\n - role: base\r\n - role: asdf\r\n - role: shell\r\n - role: dotfiles\r\n - role: xorg\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 107 }, { "path": "roles/i3/files/profile", ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 5135, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/intellij
8,054
[ "no_license" ]
[ { "path": "roles/intellij/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing intellij\r\n pacman:\r\n name: intellij-idea-community-edition\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 110 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 110, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/iptables
8,054
[ "no_license" ]
[ { "path": "roles/iptables/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Ensure iptables is installed\r\n pacman:\r\n name: iptables\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 96 }, { "path": "roles/iptables/tasks/main.yml",...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1107, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/k3s
8,054
[ "no_license" ]
[ { "path": "roles/k3s/tasks/main.yml", "content": "---\n\n- name: Ensure role dependencies are installed\n include_tasks: dependencies.yml\n\n- name: Download k3s install script\n get_url:\n url: https://get.k3s.io\n dest: /opt/k3s_install.sh\n mode: '0754'\n owner: root\n group: root\n reg...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 5590, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/locale
8,054
[ "no_license" ]
[ { "path": "roles/locale/README.md", "content": "# Ansible Role - locale\r\n\r\n## Credit\r\n\r\nThank you https://github.com/stiliajohny for this role.", "license_type": "no_license", "detected_licenses": [], "size_bytes": 95 }, { "path": "roles/locale/handlers/main.yml", "content": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 718, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/nasm
8,054
[ "no_license" ]
[ { "path": "roles/nasm/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing nasm\r\n pacman:\r\n name: nasm\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 79, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/nbtscan
8,054
[ "no_license" ]
[ { "path": "roles/nbtscan/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing nbtscan\r\n pacman:\r\n name: nbtscan\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 85, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/nikto
8,054
[ "no_license" ]
[ { "path": "roles/nikto/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing nikto\r\n pacman:\r\n name: nikto\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 81, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/nmap
8,054
[ "no_license" ]
[ { "path": "roles/nmap/tasks/archlinux.yml", "content": "---\r\n\r\n- name: installing nmap\r\n pacman:\r\n name: nmap\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 79, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/onesixtyone
8,054
[ "no_license" ]
[ { "path": "roles/onesixtyone/vars/archlinux.yml", "content": "---\n\n# AUR location to clone AUR package\naur_location: \"/home/vagrant/aur\"\nonesixtyone_package_repo: \"https://aur.archlinux.org/onesixtyone-git.git\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 149 ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1919, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/openssh
8,054
[ "no_license" ]
[ { "path": "roles/openssh/files/sshd_config", "content": "#\t$OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $\n\n# This is the sshd server system-wide configuration file. See\n# sshd_config(5) for more information.\n\n# This sshd was compiled with PATH=/usr/local/sbin:/usr/local/bin:/usr/bin\n\n# ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4243, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/openvpn
8,054
[ "no_license" ]
[ { "path": "roles/openvpn/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing openvpn server & client\r\n pacman:\r\n name: openvpn\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 101 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 101, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/proxychains
8,054
[ "no_license" ]
[ { "path": "roles/proxychains/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing proxychains\r\n pacman:\r\n name: proxychains-ng\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 96 }, { "path": "roles/proxychains/tasks/main...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 699, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/radare
8,054
[ "no_license" ]
[ { "path": "roles/radare/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing radare2\r\n pacman:\r\n name: radare2\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 85, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/seclists
8,054
[ "no_license" ]
[ { "path": "roles/seclists/tasks/main.yml", "content": "---\r\n\r\n- name: Ensure packages directory exists for user\r\n become: yes\r\n become_user: \"{{ user }}\"\r\n file:\r\n path: \"{{ download_location }}\"\r\n state: directory\r\n\r\n- name: Clone SecLists repo\r\n become: yes\r\n become_us...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 462, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/shell
8,054
[ "no_license" ]
[ { "path": "roles/shell/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Install zsh\r\n pacman:\r\n name:\r\n - zsh\r\n - zsh-completions\r\n - zsh-autosuggestions\r\n state: present\r\n\r\n- name: Ensure aur directory exists for user\r\n become: yes\r\n become_user: \"{{ user }}...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 3827, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/sipvicious
8,054
[ "no_license" ]
[ { "path": "roles/sipvicious/tasks/main.yml", "content": "---\r\n\r\n- name: Include distro specific variables\r\n include_vars: \"{{ loop_sipvicious_vars }}\"\r\n with_first_found:\r\n - \"{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml\"\r\n - \"{{ ansible_distribu...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1902, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/smbclient
8,054
[ "no_license" ]
[ { "path": "roles/smbclient/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing smbclient\r\n pacman:\r\n name: smbclient\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 89, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/smbmap
8,054
[ "no_license" ]
[ { "path": "roles/smbmap/vars/archlinux.yml", "content": "---\n\n# AUR location to clone AUR package\naur_location: \"/home/vagrant/aur\"\nsmbmap_package_repo: \"https://aur.archlinux.org/smbmap.git\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 135 }, { "path"...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1850, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/smtp-user-enum
8,054
[ "no_license" ]
[ { "path": "roles/smtp-user-enum/vars/archlinux.yml", "content": "---\n\n# AUR location to clone AUR package\naur_location: \"/home/vagrant/aur\"\nsmtpuserenum_package_repo: \"https://aur.archlinux.org/smtp-user-enum-git.git\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1950, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/snmpwalk
8,054
[ "no_license" ]
[ { "path": "roles/snmpwalk/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing net-snmp with snmpwalk\r\n pacman:\r\n name: net-snmp\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 101 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 101, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/sqlmap
8,054
[ "no_license" ]
[ { "path": "roles/sqlmap/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing sqlmap\r\n pacman:\r\n name: sqlmap\r\n state: present\r\n", "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
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/sslscan
8,054
[ "no_license" ]
[ { "path": "roles/sslscan/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing sslscan\r\n pacman:\r\n name: sslscan\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 85, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/sublist3r
8,054
[ "no_license" ]
[ { "path": "roles/sublist3r/vars/main.yml", "content": "---\n\n# git repo location to clone\nsublist3r_package_repo: \"https://github.com/aboul3la/Sublist3r.git\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 102 }, { "path": "roles/sublist3r/tasks/main.yml", ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2273, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/terraform
8,054
[ "no_license" ]
[ { "path": "roles/terraform/tasks/main.yml", "content": "---\n\n- name: Check if Terraform Plugin already installed\n stat:\n path: \"/home/{{ user }}/.asdf/installs/terraform\"\n register: terraform_install\n\n- name: Print if terraform is already identified on the system, installed via asdf\n debug:\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1573, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/unbound
8,054
[ "no_license" ]
[ { "path": "roles/unbound/templates/unbound.conf.j2", "content": "# Managed by Ansible\n\n## Place additional configuration in /etc/unbound/unbound.conf.d/*.conf\ninclude: \"/etc/unbound/unbound.conf.d/*.conf\"\n\nserver:\n interface: 127.0.0.1\n interface: {{ server_ip }}\n interface: ::0\n # al...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 4016, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/vscode
8,054
[ "no_license" ]
[ { "path": "roles/vscode/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Installing VSCode\r\n pacman:\r\n name: code\r\n state: present\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 81, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/wireshark
8,054
[ "no_license" ]
[ { "path": "roles/wireshark/tasks/main.yml", "content": "---\r\n\r\n- name: Run distro specific base tasks\r\n include_tasks: \"{{ loop_wireshark_tasks }}\"\r\n with_first_found:\r\n - \"{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml\"\r\n - \"{{ ansible_distributio...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 819, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/xorg
8,054
[ "no_license" ]
[ { "path": "roles/xorg/tasks/archlinux.yml", "content": "---\r\n\r\n- name: Remove default virtualbox-guest-nox\r\n pacman:\r\n name:\r\n - virtualbox-guest-utils-nox\r\n state: absent\r\n\r\n- name: Install xorg\r\n pacman:\r\n name:\r\n - virtualbox-guest-utils\r\n - xorg-server\r...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1340, "all_permissive": false }
ansible_role
kevinalmansa/ansible-provisioning
f070f1f6d91790a760336d5254679943ebdeef0c
0
roles/yay
8,054
[ "no_license" ]
[ { "path": "roles/yay/tasks/main.yml", "content": "---\r\n\r\n- name: Include distro specific variables\r\n include_vars: \"{{ loop_yay_vars }}\"\r\n with_first_found:\r\n - \"{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml\"\r\n - \"{{ ansible_distribution | lower }...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1847, "all_permissive": false }
ansible_role
scott-gilchrist/homelab
74f29626a6f8df675fd0999da697b748d72a9378
0
ansible/roles/base
8,054
[ "no_license" ]
[ { "path": "ansible/roles/base/tasks/main.yaml", "content": "---\n# This role contains common tasks to run on all (debian) nodes\n- name: Install base packages\n ansible.builtin.apt:\n update_cache: true\n name:\n - openssh-server\n - git\n - htop\n - curl\n - wget\n state:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 261, "all_permissive": false }
ansible_role
scott-gilchrist/homelab
74f29626a6f8df675fd0999da697b748d72a9378
0
ansible/roles/helm
8,054
[ "no_license" ]
[ { "path": "ansible/roles/helm/vars/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# vars file for helm\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 57 }, { "path": "ansible/roles/helm/defaults/main.yml", "content": "#SPDX-License-Identifier: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1020, "all_permissive": false }
ansible_role
scott-gilchrist/homelab
74f29626a6f8df675fd0999da697b748d72a9378
0
ansible/roles/k3s
8,054
[ "no_license" ]
[ { "path": "ansible/roles/k3s/handlers/main.yml", "content": "---\n- name: Restart k3s\n systemd:\n name: k3s\n state: restarted\n enabled: yes\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 101 }, { "path": "ansible/roles/k3s/tasks/main....
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1308, "all_permissive": false }
ansible_role
scott-gilchrist/homelab
74f29626a6f8df675fd0999da697b748d72a9378
0
ansible/roles/kubectl
8,054
[ "no_license" ]
[ { "path": "ansible/roles/kubectl/tasks/main.yaml", "content": "---\n- name: Download the latest stable version of kubectl\n vars:\n stable_version: \"{{ lookup('url', 'https://storage.googleapis.com/kubernetes-release/release/stable.txt') }}\"\n ansible.builtin.get_url:\n url: \"https://storage.goog...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 817, "all_permissive": false }
ansible_role
scott-gilchrist/homelab
74f29626a6f8df675fd0999da697b748d72a9378
0
ansible/roles/minikube
8,054
[ "no_license" ]
[ { "path": "ansible/roles/minikube/tasks/main.yaml", "content": "---\n- name: Download Minikube binary\n ansible.builtin.get_url:\n url: https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64\n dest: /tmp/minikube-linux-amd64\n mode: '0755'\n\n- name: Install Minikube binary\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 694, "all_permissive": false }
ansible_role
scott-gilchrist/homelab
74f29626a6f8df675fd0999da697b748d72a9378
0
ansible/roles/podman
8,054
[ "no_license" ]
[ { "path": "ansible/roles/podman/tasks/main.yaml", "content": "---\n- name: Install podman\n ansible.builtin.dnf:\n update_cache: true\n name:\n - podman\n state: present\n\n- name: Allow user \"scott\" to run podman without password\n ansible.builtin.lineinfile:\n path: /etc/sudoers.d/sco...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 374, "all_permissive": false }
ansible_role
ooeyuna/ansible-user-manage
2f04cb55815c3c9bc7b2da131f2d55ad5f1ebd4a
1
roles/user
8,054
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yml", "content": "- name: add or update user\n user: name={{ username }} password={{ item }} groups={{ group }} shell=/bin/bash\n when: username != \"root\"\n tags: adduser\n with_file:\n - \"passwd/{{ username }}\"\n\n- name: sync ssh key\n authorized_key: user={{us...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 494, "all_permissive": false }
ansible_role
gnmancini/kubernetes-laboratory
76b91764d28f986d2936df7d74196df2182cd6fd
0
roles/kubernetes_base
8,054
[ "no_license" ]
[ { "path": "roles/kubernetes_base/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - kubernetes_base", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "roles/kubernetes_base/handlers/main.yml", "content": "--...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1888, "all_permissive": false }
ansible_role
gnmancini/kubernetes-laboratory
76b91764d28f986d2936df7d74196df2182cd6fd
0
roles/kubernetes_master
8,054
[ "no_license" ]
[ { "path": "roles/kubernetes_master/handlers/main.yml", "content": "---\n# handlers file for kubemaster\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/kubernetes_master/tasks/main.yml", "content": "---\n# tasks file for kubemaster\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 545, "all_permissive": false }
ansible_role
ingorichter/mac-dev-playbook
8c8979745a09f70b6d374be970fa30778aa05aaa
0
roles/base
8,054
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "# essential base tasks for all machines\n- name: print os version\n debug:\n msg: \"System version is {{ ansible_distribution_version }}\"\n when:\n - ansible_distribution_version is version('12', '<')\n\n# - name: install rosetta on M1\n# ansible...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1685, "all_permissive": false }
ansible_role
ingorichter/mac-dev-playbook
8c8979745a09f70b6d374be970fa30778aa05aaa
0
roles/private
8,054
[ "no_license" ]
[ { "path": "roles/private/tasks/tmux-plugin-manager.yml", "content": "- name: Clone TPM repo\n git:\n repo: https://github.com/tmux-plugins/tpm\n dest: ~/.tmux/plugins/tpm\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 106 }, { "path": "roles/private/tasks...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 4058, "all_permissive": false }
ansible_role
ingorichter/mac-dev-playbook
8c8979745a09f70b6d374be970fa30778aa05aaa
0
roles/work
8,054
[ "no_license" ]
[ { "path": "roles/work/tasks/main.yml", "content": "- name: Install cargo\n include_role:\n name: robertdebock.cargo\n\n- name: Install Fonts\n become: false\n community.general.homebrew_cask:\n name:\n - font-3270\n - font-3270-nerd-font\n - font-consolas-for-powerline\n - font-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 406, "all_permissive": false }
ansible_role
MargitStar/online-auction
cbb37a0ae135e8bf1350f92f9654c01a2072bb2a
0
devops/roles/application
8,064
[ "no_license" ]
[ { "path": "devops/roles/application/templates/.env.j2", "content": "AUCTION_DB_NAME={{auction_db_password}}\nAUCTION_DB_USER={{auction_db_user}}\nAUCTION_DB_PASSWORD={{auction_db_password}}\nAUCTION_DB_HOST={{auction_db_host}}\nAUCTION_DB_PORT={{auction_db_port}}\nAUCTION_BROKER_PORT={{auction_broker_port}}...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2136, "all_permissive": false }
ansible_role
MargitStar/online-auction
cbb37a0ae135e8bf1350f92f9654c01a2072bb2a
0
devops/roles/nginx
8,064
[ "no_license" ]
[ { "path": "devops/roles/nginx/tasks/main.yml", "content": "---\n- name: nginx configuration\n template:\n src: backend_auction\n dest: /etc/nginx/sites-enabled/\n\n\n- name: create an error log file\n file:\n path: /var/log/nginx/error.log\n state: touch\n\n- name: create an access log file\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 451, "all_permissive": false }
ansible_role
MargitStar/online-auction
cbb37a0ae135e8bf1350f92f9654c01a2072bb2a
0
devops/roles/python
8,064
[ "no_license" ]
[ { "path": "devops/roles/python/tasks/main.yml", "content": "---\n- name: check python3 version\n shell: /usr/bin/python3 --version\n register: python3_version\n ignore_errors: yes\n tags:\n - python-yum\n\n\n- name: install packages\n yum: pkg={{ item.name }} state=latest\n with_items:\n - name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1291, "all_permissive": false }
ansible_role
MargitStar/online-auction
cbb37a0ae135e8bf1350f92f9654c01a2072bb2a
0
devops/roles/setup
8,064
[ "no_license" ]
[ { "path": "devops/roles/setup/tasks/main.yml", "content": "- name: collect static\n shell: cd {{project_homedir}} && export $(grep -v '^#' .env | xargs) && sudo chown -R $USER /home/ && poetry run python manage.py collectstatic --noinput\n become_user: \"{{ansible_user}}\"\n\n- name: move static folder\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 622, "all_permissive": false }
ansible_role
allanhung/pypillar
250c0abfc826d41a2a420e89d3e5a62857aab79b
2
example/roles/test
8,064
[ "no_license" ]
[ { "path": "example/roles/test/tasks/main.yml", "content": "---\n- name: debug\n debug:\n msg: \"{{ pillar['myhost'] }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 61 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 61, "all_permissive": false }
ansible_role
inqwise-opinion/ansible-mysql
f3664281359b8c5e77b6e3533783ab14136df5f4
0
roles/aws
8,064
[ "no_license" ]
[ { "path": "roles/aws/handlers/main.yml", "content": "---\n- name: loop over dns_record_list\n include_tasks: dnsrecord.yml\n loop: \"{{ dns_record_list }}\"\n loop_control:\n label: \"{{ record.name }}\"\n loop_var: record\n when:\n - dns_record_list is defined\n listen: \"aws postactions\"\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1631, "all_permissive": false }
ansible_role
inqwise-opinion/ansible-mysql
f3664281359b8c5e77b6e3533783ab14136df5f4
0
roles/mysql
8,064
[ "no_license" ]
[ { "path": "roles/mysql/tasks/script.yml", "content": "---\n\n- name: \"Debug '{{ mysql_script }}' script command\"\n debug:\n msg: \"mysql -u root -p### < '{{ mysql_script }}'\"\n tags: debug\n\n- name: \"Execute '{{ mysql_script }}' script\"\n shell: \"mysql -u root --password=\\\"{{ mysql.root_passw...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 4940, "all_permissive": false }
ansible_role
wimve/mac-bootstrap
67bcebda1bc17832eb788ba70b23cdc11fe2e78c
0
roles/apps
8,064
[ "no_license" ]
[ { "path": "roles/apps/tasks/app-mongodb.yml", "content": "---\n- name: install MongoDb with homebrew\n homebrew:\n name: mongodb\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 72 }, { "path": "roles/apps/tasks/app-jetbrains.yml", "content": "---\n- name:...
{ "task_files": 20, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 21, "total_bytes": 2874, "all_permissive": false }
ansible_role
wimve/mac-bootstrap
67bcebda1bc17832eb788ba70b23cdc11fe2e78c
0
roles/fonts
8,064
[ "no_license" ]
[ { "path": "roles/fonts/tasks/main.yml", "content": "---\n- name: add homebrew cask fonts tap\n homebrew_tap:\n name: caskroom/fonts\n\n\n- name: install fonts with cask\n homebrew_cask:\n name: \"{{ item }}\"\n install_options: \"fontdir=/Library/Fonts\"\n with_items:\n - font-meslo-for-power...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 262, "all_permissive": false }
ansible_role
wimve/mac-bootstrap
67bcebda1bc17832eb788ba70b23cdc11fe2e78c
0
roles/git
8,064
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "---\n- name: install with homebrew\n homebrew:\n name: git\n state: latest\n\n- name: add global gitignore\n copy:\n src: gitignore_global\n dest: ~/.gitignore_global\n\n- name: add gitconfig\n template:\n src: files/gitconfig\n dest: ~/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 255, "all_permissive": false }
ansible_role
wimve/mac-bootstrap
67bcebda1bc17832eb788ba70b23cdc11fe2e78c
0
roles/homebrew
8,064
[ "no_license" ]
[ { "path": "roles/homebrew/tasks/main.yml", "content": "- name: Allow all admins to manage homebrew\n become: yes\n become_user: root\n file:\n state: directory\n recurse: yes\n group: admin\n mode: g+w\n path: /usr/local\n\n- name: update homebrew\n command: brew update\n when: ansible_o...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 900, "all_permissive": false }
ansible_role
wimve/mac-bootstrap
67bcebda1bc17832eb788ba70b23cdc11fe2e78c
0
roles/java
8,064
[ "no_license" ]
[ { "path": "roles/java/tasks/main.yml", "content": "---\n- name: install with cask\n homebrew_cask:\n name: java\n\n# JDK7 is nut available anymore so\n# install the zulu OpenJDK 7 build\n- name: install Java 7 with cask\n homebrew_cask:\n name: zulu7\n\n- name: install Java 6 with cask\n homebrew_c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 635, "all_permissive": false }
ansible_role
wimve/mac-bootstrap
67bcebda1bc17832eb788ba70b23cdc11fe2e78c
0
roles/prerequisites
8,064
[ "no_license" ]
[ { "path": "roles/prerequisites/tasks/main.yml", "content": "---\n- name: ensure .bash_profile exits\n copy:\n dest: ~/.bash_profile\n content: \"\"\n mode: 0600\n force: no\n\n- name: ensure bash-profile mode\n file:\n path: ~/.bash_profile\n mode: 0600\n", "license_type": "no_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 201, "all_permissive": false }
ansible_role
wimve/mac-bootstrap
67bcebda1bc17832eb788ba70b23cdc11fe2e78c
0
roles/shell
8,064
[ "no_license" ]
[ { "path": "roles/shell/tasks/main.yml", "content": "---\n- name: add shell-common script\n copy:\n src: shell-common\n dest: ~/.shell-common\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 92 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 92, "all_permissive": false }
ansible_role
wimve/mac-bootstrap
67bcebda1bc17832eb788ba70b23cdc11fe2e78c
0
roles/zsh
8,064
[ "no_license" ]
[ { "path": "roles/zsh/tasks/main.yml", "content": "---\n- name: install with homebrew\n homebrew:\n name: \"{{ item }}\"\n state: latest\n with_items:\n - zsh\n - zsh-completions\n\n- name: Ensure /etc/shells contains ZSH.\n lineinfile:\n dest: \"/etc/shells\"\n line: \"/bin/zsh\"\n bec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1807, "all_permissive": false }
ansible_role
drewandersonnz/osops-noc-maintenance
bbad61b66060323e9368e9d38fc52086b5b393f7
0
roles/check-kernel-version
8,064
[ "no_license" ]
[ { "path": "roles/check-kernel-version/defaults/main.yaml", "content": "require_kernel_version: \"(3.10.0-862.11.6.el7.x86_6)\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 54 }, { "path": "roles/check-kernel-version/tasks/main.yaml", "content": "# search f...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 259, "all_permissive": false }
ansible_role
drewandersonnz/osops-noc-maintenance
bbad61b66060323e9368e9d38fc52086b5b393f7
0
roles/check-logging-es-state
8,064
[ "no_license" ]
[ { "path": "roles/check-logging-es-state/tasks/main.yaml", "content": "# search for target, fail if not found\n- name: check for non-green status\n command: /usr/bin/env bash -c \"oc exec -n logging -c elasticsearch $(oc get pods -n logging | grep logging-es-data-master | grep Running | grep '2/2' | head -1...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 320, "all_permissive": false }
ansible_role
drewandersonnz/osops-noc-maintenance
bbad61b66060323e9368e9d38fc52086b5b393f7
0
roles/check-oc-version
8,064
[ "no_license" ]
[ { "path": "roles/check-oc-version/tasks/main.yaml", "content": "# search for target, fail if not found\n- name: require oc version v{{require_oc_version}}\n command: /usr/bin/env bash -c 'oc version | grep -E \"^oc v{{ require_oc_version }}\"'\n changed_when: false\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 230, "all_permissive": false }