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
naresh-nk/ansible-wp
02c4ea070cd394816ae2d6faba4b682111a2b179
0
roles/wordpress
7,698
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "- name: Download and install wp\n get_url:\n url=https://wordpress.org/latest.tar.gz \n dest=/tmp/wp.tar.gz\n force=yes\n\n- name: Extract wp files\n unarchive:\n src=/tmp/wp.tar.gz\n dest=/tmp/\n copy=no\n\n- name: Remove existing ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3480, "all_permissive": false }
ansible_role
danagarcia/orangepi-k3s-cluster
fbcd4627e62b270bba94e0c7cc4e7bf2f3fddb7f
3
src/roles/common
7,698
[ "no_license" ]
[ { "path": "src/roles/common/tasks/main.yml", "content": "---\n\n - name: Install dependencies\n ansible.builtin.apt:\n name:\n - ca-certificates\n - curl\n - gnupg\n - lsb-release\n state: present\n \n - name: Check if keyring directory exists\n ansible.builtin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2151, "all_permissive": false }
ansible_role
danagarcia/orangepi-k3s-cluster
fbcd4627e62b270bba94e0c7cc4e7bf2f3fddb7f
3
src/roles/k3s-master
7,698
[ "no_license" ]
[ { "path": "src/roles/k3s-master/tasks/main.yml", "content": "---\n\n- name: Add nodes to host file\n ansible.builtin.lineinfile:\n path: /etc/hosts\n line: \"{{ item.ip }} {{ item.name }}\"\n create: true\n loop: \"{{ nodes }}\"\n\n- name: Install K3S\n ansible.builtin.shell:\n cmd: /tmp/inst...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 415, "all_permissive": false }
ansible_role
danagarcia/orangepi-k3s-cluster
fbcd4627e62b270bba94e0c7cc4e7bf2f3fddb7f
3
src/roles/k3s-node
7,698
[ "no_license" ]
[ { "path": "src/roles/k3s-node/tasks/main.yml", "content": "---\n\n- name: Add master to host file\n ansible.builtin.lineinfile:\n path: /etc/hosts\n line: \"{{ master_ip }} opi-k3s-master\"\n create: true\n\n- name: Install k3s agent\n ansible.builtin.shell:\n cmd: \"K3S_URL=https://opi-k3s-ma...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 347, "all_permissive": false }
ansible_role
danagarcia/orangepi-k3s-cluster
fbcd4627e62b270bba94e0c7cc4e7bf2f3fddb7f
3
src/roles/update-host
7,698
[ "no_license" ]
[ { "path": "src/roles/update-host/handlers/main.yml", "content": "---\n\n# Credit\n- name: Reboot Host\n ansible.builtin.reboot:\n msg: \"Reboot initiated by Ansible\"\n connection_timeout: 5\n reboot_timeout: 600\n pre_reboot_delay: 0\n post_reboot_delay: 30\n test_command: whoami\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 334, "all_permissive": false }
ansible_role
zsaidov1988/devops_ansible
d9eb23670d155cf700cab46c199b26f3e33d7bf8
0
roles/install_tools
7,698
[ "no_license" ]
[ { "path": "roles/install_tools/tasks/install_tools_yum.yml", "content": "---\n- name: Install {{ item }} tool\n yum:\n name: \"{{ item }}\"\n state: present\n update_cache: yes\n\n- name: Create config file for {{ item }}\n file:\n name: \"{{ item }}.conf\"\n state: touch", "license_typ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 278, "all_permissive": false }
ansible_role
zsaidov1988/devops_ansible
d9eb23670d155cf700cab46c199b26f3e33d7bf8
0
roles/set_netplan
7,698
[ "no_license" ]
[ { "path": "roles/set_netplan/tasks/main.yml", "content": "---\n- name: Create netplan config files\n template:\n src: 40-additional.yaml.j2\n dest: /etc/netplan/40-additional.yaml\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
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/activemq
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/activemq/tasks/main.yml", "content": "---\n- name: Install required modules\n become: true\n tags: activemq\n package:\n name: default-jdk\n state: present\n\n- name: \"Download activemq {{ activemq_version }} ...\"\n tags: activemq\n register: task_result\n retries: \"{...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2519, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/ansible
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/ansible/tasks/main.yml", "content": "---\n\n- name: Install required package\n tags: ansible\n become: true\n ansible.builtin.package:\n name: python3-pip\n state: present\n\n- name: Update to latest pip3\n tags: ansible\n become: true\n ansible.builtin.pip:\n name: p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 504, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/ansible-lint
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/ansible-lint/tasks/main.yml", "content": "---\n\n- name: Upgrade all packages (Might take a few minutes)\n tags: ansible-lint\n become: yes\n apt:\n update_cache: yes\n\n- name: Install default packages\n tags: ansible-lint\n become: yes\n package:\n name: \"ansible-lint...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 248, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/apache2
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/apache2/tasks/main.yml", "content": "---\n\n- name: Install apache\n become: yes\n package:\n name: apache2\n state: installed\n\n- name: Enable required modules\n become: yes\n apache2_module:\n name: \"{{ item }}\"\n state: present\n with_items:\n - ssl\n - prox...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 259, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/atom
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/atom/tasks/main.yml", "content": "---\n\n- name: Add apt repository for atom\n become: yes\n tags: atom\n apt_repository:\n repo: 'ppa:webupd8team/atom'\n\n- name: Update apt packages\n become: yes\n tags: atom\n apt:\n update_cache: yes\n\n- name: Install atom\n become...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 298, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/autologin
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/autologin/tasks/main.yml", "content": "---\n- name: Ensure directory exists\n tags: autologin\n become: true\n file:\n dest: /etc/lightdm/lightdm.conf.d\n state: directory\n\n- name: Enable auto login for user {{ USERNAME }}\n tags: autologin\n become: true\n copy:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 378, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/azure-cli
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/azure-cli/tasks/main.yml", "content": "---\n\n- name: Install python/pip\n tags: azurecli\n become: true\n package:\n name: \"{{ item }}\"\n state: present\n loop:\n - python3\n - python3-pip\n\n- name: Install azure cli\n tags: azurecli\n pip:\n name: azure-cli...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 430, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/chromedriver
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/chromedriver/tasks/main.yml", "content": "---\n\n- name: \"Downloading chromedriver {{ chromedriver_version }} ...\"\n tags: chromedriver\n register: task_result\n retries: \"{{ RETRIES }}\"\n delay: \"{{ DELAY }}\"\n get_url:\n url: \"{{ chromedriver_url }}\"\n dest: \"{...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1375, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/common
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/common/tasks/main.yml", "content": "---\n\n- name: Set timezone\n become: true\n tags: common\n timezone:\n name: Europe/Amsterdam\n\n- name: Create root directories\n become: true\n tags: common\n file:\n path: \"{{ item }}\"\n state: directory\n mode: 0755\n wit...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1002, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/default-packages
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/default-packages/tasks/main.yml", "content": "---\n\n- name: Upgrade all packages (Might take a few minutes)\n tags: default-packages\n become: true\n apt:\n update_cache: yes\n\n- name: Install default packages\n tags: default-packages\n become: true\n package:\n name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 438, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/docker
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/docker/defaults/main.yml", "content": "---\n\nhomedir: \"{{ HOMEDIR }}\"\nusername: \"{{ USERNAME }}\"\ngroupname: \"{{ GROUPNAME }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 86 }, { "path": "Ansible/roles/docker/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1314, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/dotnet
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/dotnet/tasks/main.yml", "content": "---\n\n- name: \"Download microsoft packages ...\"\n tags: dotnet\n register: task_result\n retries: \"{{ RETRIES }}\"\n delay: \"{{ DELAY }}\"\n get_url:\n url: https://packages.microsoft.com/config/ubuntu/21.04/packages-microsoft-prod.de...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 992, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/drawio
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/drawio/tasks/main.yml", "content": "---\n\n- name: Install draw.io\n tags: drawio\n ansible.builtin.snap:\n name: drawio\n state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes": 103 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 103, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/dropbox
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/dropbox/defaults/main.yml", "content": "---\n\ndropbox_version: \"2015.02.12\"\ndropbox_architecture: \"{% if ansible_architecture == 'x86_64' %}{{ ARCHITECTURE }}{% else %}i386{% endif %}\"\ndropbox_url_ubuntu_deb: \"https://www.dropbox.com/download?dl=packages/ubuntu/dropbox_{{dro...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 795, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/eclipse
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/eclipse/tasks/main.yml", "content": "---\n\n- name: Create directory\n tags: eclipse\n file:\n path: \"{{ item }}\"\n state: directory\n owner: \"{{ USERNAME }}\"\n group: \"{{ GROUPNAME }}\"\n with_items:\n - \"{{ HOMEDIR }}/Tools/eclipse-{{ eclipse_release }}\"\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 5174, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/feedreader
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/feedreader/tasks/main.yml", "content": "---\n- name: Add apt repository for feedreader\n become: yes\n tags: feedreader\n apt_repository:\n repo: 'ppa:alexlarsson/flatpak'\n\n- name: Update apt packages\n become: yes\n tags: feedreader\n apt:\n update_cache: yes\n\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 673, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/firefox
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/firefox/tasks/main.yml", "content": "---\n\n- name: \"Install firefox ...\"\n become: true\n tags: firefox\n package:\n name: \"{{ item }}\"\n state: present\n with_items:\n - firefox", "license_type": "no_license", "detected_licenses": [], "size_bytes": 144 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 144, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/git
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/git/defaults/main.yml", "content": "---\ngitversion_version: 5.10.3", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "Ansible/roles/git/tasks/main.yml", "content": "---\n\n- name: Install git\n tags: git\n become: yes\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 633, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/gitkraken
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/gitkraken/tasks/main.yml", "content": "---\n\n- name: Download gitkraken\n tags: gitkraken\n register: task_result\n retries: \"{{ RETRIES }}\"\n delay: \"{{ DELAY }}\"\n get_url:\n url: 'https://release.gitkraken.com/linux/gitkraken-{{ ARCHITECTURE }}.deb'\n dest: '/tmp/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 480, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/google-chrome
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/google-chrome/tasks/main.yml", "content": "---\n\n- name: Add apt key\n become: true\n tags: chrome\n register: task_result\n retries: \"{{ RETRIES }}\"\n delay: \"{{ DELAY }}\"\n until: task_result is success\n apt_key:\n url: https://dl-ssl.google.com/linux/linux_signing...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 888, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/intellij
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/intellij/defaults/main.yml", "content": "---\n\nintellij_tmp: /tmp/ideaIC-{{intellij_version}}.tar.gz\nintellij_install_dir: \"{{ homedir }}/Tools/Intellij\"\n\n# intellij_version can be either 'latest', or a specific version (e.g. '14.1.4' or '2016.2.4' )\nintellij_version: latest\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2505, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/java
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/java/tasks/main.yml", "content": "---\n\n- name: Install default jdk\n tags: java\n become: yes\n package:\n name: default-jdk\n state: present\n\n- name: Download Java 11\n tags: java\n register: task_result\n retries: \"{{ RETRIES }}\"\n delay: \"{{ DELAY }}\"\n get_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1057, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/keepass
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/keepass/tasks/main.yml", "content": "---\n\n- name: Update apt packages\n become: yes\n tags: keepass\n apt:\n update_cache: yes\n\n- name: Install keepass\n become: yes\n tags: keepass\n package:\n name: keepass2\n state: present\n", "license_type": "no_license",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 196, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/kubernetes
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/kubernetes/tasks/main.yml", "content": "---\n\n- name: Add Google official GPG key\n tags: kubernetes,k8s\n become: true\n ansible.builtin.apt_key:\n url: https://packages.cloud.google.com/apt/doc/apt-key.gpg\n state: present\n\n- name: Add Kubernetes Repository\n tags: ku...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 831, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/maven
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/maven/tasks/main.yml", "content": "---\n\n- name: Install required modules\n become: yes\n tags: maven\n package:\n name: \"{{ item }}\"\n state: present\n with_items:\n - default-jdk\n - openjdk-11-source\n\n- name: \"Download maven {{ maven_version }} ...\"\n tags: ma...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1479, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/mysql
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/mysql/tasks/main.yml", "content": "---\n\n- name: Update apt packages\n become: true\n tags: mysql\n apt:\n update_cache: yes\n\n- name: Install mysql server and mysql workbench\n become: true\n tags: mysql\n package:\n name: \"{{ item }}\"\n state: present\n with_it...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 501, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/nodejs
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/nodejs/defaults/main.yml", "content": "---\n\n# Set the version of Node.js to install (\"0.12\", \"4.x\", \"5.x\", \"6.x\", \"8.x\", \"10.x\").\n# Version numbers from Nodesource: https://github.com/nodesource/distributions\nnodejs_version: \"16.13.1\"", "license_type": "no_lice...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1556, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/packer
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/packer/default/main.yml", "content": "---\n\nansible_distribution: {{ DISTRO }}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "Ansible/roles/packer/tasks/main.yml", "content": "---\n\n- name: Add hashicorp key\n tags:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 721, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/php
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/php/tasks/main.yml", "content": "---\n\n- name: Add apt repository for php\n become: yes\n tags: php\n register: task_result\n retries: \"{{ RETRIES }}\"\n delay: \"{{ DELAY }}\"\n until: task_result is success\n apt_repository:\n repo: 'ppa:ondrej/php'\n\n- name: Update a...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 792, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/postgresql
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/postgresql/handlers/main.yml", "content": "---\n\n- name: Start postgresql\n become: yes\n service:\n name: postgresql\n state: started\n\n- name: Restart postgresql\n become: yes\n service:\n name: postgresql\n state: restarted\n\n- name: Restart iptables\n become:...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3641, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/postman
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/postman/tasks/main.yml", "content": "---\n\n- name: Download postman\n tags: postman\n register: task_result\n retries: \"{{ RETRIES }}\"\n delay: \"{{ DELAY }}\"\n until: \"'OK' in task_result.msg or 'file already exists' in task_result.msg or 'HTTP Error 304: Not Modified' in...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1156, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/puppet
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/puppet/tasks/main.yml", "content": "---\n\n- name: \"Install puppet ...\"\n become: true\n tags: puppet\n package:\n name: \"{{ item }}\"\n state: present\n with_items:\n - puppet\n\n- name: Download package\n tags: puppet\n ansible.builtin.get_url:\n url: https://ap...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 901, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/skype
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/skype/tasks/main.yml", "content": "---\n\n- name: Download skype\n tags: skype\n register: task_result\n retries: \"{{ RETRIES }}\"\n delay: \"{{ DELAY }}\"\n until: \"'OK' in task_result.msg or 'file already exists' in task_result.msg or 'HTTP Error 304: Not Modified' in task_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 428, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/soapui
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/soapui/templates/soapui.desktop.j2", "content": "#!/usr/bin/env xdg-open\n# {{ ansible_managed }}\n\n[Desktop Entry]\nEncoding=UTF-8\nName=SoapUI\nComment=SoapUI\nExec=/usr/local/soapui/bin/soapui.sh\nIcon=/usr/local/soapui/soapui-icon.png\nTerminal=false\nType=Application\nCategori...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1804, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/teams
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/teams/tasks/main.yml", "content": "---\n\n- name: Add microsoft key\n tags: teams\n become: true\n register: task_result\n retries: \"{{ RETRIES }}\"\n delay: \"{{ DELAY }}\"\n until: task_result is success\n apt_key:\n url: https://packages.microsoft.com/keys/microsoft.as...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 681, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/terraform
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/terraform/defaults/main.yml", "content": "---\n\nansible_distribution_release: \"focal\"\n\nterraform_version: 1.1.9", "license_type": "no_license", "detected_licenses": [], "size_bytes": 68 }, { "path": "Ansible/roles/terraform/tasks/main.yml", "content": "-...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1659, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/tomcat
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/tomcat/defaults/main.yml", "content": "---\n\ntomcat_version: 10.0.13\ntomcat_download_url: \"https://archive.apache.org/dist/tomcat/tomcat-10/v{{ tomcat_version }}/bin/apache-tomcat-{{ tomcat_version }}.tar.gz\"\njava_home: /usr/lib/jvm/default-java\ncatalina_home: /usr/share/tomca...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1998, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Ansible/roles/visualstudiocode
7,698
[ "no_license" ]
[ { "path": "Ansible/roles/visualstudiocode/tasks/main.yml", "content": "---\n\n- name: display architecture\n debug:\n msg: \"{{ ansible_architecture }} \"\n\n- name: Creating directories\n tags: vscode\n become: true\n file:\n path: \"{{ item }}\"\n state: directory\n owner: \"{{ USERNAME }}...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3710, "all_permissive": false }
ansible_role
MartijnSips/ubuntu-development-environment
15f99efb61fdeb0186ad54714754ec8df09c70f1
4
Example Project Specific Development Environment/Ansible/roles/example-project
7,698
[ "no_license" ]
[ { "path": "Example Project Specific Development Environment/Ansible/roles/example-project/tasks/main.yml", "content": "---\n\n- name: Creating directories\n file:\n path: \"{{ item }}\"\n state: directory\n with_items:\n - \"{{ lookup('env', 'HOME') }}/Sources/ExampleProject\"\n - \"{{ lookup('env...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 753, "all_permissive": false }
ansible_role
graphistry/opencl-test
5c1c266c826a9ce8579fccc43d0e824ba7e74ac3
10
nvidia-docker-host/roles/cuda
7,698
[ "no_license" ]
[ { "path": "nvidia-docker-host/roles/cuda/tasks/main.yml", "content": "---\n- name: Add ubuntu graphics-drivers ppa\n apt_repository: repo=\"ppa:graphics-drivers/ppa\"\n become: yes\n become_user: root\n\n- name: Add long-lived Nvidia drivers\n apt: pkg={{ item }} state=present update_cache=yes\n become...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 531, "all_permissive": false }
ansible_role
graphistry/opencl-test
5c1c266c826a9ce8579fccc43d0e824ba7e74ac3
10
nvidia-docker-host/roles/docker
7,698
[ "no_license" ]
[ { "path": "nvidia-docker-host/roles/docker/tasks/main.yml", "content": "---\n- name: Ensure OS is up to date\n become: yes\n become_user: root\n apt: update_cache=yes upgrade=dist\n\n- name: Use HTTPS apt repositories\n become: yes\n become_user: root\n apt: update_cache=yes name={{ item }}\n with_it...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1184, "all_permissive": false }
ansible_role
graphistry/opencl-test
5c1c266c826a9ce8579fccc43d0e824ba7e74ac3
10
nvidia-docker-host/roles/nvidiadocker
7,698
[ "no_license" ]
[ { "path": "nvidia-docker-host/roles/nvidiadocker/tasks/main.yml", "content": "---\n- name: Get the latest release of nvidia-docker\n get_url: \"dest=/tmp/nvidia-docker.deb url=https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.1/nvidia-docker_1.0.1-1_amd64.deb\"\n\n- name: Install nvidia-docker...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 391, "all_permissive": false }
ansible_role
graphistry/opencl-test
5c1c266c826a9ce8579fccc43d0e824ba7e74ac3
10
nvidia-docker-rhel/roles/cuda
7,698
[ "no_license" ]
[ { "path": "nvidia-docker-rhel/roles/cuda/tasks/main.yml", "content": "---\n- name: \"Disable nouveau\"\n copy: content=\"blacklist nouveau\" dest=/etc/modprobe.d/blacklist.conf\n become: yes\n become_user: root\n\n- name: \"Generate initramfs image\"\n command: sh -c 'dracut --force -v /boot/initramfs-$...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 887, "all_permissive": false }
ansible_role
graphistry/opencl-test
5c1c266c826a9ce8579fccc43d0e824ba7e74ac3
10
nvidia-docker-rhel/roles/docker
7,698
[ "no_license" ]
[ { "path": "nvidia-docker-rhel/roles/docker/tasks/main.yml", "content": "---\n- name: Add Docker repo\n copy: dest=/etc/yum.repos.d/docker.repo src=docker.repo owner=root group=root mode=0644\n become: yes\n become_user: root\n\n- name: Install Docker\n become: yes\n become_user: root\n yum: name=docke...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 672, "all_permissive": false }
ansible_role
graphistry/opencl-test
5c1c266c826a9ce8579fccc43d0e824ba7e74ac3
10
nvidia-docker-rhel/roles/nvidiadocker
7,698
[ "no_license" ]
[ { "path": "nvidia-docker-rhel/roles/nvidiadocker/handlers/main.yml", "content": "---\n- name: Reboot server\n shell: nohup bash -c \"sleep 2 && reboot\" &\n become: yes\n become_user: root\n async: 0\n poll: 0\n ignore_errors: true\n\n- name: Wait for server to restart\n local_action: wait_for host={...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 879, "all_permissive": false }
ansible_role
imtf-group/ansible-collection-ceph
b554d9758ff5591cadadd7f0f137cefd81dacec1
0
roles/bootstrap_cluster
7,698
[ "no_license" ]
[ { "path": "roles/bootstrap_cluster/tasks/main.yml", "content": "---\n- block:\n - name: download key for Ceph repo\n get_url:\n url: https://download.ceph.com/keys/release.asc\n dest: /etc/apt/trusted.gpg.d/ceph.asc\n\n - name: Add ceph repository\n apt_repository:\n rep...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4785, "all_permissive": false }
ansible_role
imtf-group/ansible-collection-ceph
b554d9758ff5591cadadd7f0f137cefd81dacec1
0
roles/create_filesystem
7,698
[ "no_license" ]
[ { "path": "roles/create_filesystem/defaults/main.yml", "content": "---\nvolume_name: cephfs\nceph_version: squid\npg_num: 8\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 54 }, { "path": "roles/create_filesystem/tasks/main.yml", "content": "---\n- name: down...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2290, "all_permissive": false }
ansible_role
imtf-group/ansible-collection-ceph
b554d9758ff5591cadadd7f0f137cefd81dacec1
0
roles/create_mds
7,698
[ "no_license" ]
[ { "path": "roles/create_mds/tasks/main.yml", "content": "---\n- name: download key for Ceph repo\n get_url:\n url: https://download.ceph.com/keys/release.asc\n dest: /etc/apt/trusted.gpg.d/ceph.asc\n\n- name: Add ceph repository\n apt_repository:\n repo: \"deb https://download.ceph.com/debian-{{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2060, "all_permissive": false }
ansible_role
imtf-group/ansible-collection-ceph
b554d9758ff5591cadadd7f0f137cefd81dacec1
0
roles/create_mgr
7,698
[ "no_license" ]
[ { "path": "roles/create_mgr/templates/keyring.j2", "content": "{{ auth_mgr.stdout }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 22 }, { "path": "roles/create_mgr/defaults/main.yml", "content": "---\nceph_version: squid\n\n", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1928, "all_permissive": false }
ansible_role
imtf-group/ansible-collection-ceph
b554d9758ff5591cadadd7f0f137cefd81dacec1
0
roles/create_mon
7,698
[ "no_license" ]
[ { "path": "roles/create_mon/tasks/main.yml", "content": "---\n- name: download key for Ceph repo\n get_url:\n url: https://download.ceph.com/keys/release.asc\n dest: /etc/apt/trusted.gpg.d/ceph.asc\n\n- name: Add ceph repository\n apt_repository:\n repo: \"deb https://download.ceph.com/debian-{{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2047, "all_permissive": false }
ansible_role
imtf-group/ansible-collection-ceph
b554d9758ff5591cadadd7f0f137cefd81dacec1
0
roles/create_osd
7,698
[ "no_license" ]
[ { "path": "roles/create_osd/defaults/main.yml", "content": "---\nall_devices: false\nosd_devices:\n - sdb\nceph_version: squid\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 }, { "path": "roles/create_osd/tasks/main.yml", "content": "---\n- name: downloa...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1963, "all_permissive": false }
ansible_role
imtf-group/ansible-collection-ceph
b554d9758ff5591cadadd7f0f137cefd81dacec1
0
roles/create_rbd
7,698
[ "no_license" ]
[ { "path": "roles/create_rbd/tasks/main.yml", "content": "---\n- name: download key for Ceph repo\n get_url:\n url: https://download.ceph.com/keys/release.asc\n dest: /etc/apt/trusted.gpg.d/ceph.asc\n\n- name: Add ceph repository\n apt_repository:\n repo: \"deb https://download.ceph.com/debian-{{ ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1934, "all_permissive": false }
ansible_role
imtf-group/ansible-collection-ceph
b554d9758ff5591cadadd7f0f137cefd81dacec1
0
roles/create_rgw
7,698
[ "no_license" ]
[ { "path": "roles/create_rgw/defaults/main.yml", "content": "---\nceph_version: squid\npg_num: 8", "license_type": "no_license", "detected_licenses": [], "size_bytes": 33 }, { "path": "roles/create_rgw/tasks/main.yml", "content": "---\n- name: download key for Ceph repo\n get_url:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3085, "all_permissive": false }
ansible_role
dma-vitch/ansible-playbook
41257dbd74c8178a8f8abbae7b74c6c38a9bf41f
0
ambari-install/roles/ambari-stack
7,698
[ "no_license" ]
[ { "path": "ambari-install/roles/ambari-stack/defaults/main.yml", "content": "---\n# default for ansible role\n\ntimestamp: \"{{ ansible_date_time.date }}\"\n\nambari_version: 2.5.2.0\n\nambari_repo_yum:\n - name: ambari\n description: Ambari Version - ambari-{{ ambari_version }}\n baseurl: http://pub...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 10788, "all_permissive": false }
ansible_role
dma-vitch/ansible-playbook
41257dbd74c8178a8f8abbae7b74c6c38a9bf41f
0
ftp-install/roles/proftpd
7,698
[ "no_license" ]
[ { "path": "ftp-install/roles/proftpd/handlers/main.yml", "content": "- name: reload systemd\n command: systemctl daemon-reload\n\n- name: reload initctl\n command: initctl reload-configuration\n\n- name: restart proftpd\n systemd:\n state: restarted\n daemon_reload: yes\n name: proftpd\n\n- name...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 12751, "all_permissive": false }
ansible_role
dma-vitch/ansible-playbook
41257dbd74c8178a8f8abbae7b74c6c38a9bf41f
0
ha-cluster-install/roles/ha-cluster-pacemaker
7,698
[ "no_license" ]
[ { "path": "ha-cluster-install/roles/ha-cluster-pacemaker/tasks/main.yml", "content": "---\n- name: Check if cluster consist of at least 2 nodes\n fail: msg=\"Cluster must have at least 2 members\"\n when: play_hosts|count() < 2\n run_once: true\n\n- name: Include distribution version specific variables\n...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 10, "total_bytes": 12262, "all_permissive": false }
ansible_role
dma-vitch/ansible-playbook
41257dbd74c8178a8f8abbae7b74c6c38a9bf41f
0
hue-install/roles/hue
7,698
[ "no_license" ]
[ { "path": "hue-install/roles/hue/tasks/control.yml", "content": "---\n- name: enable service hue\n systemd:\n name: hue\n enabled: yes\n masked: no\n\n- name: started service hue\n systemd:\n state: started\n name: hue\n", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 9243, "all_permissive": false }
ansible_role
dma-vitch/ansible-playbook
41257dbd74c8178a8f8abbae7b74c6c38a9bf41f
0
kafka-manager-install/roles/kafka-manager
7,698
[ "no_license" ]
[ { "path": "kafka-manager-install/roles/kafka-manager/templates/kafka-manager.j2", "content": "#!/usr/bin/env bash\n# kafka-manager This starts and stops kafka-manager\n#\n# config: {{ KAFKA_MANAGER_PATH }}/current/conf/application.conf\n# pidfile: {{ KAFKA_MANAGER_PATH }}/current/kafka-manager.pid\n#\n### B...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 9475, "all_permissive": false }
ansible_role
dma-vitch/ansible-playbook
41257dbd74c8178a8f8abbae7b74c6c38a9bf41f
0
mariadb-galera-cluster-install/roles/mariadb-galera-cluster
7,698
[ "no_license" ]
[ { "path": "mariadb-galera-cluster-install/roles/mariadb-galera-cluster/tasks/bootstrap_galera.yml", "content": "---\n- name: bootstrap_cluster | checking if galera cluster setup\n stat:\n path: \"/etc/galera_cluster_configured\"\n register: \"galera_cluster_configured\"\n\n- name: bootstrap_cluster | c...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 11743, "all_permissive": false }
ansible_role
dma-vitch/ansible-playbook
41257dbd74c8178a8f8abbae7b74c6c38a9bf41f
0
postgresql-install/roles/postgresql
7,698
[ "no_license" ]
[ { "path": "postgresql-install/roles/postgresql/tasks/package.yml", "content": "---\n- name: install | Add PostgreSQL repository\n yum:\n name: \"{{ postgresql_yum_repository_url }}\"\n state: present\n\n- name: install | Make sure the dependencies are installed\n yum:\n name: \"{{ item }}\"\n ...
{ "task_files": 7, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 13406, "all_permissive": false }
ansible_role
dma-vitch/ansible-playbook
41257dbd74c8178a8f8abbae7b74c6c38a9bf41f
0
zookeeper-view-install/roles/zookeeper-ui
7,698
[ "no_license" ]
[ { "path": "zookeeper-view-install/roles/zookeeper-ui/defaults/main.yml", "content": "---\n# VERSION OPTS\nZOOKEEPER_UI_VERSION: 2.2\n\nBUILDS_FILES_PATH: /tmp\n\n# URLS\nZOOKEEPER_UI_URL: \"https://github.com/DeemOpen/zkui/archive/{{ ZOOKEEPER_UI_VERSION }}.tar.gz\"\n\n# PATHS\nZOOKEEPER_UI_PATH: /opt/zooke...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 3867, "all_permissive": false }
ansible_role
DualSpark/superlumic-basic
62a72c1771467b6b184b8fb59ff7be30dc700029
0
roles/profile-all
7,698
[ "no_license" ]
[ { "path": "roles/profile-all/meta/main.yml", "content": "---\ngalaxy_info:\n author: <NAME>\n description: Ansible profile role for all users\n license: MIT\n min_ansible_version: 1.2\n platforms:\n - name: Darwin\n versions:\n - all\n categories:\n - system\ndependencies:\n - roder...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1234, "all_permissive": false }
ansible_role
DualSpark/superlumic-basic
62a72c1771467b6b184b8fb59ff7be30dc700029
0
roles/profile-dev
7,698
[ "no_license" ]
[ { "path": "roles/profile-dev/tasks/main.yml", "content": "---\n\n- name: install dev brew applications\n homebrew: name={{item}} state=latest\n with_items:\n - git\n - git-extras\n - autoconf\n - automake\n - bash-completion\n - docker-machine-driver-xhyve\n - coreutils\n - htop-os...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1350, "all_permissive": false }
ansible_role
DualSpark/superlumic-basic
62a72c1771467b6b184b8fb59ff7be30dc700029
0
roles/profile-dev-aws
7,698
[ "no_license" ]
[ { "path": "roles/profile-dev-aws/meta/main.yml", "content": "---\ngalaxy_info:\n author: <NAME>\n description: Ansible profile role for AWS-secific devloper workstations.\n license: MIT\n min_ansible_version: 1.2\n platforms:\n - name: Darwin\n versions:\n - all\n categories:\n - sys...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 617, "all_permissive": false }
ansible_role
DualSpark/superlumic-basic
62a72c1771467b6b184b8fb59ff7be30dc700029
0
roles/profile-dev-golang
7,698
[ "no_license" ]
[ { "path": "roles/profile-dev-golang/vars/main.yml", "content": "---\n\nhome_dir: \"/Users/{{ ansible_user_id }}\"\n\ninstall_ides:\n - intellij-idea\n# - eclipse-java\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 }, { "path": "roles/profile-dev-golang/task...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 973, "all_permissive": false }
ansible_role
DualSpark/superlumic-basic
62a72c1771467b6b184b8fb59ff7be30dc700029
0
roles/profile-dev-java
7,698
[ "no_license" ]
[ { "path": "roles/profile-dev-java/meta/main.yml", "content": "---\ngalaxy_info:\n author: <NAME>\n description: Ansible profile role for java development workstations.\n license: MIT\n min_ansible_version: 1.2\n platforms:\n - name: Darwin\n versions:\n - all\n categories:\n - system...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 721, "all_permissive": false }
ansible_role
DualSpark/superlumic-basic
62a72c1771467b6b184b8fb59ff7be30dc700029
0
roles/profile-dev-node
7,698
[ "no_license" ]
[ { "path": "roles/profile-dev-node/tasks/main.yml", "content": "---\n\n- name: install nvm\n git: repo=https://github.com/creationix/nvm.git dest=~/.nvm\n\n- name: install {{ nvm.node_version }}\n shell: . ~/.nvm/nvm.sh && nvm install {{ nvm.node_version }}\n register: nvm_install_result\n changed_when: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1109, "all_permissive": false }
ansible_role
DualSpark/superlumic-basic
62a72c1771467b6b184b8fb59ff7be30dc700029
0
roles/profile-dev-python
7,698
[ "no_license" ]
[ { "path": "roles/profile-dev-python/meta/main.yml", "content": "---\ngalaxy_info:\n author: <NAME>\n description: Ansible profile role for Python development workstations.\n license: MIT\n min_ansible_version: 1.2\n platforms:\n - name: Darwin\n versions:\n - all\n categories:\n - sy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 499, "all_permissive": false }
ansible_role
DualSpark/superlumic-basic
62a72c1771467b6b184b8fb59ff7be30dc700029
0
roles/profile-dev-ruby
7,698
[ "no_license" ]
[ { "path": "roles/profile-dev-ruby/meta/main.yml", "content": "---\ngalaxy_info:\n author: <NAME>\n description: Ansible profile role for Ruby development workstations.\n license: MIT\n min_ansible_version: 1.2\n platforms:\n - name: Darwin\n versions:\n - all\n categories:\n - system...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2151, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/agent
7,692
[ "no_license" ]
[ { "path": "provision/roles/agent/tasks/main.yml", "content": "- name: Download Jenkins agent JAR file from Jenkins machine\n get_url:\n url: http://10.10.0.10:8080/jnlpJars/agent.jar\n dest: /home/vagrant/agent.jar\n\n- name: Run Jenkins agent\n shell: \"java -jar /home/vagrant/agent.jar -jnlpUrl ht...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 298, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/docker
7,692
[ "no_license" ]
[ { "path": "provision/roles/docker/tasks/main.yml", "content": "- name: Add an Apt signing key for Docker repository\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n- name: Uninstall old versions of docker\n apt:\n name: \"{{ item }}\"\n state: absent\n with_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1028, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/java
7,692
[ "no_license" ]
[ { "path": "provision/roles/java/tasks/main.yml", "content": "- name: Add JAVA repository to the list\n apt_repository:\n repo: \"{{ item }}\"\n state: present\n with_items:\n - ppa:webupd8team/java\n\n- name: auto accept oracle jdk license\n shell: echo oracle-java8-installer shared/accepted-ora...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 528, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/jenkins
7,692
[ "no_license" ]
[ { "path": "provision/roles/jenkins/tasks/create-jenkins-job.yml", "content": "- name: Creates directory for multibranch job\n file:\n path: /var/lib/jenkins/jobs/pipeline_example\n state: directory\n owner: jenkins\n group: jenkins\n mode: 0775\n\n- name: Create github multibranch job\n tem...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 6843, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/sonarqube
7,692
[ "no_license" ]
[ { "path": "provision/roles/sonarqube/tasks/main.yml", "content": "- name: Pull Sonarqube docker image\n docker_image:\n name: sonarqube\n\n- name: Start Sonarqube container\n docker_container:\n restart: yes\n name: sonarqube\n image: sonarqube\n restart_policy: unless-stopped\n ports:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 785, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/sshClient
7,692
[ "no_license" ]
[ { "path": "provision/roles/sshClient/tasks/main.yml", "content": "- name: Copy private key used for deployments\n copy:\n src: keys/id_rsa\n dest: /home/vagrant/.ssh/id_rsa\n owner: vagrant\n group: vagrant\n mode: 0600", "license_type": "no_license", "detected_licenses": [], "si...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 163, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/sshClientJenkins
7,692
[ "no_license" ]
[ { "path": "provision/roles/sshClientJenkins/tasks/main.yml", "content": "- name: Copy private key used for deployments\n copy:\n src: keys/id_rsa\n dest: /var/lib/jenkins/id_rsa\n owner: jenkins\n group: jenkins\n mode: 0600", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 161, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/sshHost
7,692
[ "no_license" ]
[ { "path": "provision/roles/sshHost/tasks/main.yml", "content": "- name: Copy public key used for deployments\n authorized_key:\n user: vagrant\n state: present\n key: \"{{ item }}\"\n with_file:\n - keys/id_rsa.pub\n", "license_type": "no_license", "detected_licenses": [], "size_by...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 157, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/swarm-manager
7,692
[ "no_license" ]
[ { "path": "provision/roles/swarm-manager/tasks/main.yml", "content": "- name: determine swarm status\n shell: \"docker info | egrep '^Swarm: ' | cut -d ' ' -f2\"\n register: swarm_status\n\n- name: initialize swarm cluster\n shell: docker swarm init --advertise-addr={{ hostvars['prod1']['ansible_host'] }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1083, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/swarm-worker
7,692
[ "no_license" ]
[ { "path": "provision/roles/swarm-worker/tasks/main.yml", "content": "- name: determine swarm status\n shell: \"docker info | egrep '^Swarm: ' | cut -d ' ' -f2\"\n register: swarm_status\n\n- name: retrieve swarm worker token from manager host\n shell: \"ssh -o StrictHostKeyChecking=no vagrant@10.10.0.21 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 498, "all_permissive": false }
ansible_role
enreach-labs/open-south-2018-example-code
7a8c6a77409ff23f04f1ecbeacd70da8a8ea3cab
5
provision/roles/users
7,692
[ "no_license" ]
[ { "path": "provision/roles/users/tasks/main.yml", "content": "- name: Create Jenkins user\n user:\n name: jenkins\n state: present\n\n- name: Adding Jenkins user to docker group\n user:\n name: jenkins\n groups: docker\n append: yes", "license_type": "no_license", "detected_licenses...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 178, "all_permissive": false }
ansible_role
mribeirogabriel/aws_ec2_ansible
c4cf20f79eeee558a10c7480376e4374b4e5d0ae
0
roles/create
7,692
[ "no_license" ]
[ { "path": "roles/create/tasks/provisioning.yml", "content": "- name: Create Secutiry Group Ansible\n local_action:\n module: ec2_group\n name: \"{{ security_group }}\"\n description: Security Group Ansible\n region: \"{{ region }}\"\n rules:\n - proto: tcp\n from_port: 22\n to_p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1434, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/archlinux_configure
7,692
[ "no_license" ]
[ { "path": "roles/archlinux_configure/molecule/default/molecule.yml", "content": "---\ndependency:\n name: shell\n command: \"COLLECTION_INSTALL=false ${GITHUB_WORKSPACE:-..}/${GITHUB_REPOSITORY:-..}/tools/install-deps.sh\"\ndriver:\n name: docker\nplatforms:\n- name: archlinux_configre\n image: archlinu...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 15299, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/archlinux_install
7,692
[ "no_license" ]
[ { "path": "roles/archlinux_install/handlers/main.yml", "content": "---\n# handlers file for archlinux_install\n- name: Mount root filesystem\n ansible.posix.mount:\n path: /mnt\n src: \"{{ archlinux_install_root_partition }}\"\n fstype: \"{{ archlinux_install_root_fstype }}\"\n state: mounted\n...
{ "task_files": 16, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 24, "total_bytes": 47166, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/calico
7,692
[ "no_license" ]
[ { "path": "roles/calico/vars/main.yml", "content": "---\n# vars file for k3s\ncalico_felix_configuration_apiversion: crd.projectcalico.org/v1\ncalico_default_kubeconfig_path: \"~/.kube/config\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 137 }, { "path": "rol...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 14, "total_bytes": 23477, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/cilium
7,692
[ "no_license" ]
[ { "path": "roles/cilium/molecule/uninstall/molecule.yml", "content": "---\ndependency:\n name: shell\n command: \"COLLECTION_INSTALL=false ${GITHUB_WORKSPACE:-..}/${GITHUB_REPOSITORY:-..}/tools/install-deps.sh\"\ndriver:\n name: docker\nplatforms:\n- name: k3s-cilium-uninstall-debian\n dockerfile: Docke...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 17, "total_bytes": 24652, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/cockpit
7,692
[ "no_license" ]
[ { "path": "roles/cockpit/molecule/default/converge.yml", "content": "---\n- name: Converge\n hosts: all\n tasks:\n - name: \"Include cockpit role\"\n ansible.builtin.include_role:\n name: \"cockpit\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 138 ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 9904, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/dietpi_configure
7,692
[ "no_license" ]
[ { "path": "roles/dietpi_configure/tasks/dbus-hostname.yml", "content": "- name: \"Set hostname to {{ inventory_hostname }}\"\n become: true\n when:\n - ansible_connection not in [ \"container\", \"docker\", \"community.docker.docker\" ]\n ansible.builtin.hostname:\n name: \"{{ inventory_hostname }}\"...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 11812, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/directory_sync
7,692
[ "no_license" ]
[ { "path": "roles/directory_sync/templates/directory_sync.j2", "content": "#!/usr/bin/env bash\n{{ ansible_managed | comment }}\n\n# excpects that SOURCE_PATH and DESTINATION_PATH variables are defined\n# DESTINATION_PATH can supply multiple values, comma separated\n\n# known issue that this script doesn't w...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 26759, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/fluxcd
7,692
[ "no_license" ]
[ { "path": "roles/fluxcd/tasks/uninstall.yml", "content": "- name: Determine fluxcd_kubeconfig fact if not set\n when:\n - fluxcd_kubeconfig | default(\"\") == \"\"\n ansible.builtin.import_tasks: resolve-kubeconfig.yml\n\n- name: Determine if host is master\n when:\n - fluxcd_bootstrap_hosts is undefin...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 24, "total_bytes": 46097, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/helm
7,692
[ "no_license" ]
[ { "path": "roles/helm/molecule/default/converge.yml", "content": "---\n- name: Converge\n hosts: all\n tasks:\n - name: \"Include helm role\"\n ansible.builtin.include_role:\n name: \"helm\"\n vars:\n helm_tag: v3.12.1\n", "license_type": "no_license", "detected_licenses...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 10, "total_bytes": 9976, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/k3s
7,692
[ "no_license" ]
[ { "path": "roles/k3s/molecule/static-token/verify.yml", "content": "---\n# This is an example playbook to execute Ansible tests.\n- name: Verify\n hosts: all\n gather_facts: false\n tasks:\n - name: Check k3s is installed\n ansible.builtin.command: \"k3s --version\"\n register: k3s_version_output\...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 32, "total_bytes": 62340, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/kubectl
7,692
[ "no_license" ]
[ { "path": "roles/kubectl/molecule/upgrade/verify.yml", "content": "---\n# This is an example playbook to execute Ansible tests.\n\n- name: Verify\n hosts: all\n gather_facts: false\n tasks:\n - name: Check kubectl command works\n ansible.builtin.command: \"kubectl version --client --output=json\"\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 4750, "all_permissive": false }
ansible_role
wahooli/ansible-collection-common
dcd712e5e70746441f32aef41c3996417daf5fc7
0
roles/kubernetes_secret
7,692
[ "no_license" ]
[ { "path": "roles/kubernetes_secret/molecule/default/verify.yml", "content": "---\n# This is an example playbook to execute Ansible tests.\n\n- name: Verify\n hosts: client\n gather_facts: true\n tasks:\n - name: Get current user name\n ansible.builtin.command: whoami\n register: current_user_name\...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 9018, "all_permissive": false }