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
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/automount
7,238
[ "no_license" ]
[ { "path": "roles/automount/tasks/main.yaml", "content": "- name: Ensure /usr/local/sbin\n tags: [automount]\n ansible.builtin.file:\n dest: /usr/local/sbin\n state: directory\n\n- name: Copy automount script\n tags: [automount]\n ansible.builtin.copy:\n src: automount.sh\n dest: /usr/local/s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2009, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/avahi
7,238
[ "no_license" ]
[ { "path": "roles/avahi/tasks/main.yaml", "content": "- name: Install avahi and dbus\n tags: [ apk, avahi, dbus ]\n community.general.apk:\n name: [ avahi, dbus ]\n\n- name: Start services\n ansible.builtin.service:\n name: \"{{ item }}\"\n enabled: yes\n state: started\n loop:\n - avahi-d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 260, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/backup-apk-commit-hook
7,238
[ "no_license" ]
[ { "path": "roles/backup-apk-commit-hook/files/zfs-autobackup.sh", "content": "#!/bin/sh\n[ \"$1\" == \"pre-commit\" ] || exit 0\n\nerrexit() {\n echo $1 >&2\n exit 1\n}\n\n_rootfs=`df / | tail -n -1 | cut -d' ' -f1` \\\n || errexit \"couldn't determine the root dataset\"\n\nzfs set autobackup:apk=true \"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 817, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/backup-push-source
7,238
[ "no_license" ]
[ { "path": "roles/backup-push-source/templates/snapshot.sh", "content": "#!/bin/sh\nif [ `whoami` != \"{{ backup_user }}\" ]; then\n exec su -s /bin/sh \"{{ backup_user }}\" \"{{ backup_home }}/snapshot.sh\"\nfi\n\n{% for target in backup_targets | dict2items %}\nflock --nonblock '{{ backup_home }}/snapshot...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 5419, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/backup-push-target
7,238
[ "no_license" ]
[ { "path": "roles/backup-push-target/tasks/main.yaml", "content": "- name: \"Create user {{ source_name }}\"\n ansible.builtin.user:\n name: \"{{ source_name }}\"\n system: yes\n password: '*'\n\n- name: \"Authorize {{ source_name }} public key\"\n ansible.posix.authorized_key:\n user: \"{{ sou...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 949, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/bridge-if
7,238
[ "no_license" ]
[ { "path": "roles/bridge-if/meta/argument_specs.yaml", "content": "argument_specs:\n main:\n options:\n ifname:\n required: yes\n bridge_ports:\n type: list\n elements: str\n required: yes\n", "license_type": "no_license", "detected_licenses": [], "size_b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 544, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/cifs-mount
7,238
[ "no_license" ]
[ { "path": "roles/cifs-mount/tasks/main.yaml", "content": "- name: Credentials directory\n tags: cifs\n ansible.builtin.file:\n dest: /etc/cifs-credentials\n mode: '0600'\n state: directory\n\n- name: Credentials file\n tags: cifs\n ansible.builtin.copy:\n dest: \"/etc/cifs-credentials/{{ ser...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 870, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/cups
7,238
[ "no_license" ]
[ { "path": "roles/cups/tasks/main.yaml", "content": "- name: Install packages\n tags: [ apk, cups ]\n community.general.apk:\n name: [ cups, cups-filters ]\n\n- name: Add users to lpadmin group\n tags: [ cups ]\n ansible.builtin.user:\n name: \"{{ item }}\"\n append: yes\n groups: [ lpadmin ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 589, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/dhcpcd
7,238
[ "no_license" ]
[ { "path": "roles/dhcpcd/tasks/main.yaml", "content": "- name: Install packages\n tags: [ dhcpcd ]\n community.general.apk:\n name:\n - dhcpcd # udhcpc can't do IPv4 and IPv6 at the same time\n\n- name: Configure dhcpcd\n ansible.builtin.template:\n dest: /etc/dhcpcd.conf\n src: dhcpcd.conf....
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1596, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/dnsmasq
7,238
[ "no_license" ]
[ { "path": "roles/dnsmasq/templates/dnsmasq.conf.j2", "content": "# {{ ansible_managed }}\n\n# Never forward addresses in the non-routed address spaces.\nbogus-priv\n\n# Enable DNSSEC validation and caching:\n# (Requires dnsmasq-dnssec package to be installed)\nconf-file=/usr/share/dnsmasq/trust-anchors.conf...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2651, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/doas-entry
7,238
[ "no_license" ]
[ { "path": "roles/doas-entry/tasks/main.yaml", "content": "- name: \"Ensure doas.conf: {{ line }}\"\n tags: doas\n ansible.builtin.lineinfile:\n dest: \"{{ doas_conf }}\"\n mode: '0644'\n line: \"{{ line }}\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 15...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 222, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/firefox
7,238
[ "no_license" ]
[ { "path": "roles/firefox/tasks/main.yaml", "content": "- name: Install packages\n tags: [ firefox ]\n community.general.apk:\n name: [ firefox, gcompat, patchelf ]\n\n- name: Install launch script\n tags: [ firefox ]\n ansible.builtin.copy:\n dest: /usr/local/bin/firefox\n src: firefox\n mod...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1135, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/flatpak
7,238
[ "no_license" ]
[ { "path": "roles/flatpak/tasks/main.yaml", "content": "- name: Install flatpak\n tags: flatpak\n community.general.apk:\n name: flatpak\n\n- name: Add flathub\n tags: flatpak\n community.general.flatpak_remote:\n name: flathub\n state: present\n flatpakrepo_url: https://dl.flathub.org/repo/f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 262, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/go2rtc
7,238
[ "no_license" ]
[ { "path": "roles/go2rtc/tasks/main.yaml", "content": "- name: go2rtc configuration\n tags: [ go2rtc ]\n ansible.builtin.copy:\n src: \"{{ inventory_hostname }}/go2rtc.secrets.yaml\"\n dest: /etc/go2rtc.yaml\n\n- name: go2rtc container\n tags: [ podman, go2rtc ]\n containers.podman.podman_container...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 466, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/haos-backups
7,238
[ "no_license" ]
[ { "path": "roles/haos-backups/tasks/main.yaml", "content": "- name: Ensure haos backups dataset\n when: zfs\n community.general.zfs:\n name: \"{{ zfs_data_pool }}{{ data_dir }}\"\n state: present\n extra_zfs_properties:\n mountpoint: \"{{ data_dir }}\"\n\n- name: Create haos-backups user\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 357, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/minio
7,238
[ "no_license" ]
[ { "path": "roles/minio/tasks/main.yaml", "content": "- name: Install MinIO\n tags: [ apk ]\n community.general.apk:\n name: [ minio, minio-client ]\n\n- name: MinIO dataset\n tags: [ zfs ]\n when: zfs and (minio_data_dir | default(false))\n community.general.zfs:\n name: \"{{ zfs_data_pool }}{{ m...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3518, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/pipewire
7,238
[ "no_license" ]
[ { "path": "roles/pipewire/tasks/main.yaml", "content": "- name: Install pipewire packages\n community.general.apk:\n name: \n - pipewire\n - pipewire-pulse\n - wireplumber\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 130, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/podman-user
7,238
[ "no_license" ]
[ { "path": "roles/podman-user/tasks/main.yaml", "content": "- name: Get user id\n ansible.builtin.user:\n name: \"{{ podman_user }}\"\n register: user_info\n\n- name: Ensure subuid and subgid\n ansible.builtin.lineinfile:\n create: true\n dest: \"/etc/{{ item }}\"\n line: \"{{ podman_user }}:{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 305, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/postgresql
7,238
[ "no_license" ]
[ { "path": "roles/postgresql/tasks/main.yaml", "content": "- name: Install postgresql\n tags: [ apk, postgresql ]\n community.general.apk:\n name: \"postgresql{{ postgresql_version }}\"\n\n- name: Ensure data dataset\n tags: [ zfs, postgresql ]\n when: zfs\n community.general.zfs:\n name: \"{{ zfs...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1186, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/prometheus
7,238
[ "no_license" ]
[ { "path": "roles/prometheus/templates/prometheus.yml.j2", "content": "global:\n scrape_interval: 15s \n evaluation_interval: 15s\n scrape_timeout: 10s\n\nscrape_configs:\n - job_name: prometheus\n static_configs:\n - targets: [\"localhost:9090\"]\n - job_name: node_exporter\n static_configs:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 678, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/prometheus-node-exporter
7,238
[ "no_license" ]
[ { "path": "roles/prometheus-node-exporter/tasks/main.yaml", "content": "- name: Install prometheus\n tags: [ apk ]\n community.general.apk:\n name:\n - prometheus\n - prometheus-node-exporter\n\n- name: Configure prometheus\n ansible.builtin.template:\n dest: /etc/prometheus/prometheus.ym...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 845, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/prusa-connect-rtsp
7,238
[ "no_license" ]
[ { "path": "roles/prusa-connect-rtsp/tasks/main.yaml", "content": "- name: Prusa Connect RTSP container\n containers.podman.podman_container:\n image: jtee3d/prusa_connect_rtsp:latest\n name: prusa_connect_rtsp\n env:\n TZ: \"{{ timezone }}\"\n CAMERA_URLS: \"{{ prusa_connect_rtsp_cameras...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 389, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/prusamon
7,238
[ "no_license" ]
[ { "path": "roles/prusamon/meta/main.yaml", "content": "dependencies:\n - name: sway\n sway_users:\n - \"{{ target_user }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "roles/prusamon/files/lcd.sh", "content": "#!/bin/sh\n#\n# hid...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1440, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/qemu
7,238
[ "no_license" ]
[ { "path": "roles/qemu/tasks/main.yaml", "content": "- name: Install QEMU\n community.general.apk:\n name: \n - ovmf #@community3.17\n - qemu-img\n - qemu-openrc\n - qemu-system-x86_64\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 151 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 151, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/qemu-bridge
7,238
[ "no_license" ]
[ { "path": "roles/qemu-bridge/tasks/main.yaml", "content": "- name: \"Allow bridge {{ ifname }}\"\n ansible.builtin.lineinfile:\n dest: /etc/qemu/bridge.conf\n create: yes\n owner: root\n group: qemu\n mode: '640'\n line: 'allow {{ ifname }}'\n\n# workaround for https://github.com/jirutka/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 411, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/qemu-hw-usb-host
7,238
[ "no_license" ]
[ { "path": "roles/qemu-hw-usb-host/tasks/main.yaml", "content": "- name: Install qemu-hw-usb-host\n community.general.apk:\n name: qemu-hw-usb-host\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
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/qemu-vm
7,238
[ "no_license" ]
[ { "path": "roles/qemu-vm/templates/confd.j2", "content": "# {{ ansible_managed }}\n\n{% if user %}\nuser=\"{{ user }}\"\n{% endif %}\n\nsmp_cpus=\"{{ cpus }}\"\nmemory=\"{{ memory }}\"\n\nvnc_listen=\"127.0.0.1\"\nvnc_display=0\n\nnet0=\"{{ net0 }}\"\n{% if net0 == 'bridge' %}\nnet0_br=\"{{ net0_br }}\"\n{%...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1746, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/qmk-sdk
7,238
[ "no_license" ]
[ { "path": "roles/qmk-sdk/tasks/main.yaml", "content": "- name: Setup QMK udev rules\n tags: [ udev, qmk ]\n notify: 'reload udev rules'\n ansible.builtin.copy:\n dest: /etc/udev/rules.d/julie-qmk.rules\n src: julie-qmk.rules\n", "license_type": "no_license", "detected_licenses": [], "si...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 174, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/rpi-argonone
7,238
[ "no_license" ]
[ { "path": "roles/rpi-argonone/files/argononed-init", "content": "#!/sbin/openrc-run\n\nname=\"argononed\"\ncommand=/usr/local/bin/argononed.py\ncommand_background=yes\npidfile=/run/$RC_SVCNAME.pid\nrequired_files=/etc/argononed.conf\n", "license_type": "no_license", "detected_licenses": [], "siz...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 987, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/rpi-bootloader
7,238
[ "no_license" ]
[ { "path": "roles/rpi-bootloader/tasks/main.yaml", "content": "- name: Ensure device tree overlays\n ansible.builtin.lineinfile:\n dest: /boot/usercfg.txt\n create: true\n line: \"dtoverlay={{ item }}\"\n loop: \"{{ usercfg_dtoverlays }}\"\n\n- name: Ensure bootloader configuration\n ansible.buil...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 596, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/samba
7,238
[ "no_license" ]
[ { "path": "roles/samba/defaults/main.yaml", "content": "samba_shares: []\nsamba_users: []\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 33 }, { "path": "roles/samba/meta/main.yaml", "content": "dependencies: [ avahi ]\n", "license_type": "no_license", ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1695, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/scrypted
7,238
[ "no_license" ]
[ { "path": "roles/scrypted/tasks/main.yaml", "content": "- name: Scrypted container\n containers.podman.podman_container:\n image: koush/scrypted\n name: scrypted\n command: >\n env:\n TZ: \"{{ timezone }}\"\n restart_policy: always\n network: host\n mount:\n - 'type=bind,sour...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 718, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/servarr
7,238
[ "no_license" ]
[ { "path": "roles/servarr/tasks/main.yaml", "content": "- name: servarr dataset\n when: zfs\n community.general.zfs:\n name: \"{{ zfs_data_pool }}{{ data_dir }}\"\n state: present\n extra_zfs_properties:\n mountpoint: \"{{ data_dir }}\"\n\n- name: servarr group\n ansible.builtin.group:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2752, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/ssh-user
7,238
[ "no_license" ]
[ { "path": "roles/ssh-user/tasks/main.yaml", "content": "- name: \"Create user {{ user }}\"\n ansible.builtin.user:\n name: \"{{ user }}\"\n shell: \"{{ shell | default(omit) }}\"\n group: \"{{ user_group | default(omit) }}\"\n groups: \"{{ user_groups | default(omit) }}\"\n append: \"{{ (use...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 603, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/sway
7,238
[ "no_license" ]
[ { "path": "roles/sway/tasks/main.yaml", "content": "- name: Setup udev rules\n tags: [ sway, udev ]\n notify: 'reload udev rules'\n ansible.builtin.copy:\n dest: /etc/udev/rules.d/julie-backlight.rules\n src: julie-backlight.rules\n\n- name: Install packages\n tags: [ sway ]\n community.general.a...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1783, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/sway-desktop
7,238
[ "no_license" ]
[ { "path": "roles/sway-desktop/meta/main.yaml", "content": "dependencies: [ automount, avahi, firefox, pipewire, sway ]\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 60 }, { "path": "roles/sway-desktop/files/notify-send-all.sh", "content": "#!/bin/sh\n\nfail...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1816, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/traefik
7,238
[ "no_license" ]
[ { "path": "roles/traefik/tasks/main.yaml", "content": "- name: Traefik container\n containers.podman.podman_container:\n image: traefik\n name: traefik\n command: >\n --api.dashboard=true\n --api.insecure=true\n --providers.docker=true\n --providers.docker.endpoint=unix:///var/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1892, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/user-julie
7,238
[ "no_license" ]
[ { "path": "roles/user-julie/tasks/main.yaml", "content": "- name: Install packages\n tags: [apk]\n when: ansible_distribution == 'Alpine'\n community.general.apk:\n name:\n - chezmoi\n - curl\n - doas\n - docs\n - delta\n - drill\n - \"{{ eza_or_exa }}\"\n - fzf...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 664, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/vlan-if
7,238
[ "no_license" ]
[ { "path": "roles/vlan-if/templates/interface.j2", "content": "{#\n# vim: set noexpandtab \n#}\n# {{ ansible_managed }}\nauto {{ ifname }}\niface {{ ifname }}\n\tvlan-id {{ vlan }}\n\tvlan-raw-device {{ raw_device }}\n{% if inet_dhcp %}\n\niface {{ ifname }} inet dhcp\n{% elif inet_address and inet_gateway %...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1028, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/xdg
7,238
[ "no_license" ]
[ { "path": "roles/xdg/files/initd", "content": "#!/sbin/openrc-run\ndescription=\"Creates the /run/user directory\"\n\nstart() {\n ebegin \"/run/user: Creating directory\"\n mkdir -p /run/user || return 1\n eend $?\n\n ebegin \"/run/user: Setting permissions\"\n chmod 1777 /run/user\n eend $?\n}\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 832, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/xorg-server
7,238
[ "no_license" ]
[ { "path": "roles/xorg-server/tasks/main.yaml", "content": "- name: Install xorg\n tags: [ xorg ]\n community.general.apk:\n name:\n - xf86-input-evdev\n - xf86-input-libinput\n - xorg-server\n - xinit\n\n- name: Add users to groups\n tags: [ xorg ]\n ansible.builtin.user:\n nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 332, "all_permissive": false }
ansible_role
juliekoubova/machines
042593aff2f22ff5a6740856f6638000c32b5197
1
roles/zfsbootmenu
7,238
[ "no_license" ]
[ { "path": "roles/zfsbootmenu/tasks/main.yaml", "content": "- name: Install bash\n community.general.apk:\n name: bash\n\n- name: Download zbm-kcl\n ansible.builtin.get_url:\n dest: /usr/local/bin/zbm-kcl\n mode: '755'\n url: https://get.zfsbootmenu.org/zbm-kcl\n\n- name: Download ZFS Boot Menu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 857, "all_permissive": false }
ansible_role
pavel-kostyukov/microfinance
069189440d8577064547a4e9cffc5de81d3988b9
0
deploy/roles/deploy
7,238
[ "no_license" ]
[ { "path": "deploy/roles/deploy/vars/main.yml", "content": "---\n\ngit_repository: '<EMAIL>:dvinaweb-developers/dunay.git'\n#app_path: '/var/www/zaim-dynai/data/www/zaim-dynai.ru/deploy-test'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 }, { "path": "deploy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1131, "all_permissive": false }
ansible_role
marietta-a/Give-Your-Application-Auto-Deploy-Superpowers
11eabf47259b2b7aa004fb5ad5dc2936b9e1480b
0
.circleci/ansible/roles/configure-server
7,238
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/configure-server/tasks/main.yml", "content": "---\n- name: \"upgrade and update packages.\"\n become: true\n become_method: sudo\n apt:\n upgrade: \"yes\"\n update_cache: \"yes\"\n\n- name: \"remove unwanted dependencies\"\n become: true\n apt: \n autoremove:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 456, "all_permissive": false }
ansible_role
marietta-a/Give-Your-Application-Auto-Deploy-Superpowers
11eabf47259b2b7aa004fb5ad5dc2936b9e1480b
0
.circleci/ansible/roles/deploy
7,238
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "---\n- name: \"upgrade and update packages.\"\n become: true\n apt:\n upgrade: \"yes\"\n update_cache: \"yes\"\n\n- name: \"install node dependencies.\"\n become: true\n apt:\n name: [\"nodejs\", \"npm\"]\n state: latest\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 546, "all_permissive": false }
ansible_role
amitvashisttech/terraform-pwc-07-April-2022
764bd5a25154c449adefce9d508175f1bd8138dc
1
Terraform/26-Provisioner-Local-Exec/ansible-code/roles/webserver
7,238
[ "no_license" ]
[ { "path": "Terraform/26-Provisioner-Local-Exec/ansible-code/roles/webserver/templates/info.j2", "content": "<html>\n<body background=\"mario.jpg\">\n<h1> Welcome to the world of Terraform & Ansible.! </h1>\n<h2> Welcome to Host: {{ansible_fqdn}}</h2>\n<h2> Hostname : {{ansible_hostname}}</h2>\n<h2> OS...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 761, "all_permissive": false }
ansible_role
thopper91/Ansible-on-Windows
cb27c5976b764717821215785da1bfbb4505d2fd
10
roles/Add users to ilos using powershell
7,238
[ "no_license" ]
[ { "path": "roles/Add users to ilos using powershell/tasks/main.yml", "content": "#This playbook will execute a Powershell script to create a user across all ilos\n#Steps:\n# 1) Copy powershell script to a specific location on host machine\n# 2) Ensure all powershell modules are installed. NOTE: This modules...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1274, "all_permissive": false }
ansible_role
thopper91/Ansible-on-Windows
cb27c5976b764717821215785da1bfbb4505d2fd
10
roles/Disable Windows Features
7,238
[ "no_license" ]
[ { "path": "roles/Disable Windows Features/tasks/main.yml", "content": "### Created by thopper91 (2017)\n---\n- name: Uninstall Telnet\n win_feature:\n name: Telnet-Client\n state: absent\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 118 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 118, "all_permissive": false }
ansible_role
thopper91/Ansible-on-Windows
cb27c5976b764717821215785da1bfbb4505d2fd
10
roles/Enable Windows Features
7,238
[ "no_license" ]
[ { "path": "roles/Enable Windows Features/tasks/main.yml", "content": "### Created by thopper91 (2017)\n---\n- name: Install Telnet\n win_feature:\n name: Telnet-Client\n state: present\n", "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
thopper91/Ansible-on-Windows
cb27c5976b764717821215785da1bfbb4505d2fd
10
roles/Gather Facts on Windows Hosts
7,238
[ "no_license" ]
[ { "path": "roles/Gather Facts on Windows Hosts/tasks/main.yml", "content": "### Created by thopper91 (2017)\n##\n## If requiring more win_commands, any cmd commands can be used here. If unsure on what is available (specifically\n## to the current Windows OS you plan or are using), then please follow this li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1009, "all_permissive": false }
ansible_role
thopper91/Ansible-on-Windows
cb27c5976b764717821215785da1bfbb4505d2fd
10
roles/Gather IP details
7,238
[ "no_license" ]
[ { "path": "roles/Gather IP details/tasks/main.yml", "content": "### Created by thopper91 (2017)\n---\n- name: Gather IP details\n config: '{{ playbook_dir }}/config.json'\n win_command: ipconfig\n register: ipconfig\n\n- debug: var=ipconfig\n", "license_type": "no_license", "detected_licenses": [...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 173, "all_permissive": false }
ansible_role
thopper91/Ansible-on-Windows
cb27c5976b764717821215785da1bfbb4505d2fd
10
roles/Install MSI's
7,238
[ "no_license" ]
[ { "path": "roles/Install MSI's/vars/main.yml", "content": "### Created by thopper91 (2017)\n---\nuser: 'hoppert'\nTool: 'putty-0.70.msi'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 75 }, { "path": "roles/Install MSI's/tasks/main.yml", "content": "### Crea...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 372, "all_permissive": false }
ansible_role
thopper91/Ansible-on-Windows
cb27c5976b764717821215785da1bfbb4505d2fd
10
roles/Restart Windows Services
7,238
[ "no_license" ]
[ { "path": "roles/Restart Windows Services/tasks/main.yml", "content": "### Created by thopper91 (2017)\n---\n- name: Restart \"{{ service }}\"\n win_service:\n name: \"{{ service }}\"\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 130, "all_permissive": false }
ansible_role
thopper91/Ansible-on-Windows
cb27c5976b764717821215785da1bfbb4505d2fd
10
roles/Start Windows Services
7,238
[ "no_license" ]
[ { "path": "roles/Start Windows Services/tasks/main.yml", "content": "### Created by thopper91 (2017)\n---\n- name: Start \"{{ service }}\"\n win_service:\n name: \"{{ service }}\"\n state: started\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 126 }, { "p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 188, "all_permissive": false }
ansible_role
thopper91/Ansible-on-Windows
cb27c5976b764717821215785da1bfbb4505d2fd
10
roles/Stop Windows Services
7,238
[ "no_license" ]
[ { "path": "roles/Stop Windows Services/tasks/main.yml", "content": "### Created by thopper91 (2017)\n---\n- name: Stop \"{{ service }}\"\n win_service:\n name: \"{{ service }}\"\n state: stopped\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 125 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 125, "all_permissive": false }
ansible_role
thopper91/Ansible-on-Windows
cb27c5976b764717821215785da1bfbb4505d2fd
10
roles/Uninstall MSI's
7,238
[ "no_license" ]
[ { "path": "roles/Uninstall MSI's/tasks/main.yml", "content": "### Created by thopper91 (2017)\n---\n- name: Uninstall \"{{ Tool }}\"\n win_msi:\n path: C:\\Users\\{{ user }}\\Documents\\{{ Tool }}\n state: absent\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 147...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 147, "all_permissive": false }
ansible_role
apppv/darwin-bootstrap
89d03646414f315b2c62eb13f082e626d7cc08ae
0
roles/common
7,238
[ "no_license" ]
[ { "path": "roles/common/tasks/homebrew.yml", "content": "---\n- name: \"Install ~> Homebrew packages\"\n community.general.homebrew:\n name: \"{{ item }}\"\n state: present\n loop:\n - curl\n - git\n - mas # AppStore CLI\n - openssl\n - gettext\n - watch\n - autoconf\n - auto...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 3539, "all_permissive": false }
ansible_role
apppv/darwin-bootstrap
89d03646414f315b2c62eb13f082e626d7cc08ae
0
roles/fonts
7,238
[ "no_license" ]
[ { "path": "roles/fonts/tasks/main.yml", "content": "- name: Install Nerd Fonts\n ansible.builtin.include_tasks: install-fonts.yml\n loop: \"{{ nerd_fonts }}\"\n tags: fonts\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 }, { "path": "roles/fonts/defaults/...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1382, "all_permissive": false }
ansible_role
apppv/darwin-bootstrap
89d03646414f315b2c62eb13f082e626d7cc08ae
0
roles/macos_osx_defaults
7,238
[ "no_license" ]
[ { "path": "roles/macos_osx_defaults/tasks/main.yml", "content": "---\n# System-wide Settings\n\n# Language & Input Settings\n- name: Disable annoying autocorrect\n community.general.osx_defaults:\n domain: NSGlobalDomain\n key: \"{{ item }}\"\n type: bool\n value: false\n state: present\n w...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4023, "all_permissive": false }
ansible_role
apppv/darwin-bootstrap
89d03646414f315b2c62eb13f082e626d7cc08ae
0
roles/neovim
7,238
[ "no_license" ]
[ { "path": "roles/neovim/tasks/main.yml", "content": "# Install Neovim dependencies\n- name: Install Neovim dependencies\n community.general.homebrew:\n name:\n - ninja\n - cmake\n - gettext\n - curl\n - tree-sitter\n state: present\n\n# Remove existing Neovim binary if it exi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2339, "all_permissive": false }
ansible_role
apppv/darwin-bootstrap
89d03646414f315b2c62eb13f082e626d7cc08ae
0
roles/tmux
7,238
[ "no_license" ]
[ { "path": "roles/tmux/tasks/main.yml", "content": "---\n- name: Install tmux using Homebrew\n community.general.homebrew:\n name: tmux\n state: present\n\n- name: Ensure .tmux/plugins directory exists\n ansible.builtin.file:\n path: \"{{ lookup('ansible.builtin.env', 'HOME') }}/.tmux/plugins\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1432, "all_permissive": false }
ansible_role
stevenklc/ansible_practise
31811d7a9f2a52388f8a09e4705271ac6eca0136
0
roles/curl
7,238
[ "no_license" ]
[ { "path": "roles/curl/tasks/main.yml", "content": "\n- name: Check curl is already installed\n command: curl --version\n ignore_errors: yes\n changed_when: false\n register: curl_is_installed\n\n- name: Install curl\n apt: \n name: curl\n update_cache: yes\n when: curl_is_installed.rc != 0\n\n",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 242, "all_permissive": false }
ansible_role
stevenklc/ansible_practise
31811d7a9f2a52388f8a09e4705271ac6eca0136
0
roles/url_test
7,238
[ "no_license" ]
[ { "path": "roles/url_test/tasks/main.yml", "content": "- name: Test Taiwan high speed rail URL\n uri: \n url: \"{{ item.url }}\"\n register: url_result\n until: url_result.status == 200\n retries: 5\n delay: 10\n with_items:\n - { url: 'https://www.thsrc.com.tw' }\n\n- name: Test Taiwan high spe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 426, "all_permissive": false }
ansible_role
chesapeaketechnology/ansible-datasci-roles
843f1b33af985b17914ba11d3b1f4f147d94c6d0
0
roles/azure-deployment-facts
7,238
[ "no_license" ]
[ { "path": "roles/azure-deployment-facts/tasks/azure-datalake-facts.yml", "content": "---\n- name: \"Store azure data lake container name\"\n consul_kv:\n key: azure/datalake/container\n value: \"{{ azure_datalake_container }}\"\n\n- name: \"Store azure data lake endpoint\"\n consul_kv:\n key: azu...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2092, "all_permissive": false }
ansible_role
chesapeaketechnology/ansible-datasci-roles
843f1b33af985b17914ba11d3b1f4f147d94c6d0
0
roles/common
7,238
[ "no_license" ]
[ { "path": "roles/common/tasks/azure_datalake.yml", "content": "---\n- name: \"Install Azure Data Lake Storage client library\"\n pip:\n name: azure-storage-file-datalake\n executable: pip3\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 128 }, { "path": ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 470, "all_permissive": false }
ansible_role
chesapeaketechnology/ansible-datasci-roles
843f1b33af985b17914ba11d3b1f4f147d94c6d0
0
roles/consul
7,238
[ "no_license" ]
[ { "path": "roles/consul/templates/consul.service.j2", "content": "[Unit]\nDescription=\"Data Science Consul Server\"\nRequires=network-online.target\nAfter=network-online.target\n\n[Service]\nWorkingDirectory={{ consul_config_dir }}\nUser=root\nExecStart={{ consul_install_dir }}/consul agent -config-dir={{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2799, "all_permissive": false }
ansible_role
chesapeaketechnology/ansible-datasci-roles
843f1b33af985b17914ba11d3b1f4f147d94c6d0
0
roles/hadoop
7,238
[ "no_license" ]
[ { "path": "roles/hadoop/defaults/main.yml", "content": "---\nstat_file: \"/etc/hadoop.installed\"\ntarget_server_group: default_group\nssh_public_key: \"~/.ssh/id_rsa.pub\"\nssh_private_key: \"~/.ssh/id_rsa\"\nhadoop_user: hadoop\nhadoop_group: hadoop\nhadoop_version: 2.10.1\nhadoop_home: \"/usr/local/hadoo...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 11817, "all_permissive": false }
ansible_role
chesapeaketechnology/ansible-datasci-roles
843f1b33af985b17914ba11d3b1f4f147d94c6d0
0
roles/postgresql
7,238
[ "no_license" ]
[ { "path": "roles/postgresql/tasks/fact_tables.yml", "content": "---\n- block:\n - name: \"Get DB name from Consul\"\n shell: /usr/local/bin/consul kv get postgresql/db/name\n register: postgresql_db_name\n\n - name: \"Get postgresql admin user name from Consul\"\n shell: /usr/local/bin/...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 5216, "all_permissive": false }
ansible_role
doitroot/KubeOperator
c93597137eb052f7898384ce8b998ca413dd868b
0
core/resource/kubeasz/roles/cluster-addon
7,232
[ "no_license" ]
[ { "path": "core/resource/kubeasz/roles/cluster-addon/tasks/main.yml", "content": "- block:\n - name: 生成 https 证书\n shell: \"openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout tls.key -out tls.crt -subj \\\"/CN={{APP_DOMAIN}}\\\"\"\n args:\n chdir: \"/tmp/\"\n ignore_errors...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 7996, "all_permissive": false }
ansible_role
doitroot/KubeOperator
c93597137eb052f7898384ce8b998ca413dd868b
0
core/resource/kubeasz/roles/gpu-plugin
7,232
[ "no_license" ]
[ { "path": "core/resource/kubeasz/roles/gpu-plugin/tasks/main.yml", "content": "- name: copy nvidia-plugin\n template:\n src: nvidia-plugin.yml.j2\n dest: /tmp/nvidia-plugin.yml\n\n- name: create nvidia-plugin\n shell: \"kubectl apply -f /tmp/nvidia-plugin.yml\"\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 183, "all_permissive": false }
ansible_role
doitroot/KubeOperator
c93597137eb052f7898384ce8b998ca413dd868b
0
core/resource/kubeasz/roles/kubeapps
7,232
[ "no_license" ]
[ { "path": "core/resource/kubeasz/roles/kubeapps/tasks/main.yml", "content": "- block:\n - name: 插入 kubeapps-plus registry hosts 记录\n lineinfile:\n path: \"/etc/hosts\"\n regexp: \"{{ kubeapps_registry_hostname }}\"\n line: \"{{ hostvars[groups['worker'][0]]['ansible_ssh_host'] }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3598, "all_permissive": false }
ansible_role
doitroot/KubeOperator
c93597137eb052f7898384ce8b998ca413dd868b
0
core/resource/kubeasz/roles/registry
7,232
[ "no_license" ]
[ { "path": "core/resource/kubeasz/roles/registry/tasks/main.yml", "content": "- name: 获取所有已经创建的POD信息\n command: \"{{ bin_dir }}/kubectl get pod --all-namespaces\"\n register: pod_info\n\n- block:\n - name: 拷贝 registry.yml\n template: src=registry.yml.j2 dest=/tmp/registry.yml\n\n - name: 拷贝 regi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 769, "all_permissive": false }
ansible_role
doitroot/KubeOperator
c93597137eb052f7898384ce8b998ca413dd868b
0
core/resource/kubeasz/roles/scale
7,232
[ "no_license" ]
[ { "path": "core/resource/kubeasz/roles/scale/tasks/kubeapps.yml", "content": "- block:\n - name: 插入 kubeapps-plus registry hosts 记录\n lineinfile:\n path: \"/etc/hosts\"\n regexp: \"{{ kubeapps_registry_hostname }}\"\n line: \"{{ hostvars[groups['worker'][0]]['ansible_ssh_host'] ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 874, "all_permissive": false }
ansible_role
ru-rocker/confluent-kafka-playbook
8f9016136a35418734d39ce5bc2829cf6675a153
13
roles/confluent-kafka
7,232
[ "no_license" ]
[ { "path": "roles/confluent-kafka/vars/main.yml", "content": "---\nserver_urls: \"{{ groups['kafka_broker_nodes'] | map('extract', hostvars, ['ansible_host']) | list }}\"\nzookeeper_connect_servers: \"{{ groups['kafka_broker_nodes'] | map('extract', hostvars, ['ansible_host']) | join(':2181,') }}:2181\"\nboo...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 5157, "all_permissive": false }
ansible_role
mauritsmoehn/AnsibleIAC
afb5b3487d0746d083ecc025a68131c87110add1
0
roles/databaseserver
7,232
[ "no_license" ]
[ { "path": "roles/databaseserver/vars/main.yml", "content": "---\n# vars file for databaseserver\nmongodbAdmin: \"beheerder\"\nmongodbAdminPass: \"<PASSWORD>!\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 }, { "path": "roles/databaseserver/handlers/main.yml...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 3182, "all_permissive": false }
ansible_role
mauritsmoehn/AnsibleIAC
afb5b3487d0746d083ecc025a68131c87110add1
0
roles/loadbalancer
7,232
[ "no_license" ]
[ { "path": "roles/loadbalancer/handlers/main.yml", "content": "---\n# handlers file for loadbalancer\n- name: Restart haproxy\n service:\n name: haproxy\n state: \"restarted\"\n state: \"reloaded\"\n enabled: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes"...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1001, "all_permissive": false }
ansible_role
mauritsmoehn/AnsibleIAC
afb5b3487d0746d083ecc025a68131c87110add1
0
roles/webserver
7,232
[ "no_license" ]
[ { "path": "roles/webserver/vars/main.yml", "content": "---\n# vars file for webserver\napp_user: \"vagrant\"\nhttp_host: \"test\"\nhttp_conf: \"test.conf\"\nhttp_port: \"80\"\ndisable_default: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 }, { "path": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2421, "all_permissive": false }
ansible_role
zx-spectrum1983/quick_websrv
88498d152e66ad3995ee667e5f25a359e178e52a
0
roles/10-build-mariadb
7,232
[ "no_license" ]
[ { "path": "roles/10-build-mariadb/tasks/main.yml", "content": "---\r\n\r\n - name: Создаем volume для хранения баз данных\r\n docker_volume:\r\n name: mariadb\r\n\r\n - name: Проверим создавалась ли база ранее\r\n find:\r\n path: /var/lib/docker/volumes/mariadb/_data/\r\n register: dbfo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 814, "all_permissive": false }
ansible_role
zx-spectrum1983/quick_websrv
88498d152e66ad3995ee667e5f25a359e178e52a
0
roles/10-build-nginx-php
7,232
[ "no_license" ]
[ { "path": "roles/10-build-nginx-php/tasks/main.yml", "content": "---\r\n\r\n - name: Создаем каталоги для веб-сервера\r\n file:\r\n path: \"{{item}}\"\r\n state: directory\r\n mode: '0755'\r\n loop:\r\n - \"/opt/quicksrv\"\r\n - \"/opt/quicksrv/html\"\r\n - \"/opt/quicks...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1534, "all_permissive": false }
ansible_role
versionit/ansiblenew
d19753df83805441e97a266f22236b1e60c8276e
0
playbooks/roles/common-centos
7,232
[ "no_license" ]
[ { "path": "playbooks/roles/common-centos/tasks/main.yml", "content": "- name: Install Package {{item}}\n yum: name={{item}} state=installed\n when: ansible_distribution == \"CentOS\"\n with_items:\n - vim\n - telnet\n - gcc\n - gzip\n - zip\n - unzip\n - wget\n", "license_type": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 202, "all_permissive": false }
ansible_role
versionit/ansiblenew
d19753df83805441e97a266f22236b1e60c8276e
0
playbooks/roles/common-ubuntu
7,232
[ "no_license" ]
[ { "path": "playbooks/roles/common-ubuntu/tasks/main.yml", "content": "- name: Install Package {{item}}\n apt: name={{item}} state=installed\n when: ansible_distribution == \"Ubuntu\"\n with_items:\n - vim\n - telnet\n - gcc\n - gzip\n - zip\n - unzip\n - wget\n", "license_type": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 202, "all_permissive": false }
ansible_role
versionit/ansiblenew
d19753df83805441e97a266f22236b1e60c8276e
0
playbooks/roles/java
7,232
[ "no_license" ]
[ { "path": "playbooks/roles/java/tasks/main.yml", "content": "- name: Extarct Java\r\n unarchive: \r\n src: /home/admin/ansible/roles/java/files/jdk-8u121-linux-x64.tar.gz\r\n dest: /opt \r\n become: yes\r\n\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 145 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 145, "all_permissive": false }
ansible_role
versionit/ansiblenew
d19753df83805441e97a266f22236b1e60c8276e
0
playbooks/roles/start
7,232
[ "no_license" ]
[ { "path": "playbooks/roles/start/tasks/main.yml", "content": "- name: start tomcat\n command: \"/sales/tomcat1/tomcatctl.sh start\"\n register: st\n \n- name: print output\n debug: msg=\"{{st}}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 130, "all_permissive": false }
ansible_role
versionit/ansiblenew
d19753df83805441e97a266f22236b1e60c8276e
0
playbooks/roles/tomcat-install2
7,232
[ "no_license" ]
[ { "path": "playbooks/roles/tomcat-install2/tasks/main.yml", "content": "- name: Check if tomcat is running\r\n shell: ps aux | grep {{tomcat_dir}}| grep java | grep -v grep\r\n ignore_errors: yes\r\n changed_when: false\r\n register: service_java_status\r\n\r\n- name: Stopping tomcat\r\n command: pkill...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1953, "all_permissive": false }
ansible_role
versionit/ansiblenew
d19753df83805441e97a266f22236b1e60c8276e
0
playbooks/roles/webserver
7,232
[ "no_license" ]
[ { "path": "playbooks/roles/webserver/vars/main.yml", "content": "PROJECT: ecommerce\r\nURL: https://github.com/versionit/webcontent/blob/master/ecommerce.tgz?raw=true\r\ndocument_root: /var/www/html/ecommerce\r\nvirt_server_name: ecommerce.versionit.com", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1567, "all_permissive": false }
ansible_role
leonlei1983/ansible_example
5ead95c301155dc760a80a3218937589464c0911
0
roles/app_setup
7,232
[ "no_license" ]
[ { "path": "roles/app_setup/templates/database.yml.j2", "content": "{{ app_env }}:\n adapter: mysql2\n encoding: utf8\n database: resumegenius_staging\n username: {{ mysql_users[0]['name'] }}\n password: {{ mysql_users[0]['password'] }}\n host: {{ mysql_users[0]['host'] }}\n pool: 5\n reconnect: true...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 1473, "all_permissive": false }
ansible_role
leonlei1983/ansible_example
5ead95c301155dc760a80a3218937589464c0911
0
roles/nginx_config
7,232
[ "no_license" ]
[ { "path": "roles/nginx_config/handlers/main.yml", "content": "---\n- name: restart nginx\n service: name=nginx enabled=yes state=restarted\n\n- name: validate nginx configuration\n command: nginx -t -c /etc/nginx/nginx.conf\n changed_when: false\n\n- name: reload nginx\n service: name=nginx state=reload...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1167, "all_permissive": false }
ansible_role
leonlei1983/ansible_example
5ead95c301155dc760a80a3218937589464c0911
0
roles/server_setup
7,232
[ "no_license" ]
[ { "path": "roles/server_setup/tasks/main.yml", "content": "---\n- name: install essential packages\n package:\n name: \"{{ item }}\"\n state: present\n loop: \"{{ list_of_packages }}\"\n\n- name: setup firewall\n debug:\n msg: \"{{ inventory_hostname }}\"\n\n- name: add {{ deploy_user }} user\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 476, "all_permissive": false }
ansible_role
nethanga/ansible-role-os-settings
59abbb71833ee30352d9739f156f7de1eb682ae8
0
roles/ansible-role-os-settings
7,232
[ "no_license" ]
[ { "path": "roles/ansible-role-os-settings/tasks/sysctl_yum_conf.yml", "content": "---\n- name: Verify /etc/sysctl.conf exists\n stat:\n path: /etc/sysctl.conf\n register: sysctl_conf\n\n- name: Backup /etc/sysctl.conf\n shell: cp /etc/sysctl.conf /etc/sysctl.conf_{{ date }}\n register: backup_sshd_co...
{ "task_files": 19, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 25, "total_bytes": 59996, "all_permissive": false }
ansible_role
Otus-DevOps-2021-11/JakUi_infra
be999ecbac6510355297b0ecf2ea14397167ec6e
1
ansible/roles/app
7,232
[ "no_license" ]
[ { "path": "ansible/roles/app/tasks/main.yml", "content": "---\n# tasks file for app\n- name: Show info about the env this host belongs to\n debug:\n msg: \"This host is in {{ env }} environment!!!\"\n\n- import_tasks: ruby.yml\n- import_tasks: puma.yml\n", "license_type": "no_license", "detected...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 271, "all_permissive": false }
ansible_role
Otus-DevOps-2021-11/JakUi_infra
be999ecbac6510355297b0ecf2ea14397167ec6e
1
ansible/roles/db
7,232
[ "no_license" ]
[ { "path": "ansible/roles/db/molecule/default/molecule.yml", "content": "---\ndependency:\n name: galaxy\ndriver:\n name: vagrant\nplatforms:\n - name: instance\n box: ubuntu/xenial64\nprovisioner:\n name: ansible\nverifier:\n name: testinfra\n", "license_type": "no_license", "detected_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 374, "all_permissive": false }
ansible_role
tvernorgvec/DevEnvRocky
0fe093a040b09fabd7f9e5742d693a7e57f5f592
0
ansible/roles/common
7,232
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: Update system packages\n dnf:\n name: '*'\n state: latest\n update_cache: yes\n\n- name: Install common packages\n dnf:\n name: \"{{ item }}\"\n state: present\n loop:\n - git\n - vim\n - wget\n - curl\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 399, "all_permissive": false }
ansible_role
tvernorgvec/DevEnvRocky
0fe093a040b09fabd7f9e5742d693a7e57f5f592
0
ansible/roles/docker
7,232
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n- name: Add Docker repository\n get_url:\n url: https://download.docker.com/linux/centos/docker-ce.repo\n dest: /etc/yum.repos.d/docker-ce.repo\n mode: '0644'\n\n- name: Install Docker packages\n dnf:\n name:\n - docker-ce\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 908, "all_permissive": false }
ansible_role
stanier/peculiar-labyrinth
7a72b19fe6d3929954c591d307b1792a00edfb6b
0
ansible/roles/build
7,232
[ "no_license" ]
[ { "path": "ansible/roles/build/tasks/munge.yml", "content": "- name: Install prerequisites\n ansible.builtin.package:\n name:\n - bzip2-devel\n enablerepo: devel\n become: true\n- name: Download Munge tarball\n ansible.builtin.get_url:\n url: https://github.com/dun/munge/releases/download/m...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1160, "all_permissive": false }
ansible_role
stanier/peculiar-labyrinth
7a72b19fe6d3929954c591d307b1792a00edfb6b
0
ansible/roles/common
7,232
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "- name: Upgrade all packages\n ansible.builtin.dnf:\n name: \"*\"\n state: latest\n become: true\n\n- name:\n ansible.builtin.package:\n name: \"epel-release\"\n state: latest\n become: true\n\n- name: Add Slurm system user\n ansi...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 5793, "all_permissive": false }
ansible_role
stanier/peculiar-labyrinth
7a72b19fe6d3929954c591d307b1792a00edfb6b
0
ansible/roles/compute
7,232
[ "no_license" ]
[ { "path": "ansible/roles/compute/tasks/main.yml", "content": "- name: Install Slurm\n import_tasks: slurm.yml\n tags: compute\n- name: Install Apptainer\n import_tasks: apptainer.yml\n tags: compute", "license_type": "no_license", "detected_licenses": [], "size_bytes": 135 }, { "path...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 550, "all_permissive": false }
ansible_role
stanier/peculiar-labyrinth
7a72b19fe6d3929954c591d307b1792a00edfb6b
0
ansible/roles/dbd
7,232
[ "no_license" ]
[ { "path": "ansible/roles/dbd/tasks/slurm.yml", "content": "- name: Install slurm DBd packages\n ansible.builtin.package:\n name:\n - slurm\n - slurm-slurmdbd\n state: present\n become: true\n tags: dbd\n\n- name: Enable slurmd\n ansible.builtin.systemd_service:\n name: slurmdbd\n e...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 354, "all_permissive": false }
ansible_role
stanier/peculiar-labyrinth
7a72b19fe6d3929954c591d307b1792a00edfb6b
0
ansible/roles/head
7,232
[ "no_license" ]
[ { "path": "ansible/roles/head/tasks/main.yml", "content": "- name: Install Slurm\n import_tasks: slurm.yml\n tags: head", "license_type": "no_license", "detected_licenses": [], "size_bytes": 60 }, { "path": "ansible/roles/head/tasks/slurm.yml", "content": "- name: Install slurm hea...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 382, "all_permissive": false }
ansible_role
stanier/peculiar-labyrinth
7a72b19fe6d3929954c591d307b1792a00edfb6b
0
ansible/roles/login
7,232
[ "no_license" ]
[ { "path": "ansible/roles/login/tasks/main.yml", "content": "- name: Install Slurm\n import_tasks: slurm.yml\n tags: login", "license_type": "no_license", "detected_licenses": [], "size_bytes": 61 }, { "path": "ansible/roles/login/tasks/slurm.yml", "content": "- name: Install slurm ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 443, "all_permissive": false }
ansible_role
stanier/peculiar-labyrinth
7a72b19fe6d3929954c591d307b1792a00edfb6b
0
ansible/roles/net
7,232
[ "no_license" ]
[ { "path": "ansible/roles/net/tasks/main.yml", "content": "- name: Deploy IPv4 router mechanism\n import_tasks: router.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 63 }, { "path": "ansible/roles/net/tasks/router.yml", "content": "- name: Allow IPv4 forwa...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1524, "all_permissive": false }