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
craftcube/ansible-swarm
78ecc99e4f1eeb15a722cc8cfc764a5456330762
0
roles/04-admin-configure
7,390
[ "no_license" ]
[ { "path": "roles/04-admin-configure/files/ssh_config", "content": "Host admin\n Hostname admin\n User sense\n\nHost node1\n Hostname node1\n User sense\n\nHost node2\n Hostname node2\n User sense\n\nHost node3\n Hostname node3\n User sense\n", "lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 821, "all_permissive": false }
ansible_role
craftcube/ansible-swarm
78ecc99e4f1eeb15a722cc8cfc764a5456330762
0
roles/05-admin-copy-keys
7,390
[ "no_license" ]
[ { "path": "roles/05-admin-copy-keys/tasks/main.yml", "content": "---\n- name: copy admin key to other hosts\n become: true\n become_user: sense\n copy:\n src: /tmp/id_rsa.pub\n dest: /tmp/id_rsa.pub\n mode: 0644\n- name: add admin key in authorized key\n authorized_key:\n user: sense\n st...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 295, "all_permissive": false }
ansible_role
craftcube/ansible-swarm
78ecc99e4f1eeb15a722cc8cfc764a5456330762
0
roles/06-ceph-deploy-setup
7,390
[ "no_license" ]
[ { "path": "roles/06-ceph-deploy-setup/tasks/main.yml", "content": "---\n#- name: add release key\n# apt_key:\n# url: https://download.ceph.com/keys/release.asc\n# state: present\n#- name: add Ceph packages to repository\n# apt_repository:\n# repo: deb https://download.ceph.com/debian {{ ansible_l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1100, "all_permissive": false }
ansible_role
craftcube/ansible-swarm
78ecc99e4f1eeb15a722cc8cfc764a5456330762
0
roles/07-deploy-ceph-cluster
7,390
[ "no_license" ]
[ { "path": "roles/07-deploy-ceph-cluster/tasks/main.yml", "content": "---\n- name: create cluster folder\n file:\n path: ~/ceph\n state: directory\n mode: 0755\n\n- name: install ceph on all nodes\n shell: ceph-deploy install \"{{ item }}\"\n with_items:\n - \"admin\"\n - \"node1\"\n - \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1003, "all_permissive": false }
ansible_role
craftcube/ansible-swarm
78ecc99e4f1eeb15a722cc8cfc764a5456330762
0
roles/08-rex-ray-installation
7,390
[ "no_license" ]
[ { "path": "roles/08-rex-ray-installation/tasks/main.yml", "content": "---\n- name: install rex-ray\n shell: curl -sSL https://rexray.io/install | sh -s -- stable\n args:\n warn: false\n tags: rexray", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 129, "all_permissive": false }
ansible_role
craftcube/ansible-swarm
78ecc99e4f1eeb15a722cc8cfc764a5456330762
0
roles/10-docker-installation
7,390
[ "no_license" ]
[ { "path": "roles/10-docker-installation/tasks/main.yml", "content": "#---\n#- name: install Docker dependencies\n# apt: name={{ item }} state=latest update_cache=yes\n# with_items:\n# - apt-transport-https\n# - ca-certificates\n# - curl\n# - software-properties-common\n# tags: docker\n#\n#- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2133, "all_permissive": false }
ansible_role
craftcube/ansible-swarm
78ecc99e4f1eeb15a722cc8cfc764a5456330762
0
roles/11-docker-swarm-init
7,390
[ "no_license" ]
[ { "path": "roles/11-docker-swarm-init/tasks/main.yml", "content": "---\n- name: register swarm status\n shell: docker node ls\n register: swarm_status\n ignore_errors: true\n tags: swarm\n\n- name: init Docker swarm\n shell: >\n docker swarm init\n --advertise-addr=192.168.2.21:2377\n# --adver...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 613, "all_permissive": false }
ansible_role
craftcube/ansible-swarm
78ecc99e4f1eeb15a722cc8cfc764a5456330762
0
roles/12-docker-swarm-add-manager
7,390
[ "no_license" ]
[ { "path": "roles/12-docker-swarm-add-manager/tasks/main.yml", "content": "---\n- name: add managers\n shell: \"docker swarm join --token {{ hostvars['node1']['manager_token']['stdout'] }} 192.168.2.21:2377\"\n# shell: \"docker swarm join --token {{ hostvars['ceph1']['manager_token']['stdout'] }} {{ hostva...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 644, "all_permissive": false }
ansible_role
craftcube/ansible-swarm
78ecc99e4f1eeb15a722cc8cfc764a5456330762
0
roles/21-docker-swarm-leave
7,390
[ "no_license" ]
[ { "path": "roles/21-docker-swarm-leave/tasks/main.yml", "content": "---\n- name: leave swarm\n shell: docker swarm leave -f\n ignore_errors: true\n\n- name: remove Docker\n yum: name=\"docker-ce\" state=latest update_cache=yes state=absent\n tags: docker\n\n- name: Remove repository from a specific repo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 316, "all_permissive": false }
ansible_role
enewbury/workstation
9538bd3c63cf4dd946f4f433bbae621aef8ba841
1
roles/workstation
7,390
[ "no_license" ]
[ { "path": "roles/workstation/tasks/gnome/main.yml", "content": "# - block:\n# - import_tasks: keybindings.yml\n# tags: keybindings\n\n- block:\n - import_tasks: peripherals.yml\n tags: peripherals\n\n- block:\n - import_tasks: gnome_shell.yml\n tags: gnome_shell\n\n", "license_type": "no_license...
{ "task_files": 18, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 21, "total_bytes": 16940, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/adobe_flash
7,390
[ "no_license" ]
[ { "path": "roles/adobe_flash/tasks/main.yml", "content": "---\n- include_tasks: \"distributions/{{ adobe_flash_os_distribution | lower }}.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 83 }, { "path": "roles/adobe_flash/tasks/distributions/fedora.yml", ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 728, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/albert
7,390
[ "no_license" ]
[ { "path": "roles/albert/defaults/main.yml", "content": "---\nalbert_os_distribution: \"{{ global_os_distribution | default(ansible_distribution) }}\"\nalbert_rpm_key_url: \"https://build.opensuse.org/projects/home:manuelschneid3r/public_key.gpg\"\nalbert_rpm_repository: \"https://download.opensuse.org/repos...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 940, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/base
7,390
[ "no_license" ]
[ { "path": "roles/base/tasks/distributions/fedora.yml", "content": "---\n# FIXME: dnf group installs are broken\n# https://bugzilla.redhat.com/show_bug.cgi?id=1471017\n#\n# - name: install development packages\n# dnf:\n# name: \"{{ item }}\"\n# state: present\n# with_items:\n# - \"@Developmen...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2242, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/calibre
7,390
[ "no_license" ]
[ { "path": "roles/calibre/tasks/main.yml", "content": "---\n- name: check if calibre is installed\n stat:\n path: /opt/calibre\n register: calibre_install_result\n\n- name: install calibre\n shell: sudo -v && wget -nv -O- https://download.calibre-ebook.com/linux-installer.py | sudo python -c \"import s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 419, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/chrome
7,390
[ "no_license" ]
[ { "path": "roles/chrome/defaults/main.yml", "content": "---\nchrome_os_distribution: \"{{ global_os_distribution | default(ansible_distribution) }}\"\nchrome_rpm_url: https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm\n", "license_type": "no_license", "detected_licenses": [],...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 360, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/chromium
7,390
[ "no_license" ]
[ { "path": "roles/chromium/defaults/main.yml", "content": "---\nchromium_os_distribution: \"{{ global_os_distribution | default(ansible_distribution) }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 }, { "path": "roles/chromium/tasks/main.yml", "content...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1509, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/codecs
7,390
[ "no_license" ]
[ { "path": "roles/codecs/tasks/main.yml", "content": "---\n- include_tasks: \"distributions/{{ codecs_os_distribution | lower }}.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "roles/codecs/tasks/distributions/fedora.yml", "content": "--...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 541, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/cryfs
7,390
[ "no_license" ]
[ { "path": "roles/cryfs/defaults/main.yml", "content": "---\ncryfs_os_distribution: \"{{ global_os_distribution | default(ansible_distribution) }}\"\ncryfs_version: \"0.9.7\"\ncryfs_git_commit: gd5f070dd\ncryfs_rpm_url: \"https://github.com/mikechau/cryfs-rpm/releases/download/v{{ cryfs_version }}/cryfs-{{ c...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 753, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/dbeaver
7,390
[ "no_license" ]
[ { "path": "roles/dbeaver/tasks/main.yml", "content": "---\n- include_tasks: \"distributions/{{ dbeaver_os_distribution | lower }}.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 }, { "path": "roles/dbeaver/defaults/main.yml", "content": "---\ndbeaver...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 317, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/docker
7,390
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- include_tasks: \"distributions/{{ docker_os_distribution | lower }}.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "roles/docker/tasks/distributions/fedora.yml", "content": "--...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1651, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/dotfiles
7,390
[ "no_license" ]
[ { "path": "roles/dotfiles/defaults/main.yml", "content": "---\n# dotfiles_user:\n\ndotfiles_home_path: \"/home/{{ dotfiles_user }}\"\ndotfiles_group: \"{{ dotfiles_user }}\"\n\ndotfiles_os_distribution: \"{{ global_os_distribution | default(ansible_distribution) }}\"\n", "license_type": "no_license", ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 7534, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/fonts
7,390
[ "no_license" ]
[ { "path": "roles/fonts/defaults/main.yml", "content": "---\nfonts_os_distribution: \"{{ global_os_distribution | default(ansible_distribution) }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 }, { "path": "roles/fonts/tasks/distributions/fedora.yml", "...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 475, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/gocryptfs
7,390
[ "no_license" ]
[ { "path": "roles/gocryptfs/defaults/main.yml", "content": "---\ngocryptfs_version: v1.4.2\ngocryptfs_binary_url: \"https://github.com/rfjakob/gocryptfs/releases/download/{{ gocryptfs_version }}/gocryptfs_{{ gocryptfs_version }}_linux-static_amd64.tar.gz\"\ngocryptfs_key_url: \"https://github.com/rfjakob/goc...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3648, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/gsettings
7,390
[ "no_license" ]
[ { "path": "roles/gsettings/tasks/main.yml", "content": "---\n- name: update gnome-screenshot auto save directory\n command: \"gsettings set org.gnome.gnome-screenshot auto-save-directory '{{ gsettings_gnome_screenshot_auto_save_dir }}'\"\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 346, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/heroku
7,390
[ "no_license" ]
[ { "path": "roles/heroku/tasks/main.yml", "content": "---\n- name: check if heroku is installed\n stat:\n path: /usr/local/bin/heroku\n register: heroku_install_result\n\n- name: download heroku cli\n get_url:\n url: https://cli-assets.heroku.com/heroku-cli/channels/stable/heroku-cli-linux-x64.tar.g...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1152, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/hexchat
7,390
[ "no_license" ]
[ { "path": "roles/hexchat/tasks/distributions/fedora.yml", "content": "---\n- name: install hexchat\n dnf:\n name: hexchat\n state: latest\n become: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 86 }, { "path": "roles/hexchat/defaults/main.yml", ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1530, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/intel.gpu
7,390
[ "no_license" ]
[ { "path": "roles/intel.gpu/tasks/distributions/fedora.yml", "content": "---\n- name: install vaapi driver\n dnf:\n name: libva-intel-driver\n state: latest\n become: true\n\n- name: install vdpau driver\n dnf:\n name: libvdpau-va-gl\n state: latest\n become: true\n\n- name: install vaapi uti...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 552, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/kernel.devel
7,390
[ "no_license" ]
[ { "path": "roles/kernel.devel/tasks/distributions/fedora.yml", "content": "---\n- name: check vars\n fail:\n msg: \"variable '{{ item }}' is not defined\"\n when: item not in vars\n with_items:\n - kernel_devel_user\n\n- name: install packages\n dnf:\n name: \"{{ item }}\"\n state: latest\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 941, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/mpv
7,390
[ "no_license" ]
[ { "path": "roles/mpv/tasks/distributions/fedora.yml", "content": "---\n- name: install mpv\n dnf:\n name: mpv\n state: latest\n become: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "roles/mpv/defaults/main.yml", "content": "---...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 241, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/ngrok
7,390
[ "no_license" ]
[ { "path": "roles/ngrok/tasks/main.yml", "content": "---\n- name: download zip\n get_url:\n url: \"{{ ngrok_url }}\"\n dest: \"{{ ngrok_src_path }}\"\n register: ngrok_download_result\n\n- name: extract zip\n unarchive:\n src: \"{{ ngrok_download_result.dest }}\"\n dest: \"{{ ngrok_install_pat...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 632, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/nuvola_player
7,390
[ "no_license" ]
[ { "path": "roles/nuvola_player/tasks/distributions/fedora.yml", "content": "---\n- name: check if nuvola repo exists\n stat:\n path: \"/etc/yum.repos.d/tiliado.eu_nuvolaplayer_repository_rpm_fc{{ ansible_distribution_major_version }}_x86_64_stable.repo\"\n become: true\n register: nuvola_player_repo_r...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1493, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/nvm.nodejs
7,390
[ "no_license" ]
[ { "path": "roles/nvm.nodejs/tasks/main.yml", "content": "---\n- include_tasks: \"distributions/{{ nvm_nodejs_os_distribution | lower }}.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 }, { "path": "roles/nvm.nodejs/defaults/main.yml", "content": "---...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1292, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/pidgin
7,390
[ "no_license" ]
[ { "path": "roles/pidgin/tasks/distributions/fedora.yml", "content": "---\n- name: install pidgin\n dnf:\n name: pidgin\n state: latest\n become: true\n\n- name: add purple-facebook repo\n get_url:\n url: http://download.opensuse.org/repositories/home:/jgeboski/Fedora_26/home:jgeboski.repo\n d...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 603, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/pip.packages
7,390
[ "no_license" ]
[ { "path": "roles/pip.packages/tasks/main.yml", "content": "---\n- name: install packages\n pip:\n name: \"{{ item }}\"\n state: latest\n become: true\n with_items:\n - setuptools\n - virtualenv\n\n- name: install user packages\n pip:\n name: \"{{ item }}\"\n state: latest\n extra_ar...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 430, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/r8169.aspm
7,390
[ "no_license" ]
[ { "path": "roles/r8169.aspm/defaults/main.yml", "content": "---\n# r8169_aspm_user:\nr8169_aspm_home_path: \"/home/{{ r8169_aspm_user }}\"\nr8169_aspm_group: \"{{ r8169_aspm_user }}\"\n\nr8169_aspm_git_repo: https://github.com/KastB/r8169\nr8169_aspm_git_version: master\nr8169_aspm_src_path: \"{{ r8169_aspm...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1962, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/rpmfusion
7,390
[ "no_license" ]
[ { "path": "roles/rpmfusion/tasks/main.yml", "content": "---\n- name: add rpmfusion repos\n dnf:\n name: \"{{ item }}\"\n state: present\n with_items:\n - \"http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ ansible_distribution_major_version }}.noarch.rpm\"\n - \"https://down...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 369, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/selinux.config
7,390
[ "no_license" ]
[ { "path": "roles/selinux.config/tasks/main.yml", "content": "---\n- name: check daemons_enable_cluster_mode\n command: /usr/sbin/getsebool daemons_enable_cluster_mode\n become: true\n register: selinux_config_daemon_enable_cluster_mode_result\n changed_when: false\n\n- name: enable daemons_enable_cluste...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 401, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/selinux.policies
7,390
[ "no_license" ]
[ { "path": "roles/selinux.policies/tasks/distributions/fedora.yml", "content": "---\n- name: install selinux policies packages\n dnf:\n name: \"{{ item }}\"\n state: latest\n with_items:\n - checkpolicy\n - selinux-policy-devel\n become: true\n", "license_type": "no_license", "detected...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 357, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/sublime_text
7,390
[ "no_license" ]
[ { "path": "roles/sublime_text/tasks/distributions/fedora.yml", "content": "---\n- name: add sublime text rpm key\n rpm_key:\n key: \"{{ sublime_text_rpm_key_url }}\"\n state: present\n become: true\n\n- name: check if sublime text repo exists\n stat:\n path: /etc/yum.repos.d/sublime-text.repo\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 966, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/tlp
7,390
[ "no_license" ]
[ { "path": "roles/tlp/tasks/distributions/fedora.yml", "content": "---\n- name: add selinux policy\n template:\n src: \"{{ tlp_os_distribution }}/selinux.policies/my-tlp.te.j2\"\n dest: /etc/selinux.policies/my-tlp.te\n mode: u=rw,g=r,o=r\n become: true\n register: tlp_selinux_policy_template_res...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 7472, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/trackpoint
7,390
[ "no_license" ]
[ { "path": "roles/trackpoint/tasks/main.yml", "content": "---\n- name: find trackpoint device\n shell: >\n find /sys/devices/platform/i8042 -name name | xargs grep -Fl TrackPoint | sed 's/\\/input\\/input[0-9]*\\/name$//'\n changed_when: false\n register: trackpoint_find_device\n\n- name: set trackpoin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 598, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/ulauncher
7,390
[ "no_license" ]
[ { "path": "roles/ulauncher/tasks/main.yml", "content": "---\n- include_tasks: \"distributions/{{ ulauncher_os_distribution | lower }}.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 }, { "path": "roles/ulauncher/tasks/distributions/fedora.yml", "cont...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 475, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/vagrant
7,390
[ "no_license" ]
[ { "path": "roles/vagrant/defaults/main.yml", "content": "---\nvagrant_os_distribution: \"{{ global_os_distribution | default(ansible_distribution) }}\"\nvagrant_version: \"1.9.7\"\nvagrant_arch: \"{{ ansible_machine }}\"\nvagrant_rpm_url: \"https://releases.hashicorp.com/vagrant/{{ vagrant_version }}/vagran...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 470, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/virtualbox
7,390
[ "no_license" ]
[ { "path": "roles/virtualbox/tasks/main.yml", "content": "---\n- include_tasks: \"distributions/{{ virtualbox_os_distribution | lower }}.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 }, { "path": "roles/virtualbox/tasks/distributions/fedora.yml", "c...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4295, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/vlc
7,390
[ "no_license" ]
[ { "path": "roles/vlc/tasks/main.yml", "content": "---\n- include_tasks: \"distributions/{{ vlc_os_distribution | lower }}.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 75 }, { "path": "roles/vlc/tasks/distributions/fedora.yml", "content": "---\n- name...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 241, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/xhost
7,390
[ "no_license" ]
[ { "path": "roles/xhost/defaults/main.yml", "content": "---\n# xhost_user:\n\nxhost_group: \"{{ xhost_user }}\"\nxhost_autostart_path: \"/home/{{ xhost_user }}/.config/autostart\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 116 }, { "path": "roles/xhost/templa...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 686, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/xmind
7,390
[ "no_license" ]
[ { "path": "roles/xmind/defaults/main.yml", "content": "---\nxmind_os_distribution: \"{{ global_os_distribution | default(ansible_distribution) }}\"\nxmind_version: \"8.6\"\nxmind_subversion: 1\nxmind_rpm_codename: fc27\nxmind_rpm_arch: \"{{ ansible_machine }}\"\nxmind_rpm_url: \"https://github.com/mikechau/...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 581, "all_permissive": false }
ansible_role
mikechau/workstation-playbooks
91c61f6f659d8d74a36930ed4414c44b84bd8c2c
1
roles/z
7,390
[ "no_license" ]
[ { "path": "roles/z/defaults/main.yml", "content": "---\n# z_user:\n\nz_home_path: \"/home/{{ z_user }}\"\nz_group: \"{{ z_user }}\"\n\nz_git_repo: https://github.com/rupa/z.git\nz_git_version: master\nz_src_path: \"{{ z_home_path }}/code/src/z\"\n", "license_type": "no_license", "detected_licenses":...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 651, "all_permissive": false }
ansible_role
eangus/vlab
ff578dfda55bf097aa92cf610700125a5c2e95d3
0
EX374K/deployment/roles/base
7,390
[ "no_license" ]
[ { "path": "EX374K/deployment/roles/base/vars/main.yml", "content": "---\nbase_domain: \"lab.local\"\n\nbase_yum_green_list:\n - git\n - aide\n\nbase_yum_red_list: \n - ntp\n\nbase_yum_base_list:\n - chrony\n - bash-completion\n - vim\n - wget\n - curl\n - policycoreutils-python-utils\n - yara\n -...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1624, "all_permissive": false }
ansible_role
eangus/vlab
ff578dfda55bf097aa92cf610700125a5c2e95d3
0
EX374K/deployment/roles/epel
7,390
[ "no_license" ]
[ { "path": "EX374K/deployment/roles/epel/tasks/main.yml", "content": "---\n# tasks file for epel\n- name: Enable EPEL.\n ansible.builtin.dnf:\n name: 'https://dl.fedoraproject.org/pub/epel/epel-release-latest-{{ ansible_facts.distribution_major_version }}.noarch.rpm'\n disable_gpg_check: true\n sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 245, "all_permissive": false }
ansible_role
eangus/vlab
ff578dfda55bf097aa92cf610700125a5c2e95d3
0
EX374K/deployment/roles/oscap-scan
7,390
[ "no_license" ]
[ { "path": "EX374K/deployment/roles/oscap-scan/defaults/main.yml", "content": "---\n# defaults file for oscap-scan\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "EX374K/deployment/roles/oscap-scan/tests/test.yml", "content": "---\n- hosts: lo...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2374, "all_permissive": false }
ansible_role
eangus/vlab
ff578dfda55bf097aa92cf610700125a5c2e95d3
0
EX374K/deployment/roles/pulp_install
7,390
[ "no_license" ]
[ { "path": "EX374K/deployment/roles/pulp_install/templates/settings.py.j2", "content": "CONTENT_HOST = \"{{ service_dns_name }}\"\nCONTENT_ORIGIN = \"http://{{ service_dns_name }}\"\nSECRET_KEY = \"{{ pulp_secret }}\"\n\nDATABASES = {\n \"default\": {\n \"ENGINE\": \"django.db.backends.postgresql_p...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 21, "total_bytes": 41807, "all_permissive": false }
ansible_role
PurnenduBhatt/Anime-Recommender-System-ML-OPS-
27572ca24208b32507b298b575100021be0f2342
0
roles/elasticsearch
7,390
[ "no_license" ]
[ { "path": "roles/elasticsearch/tasks/main.yml", "content": "---\n- name: Ensure Elasticsearch is running\n docker_container:\n name: elasticsearch\n image: docker.elastic.co/elasticsearch/elasticsearch:7.17.0\n state: started\n ports:\n - \"9200:9200\"\n - \"9300:9300\"\n environme...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 581, "all_permissive": false }
ansible_role
PurnenduBhatt/Anime-Recommender-System-ML-OPS-
27572ca24208b32507b298b575100021be0f2342
0
roles/kibana
7,390
[ "no_license" ]
[ { "path": "roles/kibana/tasks/main.yml", "content": "---\n- name: Ensure Kibana is running\n docker_container:\n name: kibana\n image: docker.elastic.co/kibana/kibana:7.17.0\n state: started\n ports:\n - \"5601:5601\"\n environment:\n - ELASTICSEARCH_HOSTS=http://elasticsearch:9200...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 318, "all_permissive": false }
ansible_role
PurnenduBhatt/Anime-Recommender-System-ML-OPS-
27572ca24208b32507b298b575100021be0f2342
0
roles/logstash
7,390
[ "no_license" ]
[ { "path": "roles/logstash/tasks/main.yml", "content": "---\n- name: Ensure Logstash is running\n docker_container:\n name: logstash\n image: docker.elastic.co/logstash/logstash:7.17.0\n state: started\n ports:\n - \"5044:5044\"\n - \"9600:9600\"\n environment:\n LS_JAVA_OPTS: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 495, "all_permissive": false }
ansible_role
PurnenduBhatt/Anime-Recommender-System-ML-OPS-
27572ca24208b32507b298b575100021be0f2342
0
roles/vault
7,390
[ "no_license" ]
[ { "path": "roles/vault/tasks/main.yml", "content": "---\n- name: Ensure Vault is running\n docker_container:\n name: vault\n image: vault:1.12.1\n state: started\n ports:\n - \"8200:8200\"\n env:\n VAULT_DEV_ROOT_TOKEN_ID: \"{{ vault_token }}\"\n VAULT_DEV_LISTEN_ADDRESS: \"0....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 529, "all_permissive": false }
ansible_role
jpcarmona/awx
f207c4668c45a6b369b8e1fc939cf0343c26203b
0
ansible/roles/docker
7,390
[ "permissive" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "- name: Login into registry\n docker_login:\n registry: \"{{ docker_registry_url }}\"\n username: \"{{ user }}\"\n password: \"{{ <PASSWORD> }}\"\n reauthorize: yes\n\n- name: Create container DNS master\n docker_container:\n name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 603, "all_permissive": true }
ansible_role
jalcobra/Parcial-3
9809bf6a53177ce800befcd2da6913d49b47c02f
0
Projects/Parcial_3/ansible001/roles/webserver
7,390
[ "no_license" ]
[ { "path": "Projects/Parcial_3/ansible001/roles/webserver/tasks/main.yml", "content": "---\n- name: instalando apache\n apt:\n name: apache2\n state: present\n\n- name: Iniciando servicios de Apache2\n service:\n name: apache2\n state: started\n enabled: yes\n", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 179, "all_permissive": false }
ansible_role
softwarefactory-project/scrum-tools
ca84bd8b9de678393f896369007f507be57a4fcf
0
integrations_node/roles/firehooks
7,392
[ "no_license" ]
[ { "path": "integrations_node/roles/firehooks/tasks/setup.yml", "content": "---\n- name: Configure firehooks\n template:\n src: templates/default.yaml.j2\n dest: /etc/firehooks/default.yaml\n owner: firehooks\n\n- name: Start firehooks service\n service:\n name: firehooks.service\n state: st...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1462, "all_permissive": false }
ansible_role
softwarefactory-project/scrum-tools
ca84bd8b9de678393f896369007f507be57a4fcf
0
integrations_node/roles/github2taiga
7,392
[ "no_license" ]
[ { "path": "integrations_node/roles/github2taiga/defaults/main.yml", "content": "---\nrole_actions:\n - install\n - setup\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "integrations_node/roles/github2taiga/templates/github2taiga.conf.j2", "...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1053, "all_permissive": false }
ansible_role
charkeeberekeke/lfs
ca0bb3b9c1c368272d98a8b82d0b47c8341728f9
1
lfs/roles/base_packages
7,392
[ "no_license" ]
[ { "path": "lfs/roles/base_packages/tasks/main.yml", "content": " - name: Install base required packages\n yum: name={{ item }} state=present\n with_items:\n - vim\n - wget\n - screen\n - sudo\n\n - name: Install Development tools\n yum: name=\"@Development tools\" state=present...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 242, "all_permissive": false }
ansible_role
charkeeberekeke/lfs
ca0bb3b9c1c368272d98a8b82d0b47c8341728f9
1
lfs/roles/base_user
7,392
[ "no_license" ]
[ { "path": "lfs/roles/base_user/tasks/main.yml", "content": "- name: Add lfsuser group\n group: name=lfsuser state=present\n\n- name: Add lfsuser user\n user: \n name: lfsuser\n group: lfsuser\n shell: /bin/bash\n createhome: yes\n skeleton: /dev/null\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 199, "all_permissive": false }
ansible_role
charkeeberekeke/lfs
ca0bb3b9c1c368272d98a8b82d0b47c8341728f9
1
lfs/roles/lfs_disk
7,392
[ "no_license" ]
[ { "path": "lfs/roles/lfs_disk/tasks/main.yml", "content": "# Create a logical volume off a 12Gb /dev/sdb disk\n#\n- name: Create a volume group from /dev/sdb\n lvg:\n vg: VolLFS\n pvs: /dev/sdb\n\n- name: Create a logical volume from VolLFS\n lvol:\n vg: VolLFS\n lv: lv_lfs\n size: 8g\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 545, "all_permissive": false }
ansible_role
charkeeberekeke/lfs
ca0bb3b9c1c368272d98a8b82d0b47c8341728f9
1
lfs/roles/lfs_populate
7,392
[ "no_license" ]
[ { "path": "lfs/roles/lfs_populate/tasks/main.yml", "content": "# Populate /mnt/lfs with necessary directories and files\n\n- name: Create folders\n file:\n path: /mnt/lfs/{{ item }}\n state: directory\n mode: 0755\n with_items:\n - usr\n - sources\n - tools\n\n- name: Chmod /mnt/lfs/sour...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2931, "all_permissive": false }
ansible_role
charkeeberekeke/lfs
ca0bb3b9c1c368272d98a8b82d0b47c8341728f9
1
lfs/roles/lfs_user
7,392
[ "no_license" ]
[ { "path": "lfs/roles/lfs_user/tasks/main.yml", "content": "- name: Add lfs group\n group: name=lfs state=present\n\n- name: Add lfs user\n user: \n name: lfs\n group: lfs\n shell: /bin/bash\n createhome: yes\n skeleton: /dev/null\n password: <PASSWORD>'\n\n- name: Chown tools and sources...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 921, "all_permissive": false }
ansible_role
charkeeberekeke/lfs
ca0bb3b9c1c368272d98a8b82d0b47c8341728f9
1
lfs/roles/toolchain_pass_1
7,392
[ "no_license" ]
[ { "path": "lfs/roles/toolchain_pass_1/tasks/binutils.yml", "content": "- name: Unpack {{ pkg }}\n unarchive:\n src: \"{{ lfs_src }}/{{ pkg }}\"\n dest: \"{{ lfs_src }}\"\n copy: no\n\n- name: Create build directory\n file:\n path: \"{{ lfs_src }}/{{ pkg_dir }}/build\"\n state: directory\n\n...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 4681, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/apt_maintainance
7,392
[ "no_license" ]
[ { "path": "roles/apt_maintainance/README.md", "content": "apt\\_maintainance\n=================\n\nPerforms maintainance tasks on packages installed and managed by APT,\nincluding the removal of any out-of-date and unused packages.\n\nBefore any changes are made, a list of affected packages is displayed\nan...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4263, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/base
7,392
[ "no_license" ]
[ { "path": "roles/base/README.md", "content": "base\n====\n\nInstalls and configures bits-and-pieces for a base Ubuntu environment.\n\nSee _defaults/main.yml_ for all role variables. For example usage, see\nthe \"playbook-provision.yml\" playbook at the project root.\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 6481, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/chrome
7,392
[ "no_license" ]
[ { "path": "roles/chrome/tasks/main.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name: 'Ensure the Google Chrome repository is ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 832, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/composer
7,392
[ "no_license" ]
[ { "path": "roles/composer/tasks/main.yml", "content": "# Installs and configures Composer.\n#\n# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2862, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/deploy_website
7,392
[ "no_license" ]
[ { "path": "roles/deploy_website/tasks/main.yml", "content": "# Performs a Capistrano-style website deployment.\n#\n# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" ...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 18435, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/development
7,392
[ "no_license" ]
[ { "path": "roles/development/tasks/main.yml", "content": "# Installs and configures development environment bits-and-pieces.\n#\n# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 18305, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/docker
7,392
[ "no_license" ]
[ { "path": "roles/docker/handlers/main.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name: 'Notify user about group membership u...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 3517, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/golang
7,392
[ "no_license" ]
[ { "path": "roles/golang/tasks/main.yml", "content": "# Installs Go using a binary archive.\n#\n# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3596, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/golang_package
7,392
[ "no_license" ]
[ { "path": "roles/golang_package/defaults/main.yml", "content": "# \"golang_package\" Ansible role variables.\n#\n# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" fi...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2258, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/home_server
7,392
[ "no_license" ]
[ { "path": "roles/home_server/files/docker/compose.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\nservices:\n cgit:\n build:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2093, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/imagemagick
7,392
[ "no_license" ]
[ { "path": "roles/imagemagick/defaults/main.yml", "content": "# \"imagemagick\" Ansible role variables.\n#\n# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1680, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/lego
7,392
[ "no_license" ]
[ { "path": "roles/lego/tasks/main.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name: 'Ensure download cache directory exists'\n...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 5363, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/livepatch
7,392
[ "no_license" ]
[ { "path": "roles/livepatch/README.md", "content": "livepatch\n=========\n\nInstalls and enables [Ubuntu Advantage][] and Ubuntu Livepatch.\n\nSee _defaults/main.yml_ for all role variables. For example usage, see\nthe \"playbook-provision.yml\" playbook at the project root.\n\n [Ubuntu Advantage]: <https:/...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1918, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/monitoring
7,392
[ "no_license" ]
[ { "path": "roles/monitoring/handlers/main.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name: 'Restart Fail2ban'\n ansible.bui...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 16, "total_bytes": 16563, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/nodejs
7,392
[ "no_license" ]
[ { "path": "roles/nodejs/defaults/main.yml", "content": "# \"nodejs\" Ansible role variables.\n#\n# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n# A ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3122, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/pipx
7,392
[ "no_license" ]
[ { "path": "roles/pipx/tasks/main.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n# Updating the non-system Python installation to a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2739, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/polypane
7,392
[ "no_license" ]
[ { "path": "roles/polypane/tasks/main.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name: 'Ensure download cache directory exist...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1835, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/python
7,392
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name: 'Ensure download cache directory exists'...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4057, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/rust
7,392
[ "no_license" ]
[ { "path": "roles/rust/defaults/main.yml", "content": "# \"rust\" Ansible role variables.\n#\n# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n# A stri...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2723, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/syncthing
7,392
[ "no_license" ]
[ { "path": "roles/syncthing/README.md", "content": "syncthing\n=========\n\nThis role installs Syncthing.\n\nSee _defaults/main.yml_ for all role variables. For example usage, see\nthe \"playbook-provision.yml\" playbook at the project root.\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1803, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/tailscale
7,392
[ "no_license" ]
[ { "path": "roles/tailscale/handlers/main.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name: 'Notify user to check host Tailsca...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2415, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/tarsnap
7,392
[ "no_license" ]
[ { "path": "roles/tarsnap/tasks/main.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name: 'Ensure the Tarsnap repository is prese...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3004, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/virtualbox
7,392
[ "no_license" ]
[ { "path": "roles/virtualbox/tasks/main.yml", "content": "# Installs VirtualBox.\n#\n# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name: 'Ensure t...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1860, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/vuescan
7,392
[ "no_license" ]
[ { "path": "roles/vuescan/tasks/main.yml", "content": "# This file was written by <NAME>, <<EMAIL>>. This is\n# free and unencumbered software released into the public domain. For\n# more information, please refer to the accompanying \"UNLICENCE\" file.\n\n---\n- name: 'Ensure download cache directory exists...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1692, "all_permissive": false }
ansible_role
damiendart/setup
6c8763378ef45870a4154075f2b6f75bc0d3249e
3
roles/webserver
7,392
[ "no_license" ]
[ { "path": "roles/webserver/templates/php-fpm-pool.conf.j2", "content": "; {{ ansible_managed }}\n;\n; This file was written by <NAME>, <<EMAIL>>. This is\n; free and unencumbered software released into the public domain. For\n; more information, please refer to the accompanying \"UNLICENCE\" file.\n\npm = d...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 12, "total_bytes": 24780, "all_permissive": false }
ansible_role
yehohanan7/trex
caf99fb4ad30e8a258ec632ae345282d79328b57
0
etc/ansible/roles/common
7,392
[ "no_license" ]
[ { "path": "etc/ansible/roles/common/tasks/main.yml", "content": "---\n- name: Proxy settings\n copy: src=01proxy dest=/etc/apt/apt.conf.d/01proxy\n\n- name: Update apt-get\n apt: update_cache=yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 128 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 128, "all_permissive": false }
ansible_role
yehohanan7/trex
caf99fb4ad30e8a258ec632ae345282d79328b57
0
etc/ansible/roles/elixir
7,392
[ "no_license" ]
[ { "path": "etc/ansible/roles/elixir/tasks/main.yml", "content": "---\n- name: Add erlang repositories\n apt_repository: repo='deb http://packages.erlang-solutions.com/ubuntu trusty contrib' state=present\n apt_repository: repo='deb http://packages.erlang-solutions.com/ubuntu saucy contrib' state=present\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 584, "all_permissive": false }
ansible_role
VinYuvian/ansible-go
568be36d7701b6fa416409fe92bfb65338054417
0
roles/db
7,392
[ "no_license" ]
[ { "path": "roles/db/tasks/main.yml", "content": "---\n# tasks file for db\n- name : Update Repository\n apt :\n update-cache: yes\n \n- name : Install packages required\n apt : \n name : \"{{ packages }}\"\n state : present\n \n\n- name: Update mysql root password for all root accounts\n mysql_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 858, "all_permissive": false }
ansible_role
VinYuvian/ansible-go
568be36d7701b6fa416409fe92bfb65338054417
0
roles/nginx
7,392
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name : update repos\n apt:\n update_repo : yes\n\n- name : Install Nginx web server\n apt :\n name : nginx\n state : present\n update_cache : yes\n\n- name : Copy Nginx config file\n template :\n src : nginx.conf.j2\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1193, "all_permissive": false }
ansible_role
VinYuvian/ansible-go
568be36d7701b6fa416409fe92bfb65338054417
0
roles/web
7,392
[ "no_license" ]
[ { "path": "roles/web/tasks/grpc.yml", "content": "---\n- name : Install protoc compiler\n command : snap install protobuf --classic\n\n- name : Create directories for packages\n file :\n state : directory\n mode : 0644\n owner : root\n group : root\n path : /root/go\n\n- set_fact : \n go...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1321, "all_permissive": false }
ansible_role
skale-5/meetup-24022016-ansible
acb168bdc5a78f6dac0709e4f492e21230ba1211
0
roles/drone
7,392
[ "no_license" ]
[ { "path": "roles/drone/tasks/main.yml", "content": "---\n- name: install drone dependencies\n package: \"name={{item}} state=present update_cache=yes\"\n with_items:\n - docker.io\n - python-pip\n\n- name: install docker ansible dependencies\n pip: \"name={{item}} state=present\"\n with_items:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 4863, "all_permissive": false }
ansible_role
skale-5/meetup-24022016-ansible
acb168bdc5a78f6dac0709e4f492e21230ba1211
0
roles/gogs
7,392
[ "no_license" ]
[ { "path": "roles/gogs/tasks/main.yml", "content": "---\n- name: install gogs dependencies\n package: \"name={{item}} state=present update_cache=yes\"\n with_items:\n - git\n - unzip\n\n- name: create git user\n user: name=git comment=\"Git User\"\n\n- name: get gogs binary\n unarchive: src={{gogs_...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 887, "all_permissive": false }
ansible_role
skale-5/meetup-24022016-ansible
acb168bdc5a78f6dac0709e4f492e21230ba1211
0
roles/lego
7,392
[ "no_license" ]
[ { "path": "roles/lego/tasks/main.yml", "content": "---\n- name: download lego dependencies\n package: name={{item}} state=present\n with_items:\n - tar\n - python-pip\n\n- name: download python dependencies\n pip: name=pexpect state=present\n\n- name: download lego\n get_url: url={{lego_url}} dest...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 836, "all_permissive": false }
ansible_role
nareshy90/GOSPAapp
3f0f542a1a42279e36ee51d1cf2687f3762287dc
0
Ansible/roles/gospa
7,392
[ "no_license" ]
[ { "path": "Ansible/roles/gospa/vars/main.yaml", "content": "s3bucket: \"go-spa-project-source-code\"\r\ns3object: \"TechChallengeApp_v.0.9.0_linux64.zip\"\r\npassword: \"<PASSWORD>\"\r\nDbHost: \"go-spa-db.cnlwcofpbum9.ap-southeast-2.rds.amazonaws.com\"", "license_type": "no_license", "detected_lice...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1115, "all_permissive": false }