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
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/initial_Arch_install
7,737
[ "no_license" ]
[ { "path": "roles/initial_Arch_install/tasks/main.yml", "content": "#Credits\n# https://stackoverflow.com/questions/48451171/ansible-pass-output-of-shell-command-to-variable\n\n---\n- name: Install Base Packages\n ansible.builtin.shell:\n cmd: |\n pacstrap /mnt --noconfirm {{ item }}\n loop: \"{{ p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 297, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/initial_install_mount_filesystems
7,737
[ "no_license" ]
[ { "path": "roles/initial_install_mount_filesystems/tasks/main.yml", "content": "---\n- name: Create filesystem paths\n ansible.builtin.file:\n path: \"{{ filesystem.initial_path | default('none') }}\"\n state: directory\n loop: \"{{ file_systems }}\"\n loop_control:\n loop_var: filesystem\n whe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 988, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/install_packages_extra
7,737
[ "no_license" ]
[ { "path": "roles/install_packages_extra/tasks/main.yml", "content": "---\n- name: Install extra packages\n ansible.builtin.shell:\n cmd: |\n pacman -S --noconfirm --needed \"{{ item }}\"\n loop: \"{{ extra_packages }}\"\n when: ansible_facts['distribution'] == 'Archlinux'\n", "license_type": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 205, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/install_packages_univ
7,737
[ "no_license" ]
[ { "path": "roles/install_packages_univ/tasks/main.yml", "content": "---\n- name: Install packages universal\n ansible.builtin.shell:\n cmd: |\n pacman -S --noconfirm --needed \"{{ item }}\"\n loop: \"{{ universal_packages }}\"\n when: ansible_facts['distribution'] == 'Archlinux'\n", "license_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 213, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/lock_root
7,737
[ "no_license" ]
[ { "path": "roles/lock_root/tasks/main.yml", "content": "---\n- name: Lock the root account\n ansible.builtin.user:\n name: root\n password_lock: true\n when: ansible_facts['distribution'] == 'Archlinux'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 150 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 150, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/mikrotik_configure_hardware_offloading
7,737
[ "no_license" ]
[ { "path": "roles/mikrotik_configure_hardware_offloading/tasks/main.yml", "content": "---\n- name: Enable Layer 3 hardware offloading\n community.routeros.command:\n commands: /interface ethernet switch set 0 l3-hw-offloading=yes\n\n- name: Enable Layer 3 hardware offloading on all ports\n community.rou...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 482, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/mikrotik_configure_mgmt_interface
7,737
[ "no_license" ]
[ { "path": "roles/mikrotik_configure_mgmt_interface/tasks/main.yml", "content": "---\n- name: Create Management Vlan interface and Set to bridge\n community.routeros.command:\n commands: '/interface vlan add vlan-id={{ management_vlan }} name=MgMT interface={{ bridge_interface }}'\n\n- name: Set Manageme...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1211, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/mikrotik_configure_security
7,737
[ "no_license" ]
[ { "path": "roles/mikrotik_configure_security/tasks/main.yml", "content": "---\n- name: Set admin password\n community.routeros.command:\n commands: '/user set admin password=\"{{ <PASSWORD> }}\"'\n\n- name: Setup internal CA and cert for https\n community.routeros.command:\n commands:\n - '/cer...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1453, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/mikrotik_configure_time
7,737
[ "no_license" ]
[ { "path": "roles/mikrotik_configure_time/tasks/main.yml", "content": "---\n- name: Set NTP Servers\n community.routeros.command:\n commands: /system ntp client set servers={{ ntp_servers }}\n\n- name: Enable NTP\n community.routeros.command:\n commands: /system ntp client set enabled=yes\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 334, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/mikrotik_configure_vlans
7,737
[ "no_license" ]
[ { "path": "roles/mikrotik_configure_vlans/tasks/main.yml", "content": "---\n- name: Create LAN Vlan\n community.routeros.command:\n commands: /interface bridge vlan add bridge={{ bridge_interface }} tagged={{ lan_tagged_interfaces }} untagged={{ lan_untagged_interfaces }} vlan-ids={{ lan_vlan }} comment...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1784, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/multilib_config
7,737
[ "no_license" ]
[ { "path": "roles/multilib_config/tasks/main.yml", "content": "---\n- name: Enable multilib repo\n ansible.builtin.blockinfile:\n path: \"/etc/pacman.conf\"\n block: |\n [multilib]\n Include = /etc/pacman.d/mirrorlist\n marker: \"{mark}\"\n marker_begin: \"# Enable multilib\"\n mark...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 432, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/navidrome
7,737
[ "no_license" ]
[ { "path": "roles/navidrome/tasks/main.yml", "content": "- name: Install davfs2\n ansible.builtin.apt:\n name: davfs2\n state: present\n when: ansible_facts['distribution'] == 'Debian'\n\n- name: Create navidrome container network\n ansible.builtin.shell:\n cmd: |\n podman network create --s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 5933, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/nextcloud
7,737
[ "no_license" ]
[ { "path": "roles/nextcloud/templates/nextcloud_container.sh.j2", "content": "/usr/bin/podman pull docker.io/nextcloud:latest\n/usr/bin/podman run \\\n--name=nextcloud \\\n--network=nextcloud_container_net \\\n--volume {{ nextcloud_path }}/base:/var/www/html/:Z \\\n--volume {{ nextcloud_path }}/data:/var/www...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 7650, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/omadacontroller
7,737
[ "no_license" ]
[ { "path": "roles/omadacontroller/tasks/main.yml", "content": "---\n- name: Create apcontroller container network\n ansible.builtin.shell:\n cmd: |\n podman network create ap_container_net\n ignore_errors: true\n when: ansible_facts['distribution'] == 'Debian' or ansible_facts['distribution'] == '...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3464, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/pacman_hooks_directory
7,737
[ "no_license" ]
[ { "path": "roles/pacman_hooks_directory/tasks/main.yml", "content": "---\n- name: Pacman hooks path\n ansible.builtin.file:\n path: \"/etc/pacman.d/hooks\"\n state: directory\n when:\n - ansible_facts['distribution'] == 'Archlinux'\n", "license_type": "no_license", "detected_licenses": []...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 166, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/reflector_config
7,737
[ "no_license" ]
[ { "path": "roles/reflector_config/templates/reflector.j2", "content": "--save /etc/pacman.d/mirrorlist\n--protocol https\n--country \"United States\"\n--latest 5\n--sort age\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 }, { "path": "roles/reflector_config/t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 431, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/reverse_proxy
7,737
[ "no_license" ]
[ { "path": "roles/reverse_proxy/templates/apcontroller_proxy.conf.j2", "content": "{% raw %}server {\n listen 443 ssl;\n listen [::]:443 ssl;\n\n http2 on;\n\n server_name {% endraw %}{{ proxy_fqdn }};{% raw %}\n\n include /config/nginx/ssl.conf;\n\n client_max_body_size 512M;\n client_b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 13, "total_bytes": 15392, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/semaphore
7,737
[ "no_license" ]
[ { "path": "roles/semaphore/templates/semaphore_postgres.service.j2", "content": "[Unit]\nDescription=Podman container-semaphore_postgres.service\nDocumentation=man:podman-generate-systemd(1)\nWants=network.target\nAfter=network-online.target\n\n[Service]\nEnvironment=PODMAN_SYSTEMD_UNIT=%n\nRestart=on-failu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4295, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/setup_efi_partition
7,737
[ "no_license" ]
[ { "path": "roles/setup_efi_partition/tasks/main.yml", "content": "---\n- name: Create EFI System Partition\n community.general.parted:\n device: \"{{ disk }}\"\n number: 1\n state: present\n flags: [boot]\n fs_type: fat32\n part_end: 1GiB\n label: gpt\n when: ansible_facts['distributi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 250, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/setup_filesystems
7,737
[ "no_license" ]
[ { "path": "roles/setup_filesystems/tasks/main.yml", "content": "---\n- name: Create filesystems for LVM\n community.general.filesystem:\n fstype: \"{{ filesystem.type }}\"\n dev: \"/dev/{{ lvm_name }}/{{ filesystem.name }}\"\n loop: \"{{ file_systems }}\"\n loop_control:\n loop_var: filesystem\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 439, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/setup_fstab
7,737
[ "no_license" ]
[ { "path": "roles/setup_fstab/tasks/main.yml", "content": "---\n- name: Configure fstab\n ansible.builtin.template:\n src: fstab.j2\n dest: /etc/fstab\n owner: root\n group: root\n mode: \"0644\"\n when: ansible_facts['distribution'] == 'Archlinux'\n", "license_type": "no_license", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 427, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/setup_lvm
7,737
[ "no_license" ]
[ { "path": "roles/setup_lvm/tasks/main.yml", "content": "---\n- name: Create Logical Volume group\n community.general.lvg:\n vg: \"{{ lvm_name }}\"\n pvs: \"{{ lvm_path }}\"\n pvresize: true\n when: ansible_facts['distribution'] == 'Archlinux'\n\n- name: Create logical volumes\n community.general...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 467, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/setup_lvm_encrypted_partition
7,737
[ "no_license" ]
[ { "path": "roles/setup_lvm_encrypted_partition/tasks/main.yml", "content": "---\n- name: Create LVM Partition\n community.general.parted:\n device: \"{{ disk }}\"\n number: 2\n state: present\n flags: [lvm]\n part_start: 1GiB\n part_end: \"100%\"\n label: gpt\n when: ansible_facts['di...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 576, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/setup_systemd_boot
7,737
[ "no_license" ]
[ { "path": "roles/setup_systemd_boot/templates/loader.j2", "content": "default arch_linux.conf\nauto-entries 1\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "roles/setup_systemd_boot/templates/arch_linux.j2", "content": "title Arch Linux K...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1253, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_cron
7,737
[ "no_license" ]
[ { "path": "roles/standard_cron/tasks/main.yml", "content": "---\n- name: Install cron\n ansible.builtin.apt:\n name: cron\n state: present\n when: ansible_facts['distribution'] == 'Debian'\n\n- name: Install cron\n community.general.pacman:\n name: cron\n state: present\n when: ansible_facts...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 945, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_firewalld
7,737
[ "no_license" ]
[ { "path": "roles/standard_firewalld/tasks/main.yml", "content": "---\n- name: Install firewalld\n ansible.builtin.apt:\n name: firewalld\n state: present\n when: ansible_facts['distribution'] == 'Debian'\n\n- name: Install firewalld\n community.general.pacman:\n name: firewalld\n state: prese...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3883, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_openwrt
7,737
[ "no_license" ]
[ { "path": "roles/standard_openwrt/tasks/main.yml", "content": "---\n- name: Install packages OpenWrt\n community.general.opkg:\n name: \"{{ packages }}\"\n state: present\n update_cache: yes\n when: ansible_facts['os_family'] == 'OpenWrt'\n", "license_type": "no_license", "detected_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 179, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_patching
7,737
[ "no_license" ]
[ { "path": "roles/standard_patching/templates/update_system_arch.j2", "content": "/usr/bin/rm -rf /var/cache/*\n/usr/bin/pacman -Syu --noconfirm --needed\n/usr/sbin/reboot\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 88 }, { "path": "roles/standard_patching/tem...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 768, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_pi_config
7,737
[ "no_license" ]
[ { "path": "roles/standard_pi_config/tasks/main.yml", "content": "# https://www.jeffgeerling.com/blog/2021/taking-control-pi-poe-hats-overly-aggressive-fan\n\n---\n- name: Disable wifi and bluetooth for pi\n ansible.builtin.blockinfile:\n path: \"/boot/config.txt\"\n create: \"yes\"\n block: |\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1049, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_podman
7,737
[ "no_license" ]
[ { "path": "roles/standard_podman/tasks/main.yml", "content": "---\n- name: Install podman\n ansible.builtin.apt:\n name: podman\n state: present\n when: ansible_facts['distribution'] == 'Debian'\n\n- name: Install podman\n community.general.pacman:\n name:\n - podman\n - cni-plugins\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1368, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_python
7,737
[ "no_license" ]
[ { "path": "roles/standard_python/tasks/main.yml", "content": "---\n- name: Install python\n ansible.builtin.apt:\n name: python3\n state: present\n when: ansible_facts['distribution'] == 'Debian'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 137 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 137, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_qemu_guest_agent
7,737
[ "no_license" ]
[ { "path": "roles/standard_qemu_guest_agent/tasks/main.yml", "content": "---\n- name: Install qemu-guest-agent\n ansible.builtin.apt:\n name: qemu-guest-agent\n state: present\n when: ansible_facts['distribution'] == 'Debian'\n\n- name: Install qemu-guest-agent\n community.general.pacman:\n name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 527, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_rclone
7,737
[ "no_license" ]
[ { "path": "roles/standard_rclone/tasks/main.yml", "content": "---\n- name: Install rclone\n ansible.builtin.apt:\n name: rclone\n state: present\n when: ansible_facts['distribution'] == 'Debian'\n\n- name: Install rclone\n community.general.pacman:\n name:\n - rclone\n - fuse3\n sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 926, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_reboot
7,737
[ "no_license" ]
[ { "path": "roles/standard_reboot/tasks/main.yml", "content": "---\n- name: Reboot machine\n ansible.builtin.reboot:\n reboot_timeout: 600\n when:\n - inventory_hostname != 'ansible'\n\n- name: Reboot machine\n ansible.builtin.command: shutdown -r +1\n async: 40\n poll: 0\n when:\n - inventory...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 257, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_ssh
7,737
[ "no_license" ]
[ { "path": "roles/standard_ssh/tasks/main.yml", "content": "---\n- name: Set sftp ssh\n ansible.builtin.lineinfile:\n path: /etc/ssh/sshd_config\n regexp: \"^Subsystem\\\\s*sftp\"\n line: Subsystem sftp /usr/lib/openssh/sftp-server\n\n- name: Set ssh authorized keys\n ansible.builtin.lineinfile:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1599, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/standard_update_packages
7,737
[ "no_license" ]
[ { "path": "roles/standard_update_packages/tasks/main.yml", "content": "---\n- name: Update all packages to their latest version\n ansible.builtin.apt:\n name: \"*\"\n state: latest\n update_cache: \"yes\"\n when: ansible_facts['distribution'] == 'Debian'\n\n- name: Update keyring\n community.gen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 572, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/unificontroller
7,737
[ "no_license" ]
[ { "path": "roles/unificontroller/templates/unificontroller.sh.j2", "content": "/usr/bin/podman pull docker.io/jacobalberty/unifi:latest\n/usr/bin/podman run \\\n--name=unificontroller \\\n--network=unifi_container_net \\\n-p 8080:8080 \\\n-p 3478:3478/udp \\\n-e TZ=America/New_York \\\n--volume {{ unificont...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2712, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/user_autologin
7,737
[ "no_license" ]
[ { "path": "roles/user_autologin/tasks/main.yml", "content": "---\n- name: Getty path\n ansible.builtin.file:\n path: \"/etc/systemd/system/getty@tty1.service.d\"\n state: directory\n when:\n - ansible_facts['distribution'] == 'Archlinux'\n\n- name: Autologin user\n ansible.builtin.template:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 383, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/user_profile_path
7,737
[ "no_license" ]
[ { "path": "roles/user_profile_path/tasks/main.yml", "content": "---\n- name: Create user profile path\n ansible.builtin.file:\n path: \"/home/{{ user_name }}/.profile\"\n state: touch\n owner: \"{{ user_name }}\"\n when:\n - ansible_facts['distribution'] == 'Archlinux'\n", "license_type": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 209, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/vaultwarden
7,737
[ "no_license" ]
[ { "path": "roles/vaultwarden/tasks/main.yml", "content": "---\n- name: Install sqlite3\n community.general.pacman:\n name: sqlite3\n state: present\n when: ansible_facts['distribution'] == 'Archlinux'\n\n- name: Create vaultwarden container network\n ansible.builtin.shell:\n cmd: |\n podman...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3714, "all_permissive": false }
ansible_role
MatthewDavidMiller/ansible_playbooks
48736553f61353866adb5fdb4430f6f023ac8e3a
0
roles/vpn
7,737
[ "no_license" ]
[ { "path": "roles/vpn/templates/porkbun-ddns.service.j2", "content": "[Unit]\nDescription=Podman container-porkbun-ddns.service\nDocumentation=man:podman-generate-systemd(1)\nWants=network-online.target\nAfter=network-online.target\nAfter=firewalld.service\n\n[Service]\nEnvironment=PODMAN_SYSTEMD_UNIT=%n\nRe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4440, "all_permissive": false }
ansible_role
mapserver2007/jenkins-echelon
d4661724830845eca5fb03f4dcc38ccaa0e685e3
0
ansible/roles/cleanup
7,737
[ "no_license" ]
[ { "path": "ansible/roles/cleanup/tasks/main.yml", "content": "- name: docker container clear\n shell: docker ps -a | grep %APPLICATION%_%TAG% | awk '{print $1}' | xargs --no-run-if-empty docker rm -f\n sudo: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 150 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 150, "all_permissive": false }
ansible_role
mapserver2007/jenkins-echelon
d4661724830845eca5fb03f4dcc38ccaa0e685e3
0
ansible/roles/setup/applications/php/files/ansible/roles/settings
7,737
[ "no_license" ]
[ { "path": "ansible/roles/setup/applications/php/files/ansible/roles/settings/tasks/main.yml", "content": "- name: get from repository\n tags: always\n git: \"repo=%REPOSITORY% version=%BRANCH% dest=/var/tmp/%PROJECT% update=yes accept_hostkey=yes\"\n- name: composer install (for build)\n tags: always\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 414, "all_permissive": false }
ansible_role
mapserver2007/jenkins-echelon
d4661724830845eca5fb03f4dcc38ccaa0e685e3
0
ansible/roles/setup/applications/ruby/files/ansible/roles/settings
7,737
[ "no_license" ]
[ { "path": "ansible/roles/setup/applications/ruby/files/ansible/roles/settings/tasks/main.yml", "content": "- name: get from repository\n tags: always\n git: \"repo=%REPOSITORY% version=%BRANCH% dest=/var/tmp/%PROJECT% update=yes accept_hostkey=yes\"\n- name: bundle install\n tags: with_gemfile\n shell: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 244, "all_permissive": false }
ansible_role
reseni23/ans-aws-roles
48f11f8dcbffb837cb233e669ed43d5fced6f308
1
roles/integration_tests
7,737
[ "no_license" ]
[ { "path": "roles/integration_tests/tasks/main.yml", "content": "---\n#- name: get facts about the cfn network stack\n# cloudformation_facts:\n# stack_name: \"ans-cnf-network\"\n# register: cfn_network_stack_facts\n#\n#- name: show the cfn network stack outputs\n# debug:\n# msg: \"{{ cfn_network_sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 481, "all_permissive": false }
ansible_role
JBarker90/ansible_tutorial
9af129543b9c095b90169b45a36732b1a762b0af
0
roles/base
7,737
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "- name: add ssh key for dave\n authorized_key: \n user: dave\n key: \"<KEY>\"\n\n- name: generate sshd_config file from template\n tags: ssh\n template:\n src: \"{{ ssh_template_file }}\"\n dest: /etc/ssh/sshd_config\n owner: root\n gro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 289, "all_permissive": false }
ansible_role
JBarker90/ansible_tutorial
9af129543b9c095b90169b45a36732b1a762b0af
0
roles/db_servers
7,737
[ "no_license" ]
[ { "path": "roles/db_servers/tasks/main.yml", "content": "- name: install mariadb package (AlmaLinux)\n tags: almalinux,db,mariadb\n dnf:\n name: mariadb\n state: latest\n when: ansible_distribution == \"AlmaLinux\"\n\n- name: install mariadb package (Ubuntu)\n tags: ubuntu,db,mariadb\n apt: \n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 320, "all_permissive": false }
ansible_role
devemraops/ansible
d71cca7c1e0ed8bb4799fa56f7e3a80f522ca791
0
roles/awscli
7,737
[ "no_license" ]
[ { "path": "roles/awscli/tasks/main.yml", "content": "---\n# tasks file for awscli\n- name: install awscli package\n unarchive:\n src: \"{{ artifact_repo_url }}/AWS-CLI/awscli-bundlev2.zip\"\n dest: /var/tmp/\n remote_src: yes\n- name: Install python36\n yum:\n name: rh-python36.x86_64\n sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 497, "all_permissive": false }
ansible_role
devemraops/ansible
d71cca7c1e0ed8bb4799fa56f7e3a80f522ca791
0
roles/crowdstrike
7,737
[ "no_license" ]
[ { "path": "roles/crowdstrike/vars/main.yml", "content": "---\n# vars file for crowdstrike\ncrowdstrike_customer_id: 'owiro09u4239u5r2eiprhjhrh2'\ncrowdstrike_version_build: 10.55.0-123431", "license_type": "no_license", "detected_licenses": [], "size_bytes": 127 }, { "path": "roles/crowd...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1182, "all_permissive": false }
ansible_role
devemraops/ansible
d71cca7c1e0ed8bb4799fa56f7e3a80f522ca791
0
roles/docker
7,737
[ "no_license" ]
[ { "path": "roles/docker/defaults/main.yml", "content": "---\n# defaults file for docker\ninstall_docker_compose: yes\naddl_search_registries: []\naddl_insecure_registries: []\naddl_daemon_config: []", "license_type": "no_license", "detected_licenses": [], "size_bytes": 137 }, { "path": "...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2539, "all_permissive": false }
ansible_role
devemraops/ansible
d71cca7c1e0ed8bb4799fa56f7e3a80f522ca791
0
roles/kubectl
7,737
[ "no_license" ]
[ { "path": "roles/kubectl/tasks/main.yml", "content": "---\n# tasks file for kubectl\n- name: kubectl install\n get_url:\n url: \"{{ artifact_repo_url }}\"\n dest: /usr/bin\n mode: 0755\n owner: root\n group: root\n\n- name: check version being installed\n shell: \"/usr/bin/kubectl version -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 270, "all_permissive": false }
ansible_role
peterfschaadt/ansible-plex
19b2345c0cd2cad023686dc99e37d055dc1c46ac
0
roles/plex
7,737
[ "no_license" ]
[ { "path": "roles/plex/tasks/main.yml", "content": "---\n# Tasks for Plex role\n\n# Install dependencies for Plex\n\n- name: Install dependencies for Plex\n action: apt pkg={{ item }} state=present\n register: result\n with_items:\n - avahi-daemon\n - avahi-utils\n - libavahi-client3\n - libav...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1231, "all_permissive": false }
ansible_role
peterfschaadt/ansible-plex
19b2345c0cd2cad023686dc99e37d055dc1c46ac
0
roles/ubuntu
7,737
[ "no_license" ]
[ { "path": "roles/ubuntu/tasks/main.yml", "content": "---\n# Tasks for Ubuntu role\n\n- name: Set hostname on Plex server\n hostname:\n name={{ hostname }}\n\n- name: Create user groups on Plex server\n group:\n name={{ item.name }}\n system={{ item.system }}\n state=present\n with_items: user...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 945, "all_permissive": false }
ansible_role
yankeeinlondon/runner
bba10b1ef7956d1ee7a3cc83215953dfb02f7a49
0
ansible/roles/libraries
7,737
[ "no_license" ]
[ { "path": "ansible/roles/libraries/tasks/main.yml", "content": "---\n- name: \"Install Core Library Deps (Debian 9)\"\n package:\n name:\n - acl\n - liblttng-ust0\n - libkrb5-3\n - zlib1g\n - libssl1.1\n - libicu57\n state: present\n update_cache: yes\n when: (ansibl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2228, "all_permissive": false }
ansible_role
yankeeinlondon/runner
bba10b1ef7956d1ee7a3cc83215953dfb02f7a49
0
ansible/roles/tooling
7,737
[ "no_license" ]
[ { "path": "ansible/roles/tooling/tasks/main.yml", "content": "---\n- name: Register Nala GPG Key (Debian and Ubuntu)\n ansible.builtin.apt_key:\n url: https://deb.volian.org/volian/scar.key\n state: present\n when: (ansible_distribution == \"Ubuntu\" or ansible_distribution == \"Debian\")\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2916, "all_permissive": false }
ansible_role
jclopeza/playbooks-provisioning
458d94e74a4f392abfb2a73660366207fda19dc5
0
roles/jboss-eap-6.4.0
7,735
[ "no_license" ]
[ { "path": "roles/jboss-eap-6.4.0/tasks/main.yml", "content": "---\n- name: Install packages\n apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - openjdk-8-jdk\n - unzip\n\n- name: add group \"jboss-as\"\n group: name=jboss-as state=present\n\n- name: allow 'jboss-as' group to have passwo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3919, "all_permissive": false }
ansible_role
jclopeza/playbooks-provisioning
458d94e74a4f392abfb2a73660366207fda19dc5
0
roles/mysql
7,735
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n- name: Install mysql server\n apt:\n name: ['mysql-server', 'python-mysqldb']\n update_cache: yes\n\n- name: Start the MySQL service\n service: name=mysql state=started enabled=yes\n\n- name: Copy my.cnf file with root password credentials\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1041, "all_permissive": false }
ansible_role
sarahmohamed414/Ansible-Storage
9ba57fdc392d7f6f24a0291e41218b2db75d172d
0
DataDomain/my_collection/roles/cifs_share_management
7,735
[ "no_license" ]
[ { "path": "DataDomain/my_collection/roles/cifs_share_management/tasks/main.yml", "content": "---\n- name: Import tasks to get CIFS status\n ansible.builtin.import_tasks: get_cifs_status.yml\n when: user_input == \"1\"\n\n- name: Import tasks to check if share exists\n ansible.builtin.import_tasks: check_...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2521, "all_permissive": false }
ansible_role
sarahmohamed414/Ansible-Storage
9ba57fdc392d7f6f24a0291e41218b2db75d172d
0
roles/cifs_share_management
7,735
[ "no_license" ]
[ { "path": "roles/cifs_share_management/vars/main.yaml", "content": "share_path: /backup\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 20 }, { "path": "roles/cifs_share_management/tasks/delete_cifs.yml", "content": "---\n- name: Check if CIFS share exists\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 888, "all_permissive": false }
ansible_role
hardyoyo/vagrant-ansible-hyrax
fc68f7eaad448590dde3d130407c7e5dc6f973e7
1
ansible/roles/my_first_deploy
7,735
[ "no_license" ]
[ { "path": "ansible/roles/my_first_deploy/templates/database.yml.j2", "content": "production:\n adapter: postgresql\n encoding: unicode\n database: {{ project_name }}\n pool: 5\n username: {{ db_user }}\n password: {{ <PASSWORD> }}\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3566, "all_permissive": false }
ansible_role
Tejashwini-Rao/roboshop-mutable
8c5fef6bb3fcef447863729bd31de31f9ecff649
0
roles/common
7,735
[ "no_license" ]
[ { "path": "roles/common/tasks/nodejs.yml", "content": "- name: Setup NodeJS repos\n ansible.builtin.shell: curl --silent --location https://rpm.nodesource.com/setup_16.x | sudo bash\n\n- name: Install NodeJS\n ansible.builtin.yum:\n name: nodejs\n state: installed\n\n- name: Include App Pre Setup\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 547, "all_permissive": false }
ansible_role
JohnRuffin/vagrant_jruffin
246e579baa251f1e51488600f643199115dbc9ba
0
roles/git
7,735
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "--- \n- \n apt: \"name=git state=present\"\n name: \"install git distributed version control\"", "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
JohnRuffin/vagrant_jruffin
246e579baa251f1e51488600f643199115dbc9ba
0
roles/jenkins-pipeline
7,735
[ "no_license" ]
[ { "path": "roles/jenkins-pipeline/tasks/seed-job.yml", "content": "---\n- name: Get list of jobs\n uri:\n user: admin\n password: <PASSWORD>\n force_basic_auth: yes\n url: \"http://1192.168.3.11:8080/api/json?tree=jobs[name]\"\n return_content: yes\n register: jenkins_jobs\n until: jenkins...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2463, "all_permissive": false }
ansible_role
JohnRuffin/vagrant_jruffin
246e579baa251f1e51488600f643199115dbc9ba
0
roles/jenkins.plugins
7,735
[ "no_license" ]
[ { "path": "roles/jenkins.plugins/tasks/main.yml", "content": "--- \n- \n jenkins_plugin: \"name=pipeline-plugin state=present\"\n name: \"install build pipeline plugin\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 103 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 103, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/chrome-extensions
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/chrome-extensions/tasks/main.yml", "content": "- name: Install Chrome Extensions\n win_regedit:\n path: HKLM:\\SOFTWARE\\Policies\\Google\\Chrome\\ExtensionInstallForcelist\n name: \"{{ item.name }}\"\n data: \"{{ item.id }};https://clients2.google.com/servic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1644, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/create_shortcut
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/create_shortcut/tasks/main.yml", "content": "---\n# roles/create_shortcut/tasks/main.yml\n- name: Create an application shortcut for an executable in PATH to your desktop\n win_shortcut:\n src: cmd.exe\n dest: \"{{ ansible_env.USERPROFILE }}\\\\Desktop\\\\Comman...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 228, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/enable_wsl_features
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/enable_wsl_features/tasks/main.yml", "content": "---\n- name: Enable features for WSL\n win_feature:\n name: \"{{ item }}\"\n state: present\n loop:\n - Microsoft-Windows-Subsystem-Linux\n - VirtualMachinePlatform\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 170, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/install_debian_wsl
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/install_debian_wsl/tasks/main.yml", "content": "---\n- name: Install Debian for WSL\n win_shell: wsl --install -d Debian\n ignore_errors: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 93, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/install_kali_wsl
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/install_kali_wsl/tasks/main.yml", "content": "---\n- name: Install Kali Linux for WSL\n win_shell: wsl --install -d Kali-Linux\n ignore_errors: yes\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
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/install_oraclelinux_wsl
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/install_oraclelinux_wsl/tasks/main.yml", "content": "---\n- name: Install Oracle Linux 9.1 for WSL\n win_shell: wsl --install -d OracleLinux_9_1\n ignore_errors: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 112, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/install_suse_wsl
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/install_suse_wsl/tasks/main.yml", "content": "---\n- name: Install SUSE Linux Enterprise Server 15 SP4 for WSL\n win_shell: wsl --install -d SUSE-Linux-Enterprise-Server-15-SP4\n ignore_errors: yes\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 151, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/install_ubuntu_wsl
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/install_ubuntu_wsl/tasks/main.yml", "content": "---\n- name: Install Ubuntu for WSL\n win_shell: wsl --install -d Ubuntu\n ignore_errors: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 93, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/rocky_linux_wsl
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/rocky_linux_wsl/tasks/main.yml", "content": "- name: Enable features for WSL\n win_feature:\n name: \"{{ item }}\"\n state: present\n loop:\n - Microsoft-Windows-Subsystem-Linux\n - VirtualMachinePlatform\n\n- name: Set WSL default version to 2\n win_she...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1918, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/set_wsl_version
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/set_wsl_version/tasks/main.yml", "content": "---\n- name: Set WSL default version to 2\n win_shell: wsl --set-default-version 2\n ignore_errors: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 103 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 103, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/vmware_workstation_pro_install
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/vmware_workstation_pro_install/defaults/main.yml", "content": "---\n# Default variables for VMware Workstation Pro installation\nworking_path: \"C:\\\\Temp\\\\\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 91 }, { "path"...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 373, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/windows10-packages
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/windows10-packages/defaults/main.yml", "content": "---\n# defaults file for windows_packages\npackage_list: \n - git\n - googlechrome\n - firefox\n - spotify\n - epicgameslauncher\n - microsoft-office\n - discord\n - 1password\n - docker-desktop\n - norton-an...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1644, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/windows10-privacy
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/windows10-privacy/tasks/disable_web_search.yml", "content": "- name: Disable Web Search\n hosts: windows_hosts\n gather_facts: no\n tasks:\n - name: Disable Web Search\n win_regedit:\n path: HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Search\...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 5236, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/windows_setup
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/windows_setup/tasks/main.yml", "content": "- name: Create setup directory\n win_file:\n path: \"{{ working_path }}\"\n state: directory\n\n- name: Copy config file\n win_copy:\n src: \"{{ role_path }}/files/{{ item }}\"\n dest: \"{{ working_path }}\"\n l...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3510, "all_permissive": false }
ansible_role
jaelliot/Windows-Playbooks
88c9dfde9edc441a188b96ce52024ae9718a857a
0
Windows-configuration/roles/wsl_setup
7,735
[ "no_license" ]
[ { "path": "Windows-configuration/roles/wsl_setup/tasks/main.yml", "content": "---\n- name: Enable features for WSL\n win_feature:\n name: \"{{ item }}\"\n state: present\n loop:\n - Microsoft-Windows-Subsystem-Linux\n - VirtualMachinePlatform\n\n- name: Set WSL default version to 2\n win_shel...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 606, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/basic/ansibleHosts/roles/copyHosts
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/basic/ansibleHosts/roles/copyHosts/tasks/main.yml", "content": "---\n- name: Copy ansible host file to /etc/ansible/\n copy:\n src: files/hosts\n dest: /etc/ansible/\n become: true", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 119, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/basic/basicLibsAndShell/roles/common
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/basic/basicLibsAndShell/roles/common/vars/main.yml", "content": "---\npackages:\n - \"curl\"\n - \"git\"\n - \"gnupg\"\n - \"htop\"\n - \"tmux\"\n - \"vim\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "zzz/vm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 335, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/basic/basicLibsAndShell/roles/shell
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/basic/basicLibsAndShell/roles/shell/vars/main.yml", "content": "---\ndir_dot_files_src: /vagrant/zzz/vmSetup/config/dotFiles\ndir_home: /home/vagrant\nfiles_dot_files:\n - \".ansible.cfg\"\n - \".bash_aliases\"\n - \".bash_profile\"\n - \".bash_visual\"\n - \".bashrc\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 557, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/basic/basicLibsAndShell/roles/shellTrapDoorLS
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/basic/basicLibsAndShell/roles/shellTrapDoorLS/tasks/main.yml", "content": "---\n- name: Install trapdoor ls.\n get_url:\n url: \"{{trapdoor_url}}\"\n dest: \"{{ansible_env.HOME}}/.dircolors\"", "license_type": "no_license", "detected_licenses": [], "size_byt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 191, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/basic/docker/roles/initDockerRepo
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/basic/docker/roles/initDockerRepo/tasks/main.yml", "content": "# Add an Apt signing key, uses whichever key is at the URL\n---\n- name: Query dist name.\n shell: lsb_release -cs\n register: distro_name\n- name: Adding gpg key for docker\n apt_key:\n url: \"https://downlo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 525, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/basic/docker/roles/installDockerCE
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/basic/docker/roles/installDockerCE/tasks/main.yml", "content": "---\n- name: Install docker other required packages.\n apt:\n name: \"{{ item }}\"\n state: installed\n update_cache: yes\n with_items: \"{{ packages }}\"\n become: true\n- name: Adding user {{ ansible...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 479, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/basic/updateTimezone/roles/updateTimezoneToPST
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/basic/updateTimezone/roles/updateTimezoneToPST/tasks/main.yml", "content": "---\n- name: Set timezone to US/Pacific\n timezone:\n name: US/Pacific\n become: true", "license_type": "no_license", "detected_licenses": [], "size_bytes": 86 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 86, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/dev/golang/roles/installGolang
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/dev/golang/roles/installGolang/vars/main.yml", "content": "---\npackages:\n - \"golang\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 26 }, { "path": "zzz/vmSetup/ansible/dev/golang/roles/installGolang/tasks/main.yml", "conten...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 181, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/dev/java/roles/installOpenJDK
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/dev/java/roles/installOpenJDK/tasks/main.yml", "content": "---\n- name: Install JDK.\n apt:\n name: \"{{item}}\"\n state: installed\n with_items: \"{{packages}}\"\n become: true", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 117, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/dev/nvm/roles/installNvmAndNode
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/dev/nvm/roles/installNvmAndNode/tasks/main.yml", "content": "---\n- name: Download NVM.\n get_url: \n url: \"https://raw.githubusercontent.com/creationix/nvm/v{{nvm_ver}}/install.sh\"\n dest: /tmp/install.sh\n\n- name: Install NVM.\n script: /tmp/install.sh\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 350, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansible/dev/python/roles/installPython3
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansible/dev/python/roles/installPython3/tasks/main.yml", "content": "---\n- name: Install python3\n apt:\n name: \"{{item}}\"\n state: installed\n update_cache: true\n with_items: \"{{packages}}\"\n become: true", "license_type": "no_license", "detected_licenses": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 225, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansibleTesting/cassandra/roles/installCass
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansibleTesting/cassandra/roles/installCass/tasks/main.yml", "content": "---\n- name: Add apt key repo\n apt_key:\n url: \"{{cass_key_url}}\"\n become: true\n- name: Add apt source.\n apt_repository:\n repo: \"deb {{cass_url}} {{cass_version}} main\"\n state: present\n bec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 517, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansibleTesting/cassandra/roles/installDatastaxCass
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansibleTesting/cassandra/roles/installDatastaxCass/vars/main.yml", "content": "---\nusername: \"<EMAIL>\"\npassword: \"<PASSWORD>\"\ndatastax_url: \"debian.datastax.com/enterprise\"\ndatastax_key_url: \"https://debian.datastax.com/debian/repo_key\"\npackages:\n - \"dse-full\"\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 583, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansibleTesting/testScripts/postgres/roles/installPostgres
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansibleTesting/testScripts/postgres/roles/installPostgres/vars/main.yml", "content": "---\npackages:\n - \"postgresql\"\n - \"postgresql-contrib\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 55 }, { "path": "zzz/vmSetup/ansibleTesting/t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 176, "all_permissive": false }
ansible_role
hubertwwong/bento_ansible
04a0bc3ba65505f82e950b3ea0ab069a8e39050b
0
zzz/vmSetup/ansibleTesting/testScripts/roles/template01
7,735
[ "no_license" ]
[ { "path": "zzz/vmSetup/ansibleTesting/testScripts/roles/template01/vars/main.yml", "content": "---\nbar: \"aaaaaasdfasdf\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 24 }, { "path": "zzz/vmSetup/ansibleTesting/testScripts/roles/template01/templates/hello.txt.j...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 131, "all_permissive": false }
ansible_role
otaviomedeiros/my-evernote
941fb8f04a9c425cbfd21f11e275c70fbdfc28a0
0
setup-automation/roles/app
7,735
[ "no_license" ]
[ { "path": "setup-automation/roles/app/templates/.notes.env.j2", "content": "APP_PORT={{ vault_app_port }}\nMONGO_URL={{ vault_mongo_url }}\nJWT_SECRET={{ vault_jwt_secret }}\nPUBLIC_URL=/public/dist\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 120 }, { "path":...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1552, "all_permissive": false }
ansible_role
otaviomedeiros/my-evernote
941fb8f04a9c425cbfd21f11e275c70fbdfc28a0
0
setup-automation/roles/deploy
7,735
[ "no_license" ]
[ { "path": "setup-automation/roles/deploy/tasks/main.yml", "content": "---\n- name: checkout app repo\n git: repo={{ app_repo_url }} dest={{ app_source_folder }}\n notify: restart notes\n\n- name: build app image\n docker_image:\n path: \"{{ app_source_folder }}\"\n state: present\n name: \"{{ ap...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 356, "all_permissive": false }
ansible_role
otaviomedeiros/my-evernote
941fb8f04a9c425cbfd21f11e275c70fbdfc28a0
0
setup-automation/roles/docker
7,735
[ "no_license" ]
[ { "path": "setup-automation/roles/docker/defaults/main.yml", "content": "---\ndocker_key_server: hkp://p80.pool.sks-keyservers.net:80\ndocker_key_identifier: <KEY>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "setup-automation/roles/docker/task...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1084, "all_permissive": false }
ansible_role
otaviomedeiros/my-evernote
941fb8f04a9c425cbfd21f11e275c70fbdfc28a0
0
setup-automation/roles/git-repo
7,735
[ "no_license" ]
[ { "path": "setup-automation/roles/git-repo/tasks/main.yml", "content": "---\n- name: ensure git is installed\n apt: name=git state=present\n\n- name: create git repo folder\n file: path={{ repo_folder }} state=directory\n\n- name: create bare repo\n command: git init --bare chdir={{ repo_folder }} warn=n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 941, "all_permissive": false }
ansible_role
otaviomedeiros/my-evernote
941fb8f04a9c425cbfd21f11e275c70fbdfc28a0
0
setup-automation/roles/mongo
7,735
[ "no_license" ]
[ { "path": "setup-automation/roles/mongo/tasks/main.yml", "content": "---\n- name: pull mongo image\n docker_image:\n name: mongo\n state: present\n tag: '3'\n notify: restart mongo\n\n- name: copy upstart script\n template: src=mongo.conf.j2 dest=/etc/init/mongo.conf\n notify: restart mongo\n\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 834, "all_permissive": false }
ansible_role
otaviomedeiros/my-evernote
941fb8f04a9c425cbfd21f11e275c70fbdfc28a0
0
setup-automation/roles/nginx
7,735
[ "no_license" ]
[ { "path": "setup-automation/roles/nginx/templates/upstart/nginx.conf.j2", "content": "description \"Start Nginx Container\"\nauthor \"<NAME>\"\n\nstart on (filesystem and started docker and started notes)\nstop on runlevel [!2345]\nrespawn\n\npre-start script\n /usr/bin/docker kill {{ nginx_container_name ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1296, "all_permissive": false }