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
cats-works/infrastructure
7628f285e7b28481d1cd579c43b7228eab9523ef
0
roles/server-nginx-gssapi
8,083
[ "no_license" ]
[ { "path": "roles/server-nginx-gssapi/tasks/main.yml", "content": "---\n# Playbook to build nginx from source\n\n- name: Install packages for compiling nginx\n package: \n name: \n - build-essential\n - curl\n - git\n - libkrb5-dev\n - libpcre3-dev\n - libssl-dev\n - li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 4791, "all_permissive": false }
ansible_role
cats-works/infrastructure
7628f285e7b28481d1cd579c43b7228eab9523ef
0
roles/server-php-fpm
8,083
[ "no_license" ]
[ { "path": "roles/server-php-fpm/handlers/main.yml", "content": "---\n- name: \"restart php{{ php_version }}-fpm\"\n service: \"name=php{{ php_version }}-fpm state=restarted\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 106 }, { "path": "roles/server-php-fpm/...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1751, "all_permissive": false }
ansible_role
cats-works/infrastructure
7628f285e7b28481d1cd579c43b7228eab9523ef
0
roles/server-pxe
8,083
[ "no_license" ]
[ { "path": "roles/server-pxe/templates/rocky-pxelinux.cfg", "content": "label rocky-stable-{{ pxeprov_rocky_stable_ver }}\nmenu label Rocky Linux {{ pxeprov_rocky_stable_ver }} x64\nkernel ::distro/rocky-stable-{{ pxeprov_rocky_stable_ver }}/images/pxeboot/vmlinuz\ninitrd ::distro/rocky-stable-{{ pxeprov_roc...
{ "task_files": 10, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 20, "total_bytes": 34611, "all_permissive": false }
ansible_role
cats-works/infrastructure
7628f285e7b28481d1cd579c43b7228eab9523ef
0
roles/server-shell
8,083
[ "no_license" ]
[ { "path": "roles/server-shell/tasks/main.yml", "content": "---\n# Playbook to install Shell Server Tools\n\n- name: Install epel-release for Shell Server Role\n package: \n name: epel-release\n state: present\n when: ansible_os_family == \"RedHat\"\n \n- name: Install packages for Shell Server Role...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1223, "all_permissive": false }
ansible_role
cats-works/infrastructure
7628f285e7b28481d1cd579c43b7228eab9523ef
0
roles/shell-niceties
8,083
[ "no_license" ]
[ { "path": "roles/shell-niceties/templates/screenrc.j2", "content": "unsetenv DISPLAY\nnethack on # default: off\nautodetach on # default: on\ncrlf off # default: off\ndeflogin off # default: on\nhardcopy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4448, "all_permissive": false }
ansible_role
cats-works/infrastructure
7628f285e7b28481d1cd579c43b7228eab9523ef
0
roles/unifi-controller
8,083
[ "no_license" ]
[ { "path": "roles/unifi-controller/tasks/main.yml", "content": "---\n- name: Add apt-key for unifi\n ansible.builtin.get_url:\n url: https://dl.ui.com/unifi/unifi-repo.gpg\n dest: /etc/apt/trusted.gpg.d/unifi-repo.gpg\n mode: '0644'\n become: true\n\n- name: Add apt key for mongodb\n ansible.buil...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1782, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/chrome
8,083
[ "no_license" ]
[ { "path": "ansible/roles/chrome/tasks/main.yml", "content": "---\n- name: Add Google Chrome apt signing key\n become: yes\n apt_key:\n url: https://dl-ssl.google.com/linux/linux_signing_key.pub\n state: present\n\n- name: Add Google Chrome repository\n become: yes\n apt_repository:\n repo: deb ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 472, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/common
8,083
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: Get the username running Ansible\n local_action: command whoami\n register: username_on_the_host\n\n- name: Set home directory\n set_fact:\n home_dir: \"{{ lookup('env','HOME') }}\"\n\n- name: Create basic directories\n file: p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1366, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/docker
8,083
[ "no_license" ]
[ { "path": "ansible/roles/docker/files/install-docker", "content": "#!/bin/bash\n#\n# Installs Docker CE.\n#\nset -o nounset -o errexit -o pipefail\n\n# The name of the user to be added to the docker group must be passed as an argument.\nUSER_TO_ADD=$1\n\n# Load OS release file for Linux Mint support.\nif [ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 919, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/docker-compose
8,083
[ "no_license" ]
[ { "path": "ansible/roles/docker-compose/files/install-docker-compose", "content": "#!/bin/bash\n#\n# Installs Docker Compose.\n# Source: https://docs.docker.com/compose/install/\n#\nset -o nounset -o errexit -o pipefail\n\nVERSION=1.24.0 # From https://github.com/docker/compose/releases\n\nsudo curl -L \"h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 525, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/fzf
8,083
[ "no_license" ]
[ { "path": "ansible/roles/fzf/tasks/main.yml", "content": "---\n- name: Install fzf\n command: ~/.fzf/install --all\n args:\n creates: \"{{ home_dir }}/.fzf.zsh\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 103 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 103, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/git
8,083
[ "no_license" ]
[ { "path": "ansible/roles/git/tasks/main.yml", "content": "---\n- name: Add git PPA\n become: yes\n apt_repository:\n repo: 'ppa:git-core/ppa'\n codename: '{{ distrib_codename }}'\n\n- name: Install git\n become: yes\n apt: name=git state=latest update_cache=yes\n\n- name: Install gitg\n become: y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 622, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/homefiles
8,083
[ "no_license" ]
[ { "path": "ansible/roles/homefiles/tasks/main.yml", "content": "---\n- name: Set homefiles directory\n set_fact:\n homefiles_dir: \"{{ lookup('env','HOME') }}/homefiles\"\n\n- name: Pull homefiles submodules\n shell: cd $HOME/homefiles && git submodule init && git submodule update\n\n- name: Create sec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3876, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/java
8,083
[ "no_license" ]
[ { "path": "ansible/roles/java/tasks/main.yml", "content": "---\n- name: Install java\n become: yes\n apt: name=openjdk-8-jdk\n\n- name: Install JDK sources\n become: yes\n apt: name=openjdk-8-source\n\n- stat: path=\"{{ home_dir }}/opt/idea/bin/idea.sh\"\n register: idea_sh_file\n\n- stat: path=\"/tmp/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1195, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/keybase
8,083
[ "no_license" ]
[ { "path": "ansible/roles/keybase/tasks/main.yml", "content": "---\n# https://keybase.io/docs/the_app/install_linux\n- name: Install Keybase\n shell: |\n cd /tmp && \\\n curl -O https://prerelease.keybase.io/keybase_amd64.deb && \\\n sudo dpkg -i keybase_amd64.deb && \\\n sudo apt-get install -f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 296, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/lnav
8,083
[ "no_license" ]
[ { "path": "ansible/roles/lnav/tasks/main.yml", "content": "---\n# Log file navigator http://lnav.org\n\n- name: Check if lnav is installed\n command: dpkg-query -W lnav\n register: lnav_check_deb\n failed_when: lnav_check_deb.rc > 1\n changed_when: lnav_check_deb.rc == 1\n\n- name: Download lnav\n get_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 505, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/neovim
8,083
[ "no_license" ]
[ { "path": "ansible/roles/neovim/tasks/main.yml", "content": "---\n# See https://github.com/neovim/neovim/wiki/Installing-Neovim\n\n- name: Add Neovim repository\n become: yes\n apt_repository:\n repo: 'ppa:neovim-ppa/unstable'\n state: present\n update_cache: yes\n codename: '{{ distrib_codena...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1062, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/node
8,083
[ "no_license" ]
[ { "path": "ansible/roles/node/tasks/main.yml", "content": "---\n- name: Install node and npm\n shell: curl -L https://git.io/n-install | bash -s -- -y {{ node_version }}\n args:\n creates: \"{{ home_dir }}/n/bin/node\"\n warn: False\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 175, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/pyenv
8,083
[ "no_license" ]
[ { "path": "ansible/roles/pyenv/tasks/main.yml", "content": "---\n- name: \"Install pyenv\"\n shell: curl -L https://github.com/fernandoacorreia/pyenv-installer/raw/master/bin/pyenv-installer | bash\n args:\n creates: \"{{ home_dir }}/.pyenv\"\n warn: False\n\n- name: \"Install Python 3.6.x\"\n shel...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 356, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/ripgrep
8,083
[ "no_license" ]
[ { "path": "ansible/roles/ripgrep/tasks/main.yml", "content": "---\n- name: Install rust and cargo\n shell: curl https://sh.rustup.rs -sSf | sh -s -- -y\n args:\n creates: \"{{ home_dir }}/.cargo/bin/cargo\"\n warn: False\n\n- name: Install ripgrep\n command: \"{{ home_dir }}/.cargo/bin/cargo instal...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 298, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/sbt
8,083
[ "no_license" ]
[ { "path": "ansible/roles/sbt/tasks/main.yml", "content": "---\n- name: Install sbt\n script: install-sbt\n become: yes\n args:\n creates: /usr/bin/sbt\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 94 }, { "path": "ansible/roles/sbt/files/install-sbt", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 602, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/tig
8,083
[ "no_license" ]
[ { "path": "ansible/roles/tig/tasks/main.yml", "content": "# tig\n# https://github.com/jonas/tig\n# Binary will be installed in ~/opt/bin/tig\n# Configuration in ~/opt/etc/tigrc\n---\n- stat: path=\"{{ home_dir }}/opt/bin/tig\"\n register: tig_file\n\n- name: Download tig tarball\n get_url:\n url: https...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 964, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/virtualbox
8,083
[ "no_license" ]
[ { "path": "ansible/roles/virtualbox/tasks/main.yml", "content": "---\n- name: Add first Virtualbox apt signing key\n become: yes\n apt_key:\n url: https://www.virtualbox.org/download/oracle_vbox_2016.asc\n state: present\n\n- name: Add second Virtualbox apt signing key\n become: yes\n apt_key:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 858, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/wrk2
8,083
[ "no_license" ]
[ { "path": "ansible/roles/wrk2/tasks/main.yml", "content": "# wrk2\n# https://github.com/giltene/wrk2\n# Forked at https://github.com/fernandoacorreia/wrk2\n# Binary will be installed in ~/opt/bin/wrk\n---\n- stat: path=\"{{ home_dir }}/opt/bin/wrk\"\n register: wrk_file\n\n- name: Install wrk\n shell: |\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 371, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/zoom
8,083
[ "no_license" ]
[ { "path": "ansible/roles/zoom/tasks/main.yml", "content": "---\n- name: Check if zoom is installed\n command: dpkg-query -W zoom\n register: zoom_check_deb\n failed_when: zoom_check_deb.rc > 1\n changed_when: zoom_check_deb.rc == 1\n\n- name: Install zoom\n apt: deb=\"https://zoom.us/client/latest/zoom...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 297, "all_permissive": false }
ansible_role
fernandoacorreia/homefiles
0d6c99ff3bbf6a9631ffd66caf6c0958c052ff6f
1
ansible/roles/zsh
8,083
[ "no_license" ]
[ { "path": "ansible/roles/zsh/tasks/main.yml", "content": "---\n- name: Install packages\n become: yes\n apt: name={{item}} state=present\n with_items:\n - fonts-powerline\n - git-core\n - zsh\n\n- name: Change user's shell to zsh\n shell: chsh {{ username_on_the_host.stdout }} --shell `which zs...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 257, "all_permissive": false }
ansible_role
kontinua/G.A.R.D.M
89f69ab767910d707147a03f302af4dbc41e9f9b
0
ansible_files/roles/mysql_docker
8,083
[ "no_license" ]
[ { "path": "ansible_files/roles/mysql_docker/defaults/main.yml", "content": "---\nmysql_version: 5.5\nmysql_root_password: \"{{ lookup('password', mysql_passwd_tmpfile + ' length=20 chars=ascii_letters,digits') }}\"\nmysql_passwd_tmpfile: /tmp/mysqlpasswd.file\nmysql_port: 3306\n", "license_type": "no_li...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 839, "all_permissive": false }
ansible_role
JesusChristos/openvpn_ansible
b6ba90513607623d0fffcbf87b812a3cbea8c76b
0
roles/openvpn
8,083
[ "no_license" ]
[ { "path": "roles/openvpn/README.md", "content": "Please feel free =)", "license_type": "no_license", "detected_licenses": [], "size_bytes": 19 }, { "path": "roles/openvpn/templates/server.conf.j2", "content": "port {{ CONNECTION_PORT }}\r\nproto {{ CONNECTION_PROTOCOL }}\r\ndev {{ CO...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 9046, "all_permissive": false }
ansible_role
JesusChristos/openvpn_ansible
b6ba90513607623d0fffcbf87b812a3cbea8c76b
0
roles/provision
8,083
[ "no_license" ]
[ { "path": "roles/provision/tasks/main.yml", "content": "- name: Install update/upgrade\r\n include_tasks: update.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 59 }, { "path": "roles/provision/tasks/update.yml", "content": "- name: Update apt repo and cac...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 736, "all_permissive": false }
ansible_role
qjltbarquilla/CPE_MIDEXAM_BARQUILLA
5f6a3337fc6322345f9906c4c0570e4264b55825
0
roles/Elastic_Stack
8,084
[ "no_license" ]
[ { "path": "roles/Elastic_Stack/tasks/main.yml", "content": "- name: Install necessary packages for RedHat\n yum:\n name:\n - libcurl\n - wget\n - epel-release\n state: present\n when: ansible_os_family == \"RedHat\"\n\n- name: Install necessary packages for Debian\n apt:\n name:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2439, "all_permissive": false }
ansible_role
qjltbarquilla/CPE_MIDEXAM_BARQUILLA
5f6a3337fc6322345f9906c4c0570e4264b55825
0
roles/Grafana
8,084
[ "no_license" ]
[ { "path": "roles/Grafana/tasks/main.yml", "content": "---\n\n- name: Install pre-requisites for CentOS\n become: yes\n when: ansible_facts['os_family'] == \"RedHat\"\n yum:\n name:\n - https://packages.grafana.com/oss/release/grafana-8.5.0-1.x86_64.rpm\n - epel-release\n state: present\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1062, "all_permissive": false }
ansible_role
qjltbarquilla/CPE_MIDEXAM_BARQUILLA
5f6a3337fc6322345f9906c4c0570e4264b55825
0
roles/Influxdb
8,084
[ "no_license" ]
[ { "path": "roles/Influxdb/tasks/main.yml", "content": "---\n\n- name: Set up InfluxDB repository on CentOS\n when: ansible_facts['os_family'] == \"RedHat\"\n yum:\n name: https://dl.influxdata.com/influxdb/releases/influxdb-1.8.10-1.el7.x86_64.rpm\n state: present\n\n- name: Install InfluxDB on Cent...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 792, "all_permissive": false }
ansible_role
qjltbarquilla/CPE_MIDEXAM_BARQUILLA
5f6a3337fc6322345f9906c4c0570e4264b55825
0
roles/Lamp_Stack
8,084
[ "no_license" ]
[ { "path": "roles/Lamp_Stack/tasks/main.yml", "content": "---\n\n- name: Install required packages for Apache, PHP, and MariaDB on Ubuntu\n apt:\n name:\n - apache2\n - php\n - libapache2-mod-php\n - mariadb-server\n - php-mysql\n state: present\n update_cache: yes\n when:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2217, "all_permissive": false }
ansible_role
qjltbarquilla/CPE_MIDEXAM_BARQUILLA
5f6a3337fc6322345f9906c4c0570e4264b55825
0
roles/Nagios
8,084
[ "no_license" ]
[ { "path": "roles/Nagios/tasks/main.yml", "content": "---\n\n- name: Necessary packages for Ubuntu\n when: ansible_facts['os_family'] == \"Debian\"\n apt:\n name:\n - nagios3\n - nagios-plugins\n - apache2\n - apache2-utils\n update_cache: yes\n state: present\n\n- name: Enable...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1299, "all_permissive": false }
ansible_role
tiagopgeremias/ansible-mongo-replicaset
f3d3a58ab18c6a6d19c2e3475406667c6fc979ba
0
roles/configure_cluster
8,084
[ "no_license" ]
[ { "path": "roles/configure_cluster/templates/create_user.js.j2", "content": "db = db.getSiblingDB('admin');\ndb.createUser({\n user: \"{{ user_admin }}\", \n pwd:\"{{ <PASSWORD> }}\",\n roles: [\n { role: \"userAdminAnyDatabase\", db: \"admin\" },\n { role: \"dbAdminAnyDatabase\", db: \"admin\" },\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2168, "all_permissive": false }
ansible_role
tiagopgeremias/ansible-mongo-replicaset
f3d3a58ab18c6a6d19c2e3475406667c6fc979ba
0
roles/install_mongo
8,084
[ "no_license" ]
[ { "path": "roles/install_mongo/tasks/main.yml", "content": "- name: Disable Selinux\n template:\n src: selinux\n dest: /etc/selinux/config\n owner: root\n group: root\n mode: '0644'\n register: disable_selinux\n \n\n- name: Reboot system\n shell: sleep 2 && shutdown -r now\n async: 5\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 747, "all_permissive": false }
ansible_role
noxoid/playbooks
65a72b10e8b2e5a9ad4f0a23c7ee0b7de056c46e
0
roles/baremetal
8,084
[ "no_license" ]
[ { "path": "roles/baremetal/tasks/main.yml", "content": "---\n- name: Install smartmontools\n yum: name=smartmontools state=present\n\n- name: Install smartd.conf configuration\n template: src=smartd.conf.j2 dest=/etc/smartmontools/smartd.conf owner=0 group=0 mode=644\n notify:\n - restart smartd\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 332, "all_permissive": false }
ansible_role
noxoid/playbooks
65a72b10e8b2e5a9ad4f0a23c7ee0b7de056c46e
0
roles/base
8,084
[ "no_license" ]
[ { "path": "roles/base/handlers/main.yml", "content": "---\n- name: restart sshd\n service: name=sshd state=restarted\n\n- name: restart syslogd\n service: name=syslogd state=restarted\n\n- name: reload pf\n service: name=pf state=reloaded\n\n- name: reload init\n command: kill -HUP 1\n\n- name: apply sy...
{ "task_files": 6, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 15, "total_bytes": 9801, "all_permissive": false }
ansible_role
noxoid/playbooks
65a72b10e8b2e5a9ad4f0a23c7ee0b7de056c46e
0
roles/cpanel
8,084
[ "no_license" ]
[ { "path": "roles/cpanel/tasks/main.yml", "content": "- name: Whitelist home IP in Exim\n lineinfile: dest=/etc/skipsmtpcheckhosts line={{ home_ip }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 96 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 96, "all_permissive": false }
ansible_role
noxoid/playbooks
65a72b10e8b2e5a9ad4f0a23c7ee0b7de056c46e
0
roles/icinga
8,084
[ "no_license" ]
[ { "path": "roles/icinga/tasks/main.yml", "content": "---\n- name: Install Icinga\n package: name=icinga2 state=present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 65 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 65, "all_permissive": false }
ansible_role
noxoid/playbooks
65a72b10e8b2e5a9ad4f0a23c7ee0b7de056c46e
0
roles/mariadb
8,084
[ "no_license" ]
[ { "path": "roles/mariadb/files/mysettings.cnf", "content": "#managed with ansible\n[mysqld]\nthread_cache_size = 2\nquery_cache_size = 8M\nquery_cache_type = 1\nlong_query_time = 5\nlog_slow_queries = 1\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 138 }, { "...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1545, "all_permissive": false }
ansible_role
noxoid/playbooks
65a72b10e8b2e5a9ad4f0a23c7ee0b7de056c46e
0
roles/nginx
8,084
[ "no_license" ]
[ { "path": "roles/nginx/templates/vhosts/thewall.valhalla.j2", "content": "#{{ cm_managed }}\nserver {\n listen 80;\n listen [::]:80;\n server_name thewall.valhalla;\n location / {\n autoindex on;\n root /srv/www/thewall.valhalla;\n index index.php index.html ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 7768, "all_permissive": false }
ansible_role
noxoid/playbooks
65a72b10e8b2e5a9ad4f0a23c7ee0b7de056c46e
0
roles/workstation
8,084
[ "no_license" ]
[ { "path": "roles/workstation/tasks/main.yaml", "content": "- name: Install our base packages\n yum: pkg={{item}} state=present\n with_items:\n - screen\n - pidgin\n - htop\n - guake\n - thunderbird\n - keepassx\n - gedit\n - git\n - lynx\n - sshpass\n - NetworkManager-openvpn-gnome\n - \"https...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 650, "all_permissive": false }
ansible_role
noxoid/playbooks
65a72b10e8b2e5a9ad4f0a23c7ee0b7de056c46e
0
roles/yumcache
8,084
[ "no_license" ]
[ { "path": "roles/yumcache/tasks/main.yml", "content": "---\n- name: Install squid\n yum: pkg={{item}} state=present\n with_items:\n - squid\n\n- name: Install squid config\n copy: src=squid.conf dest=/etc/squid/squid.conf owner=0 group=squid mode=0640\n notify:\n - restart squid\n\n- name: Allow squ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 415, "all_permissive": false }
ansible_role
qrevalenzuela/Activity_9_Valenzuela
7a4e74522cfd095d9a87e7439b8d18aeef0c9381
0
roles/prometheus
8,084
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yml", "content": "- name: Installing Prometheus on Ubuntu\n apt: \n name: prometheus\n state: latest\n update_cache: yes\n when: ansible_distribution == \"Ubuntu\"\n\n\n- name: Installing snapd on Centos\n dnf:\n name:\n - snapd\n state: lat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 596, "all_permissive": false }
ansible_role
cyverse-austria/ansible-os
dc198795a2e4e83c935ea58045089b72e1c4bc2f
0
roles/opensearch
8,084
[ "no_license" ]
[ { "path": "roles/opensearch/tasks/Debian.yml", "content": "---\n- name: Update apt-cache\n ansible.builtin.apt:\n # name: \"*\"\n # state: latest\n update_cache: true\n\n- name: Ensure sudo is installed\n become: true\n ansible.builtin.apt:\n name: sudo\n state: present\n", "license_ty...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 7769, "all_permissive": false }
ansible_role
cyverse-austria/ansible-os
dc198795a2e4e83c935ea58045089b72e1c4bc2f
0
roles/timezone
8,084
[ "no_license" ]
[ { "path": "roles/timezone/defaults/main.yml", "content": "---\ntimezone__zone: \"Europe/Vienna\"\n# defaults file for timezone\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 65 }, { "path": "roles/timezone/tasks/main.yml", "content": "---\n- name: Install tz...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 570, "all_permissive": false }
ansible_role
DmitriiKuvshinov/linux-highload
008de4badf32f3187c0ebc5ec4098e42e071d695
0
roles/backdrop
8,084
[ "no_license" ]
[ { "path": "roles/backdrop/handlers/main.yml", "content": "---\n- name: restart backdrop\n community.docker.docker_compose_v2:\n project_src: \"/var/docker/backdrop\"\n state: restarted\n...", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 }, { "path": "ro...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 846, "all_permissive": false }
ansible_role
DmitriiKuvshinov/linux-highload
008de4badf32f3187c0ebc5ec4098e42e071d695
0
roles/docker
8,084
[ "no_license" ]
[ { "path": "roles/docker/tasks/rocky.yml", "content": "- name: install docker repo\n shell: \"dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { "path": "roles/docker/hand...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1825, "all_permissive": false }
ansible_role
DmitriiKuvshinov/linux-highload
008de4badf32f3187c0ebc5ec4098e42e071d695
0
roles/iscsi
8,084
[ "no_license" ]
[ { "path": "roles/iscsi/tasks/main.yml", "content": "---\n- name: install iscsi packges\n package:\n name: \"{{ item }}\"\n state: present\n loop:\n - tgt\n - lvm2\n when: \"item not in ansible_facts.packages\"\n\n- name: create PV\n parted:\n device: /dev/vdb\n number: 1\n flags: [ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1187, "all_permissive": false }
ansible_role
DmitriiKuvshinov/linux-highload
008de4badf32f3187c0ebc5ec4098e42e071d695
0
roles/keepalived
8,084
[ "no_license" ]
[ { "path": "roles/keepalived/tasks/main.yml", "content": "- name: install keepalived\n package:\n name: keepalived\n state: present\n notify: enable nginx\n when: \"'keepalived' not in ansible_facts.packages\"\n\n- name: Enable forward IP packets\n ansible.posix.sysctl:\n name: net.ipv4.ip_forwa...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1106, "all_permissive": false }
ansible_role
DmitriiKuvshinov/linux-highload
008de4badf32f3187c0ebc5ec4098e42e071d695
0
roles/mysql
8,084
[ "no_license" ]
[ { "path": "roles/mysql/handlers/main.yml", "content": "---\n- name: restart mysql\n community.docker.docker_compose_v2:\n project_src: \"/var/docker/mysql\"\n state: restarted\n...", "license_type": "no_license", "detected_licenses": [], "size_bytes": 125 }, { "path": "roles/mysql...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 806, "all_permissive": false }
ansible_role
DmitriiKuvshinov/linux-highload
008de4badf32f3187c0ebc5ec4098e42e071d695
0
roles/nginx
8,084
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: configure repos\n include_tasks: \"{{ (ansible_distribution) | lower }}.yml\"\n when: \"ansible_distribution | lower == 'ubuntu'\"\n\n- name: install nginx\n package:\n name: nginx\n state: present\n notify: enable nginx\n when: \"'...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1720, "all_permissive": false }
ansible_role
DmitriiKuvshinov/linux-highload
008de4badf32f3187c0ebc5ec4098e42e071d695
0
roles/pacemaker
8,084
[ "no_license" ]
[ { "path": "roles/pacemaker/tasks/user.yml", "content": "---\n- name: Setup password for hacluster\n user:\n name: \"hacluster\"\n password: \"{{ <PASSWORD> | password_hash('<PASSWORD>') }}\"\n\n- name: Configure sudo for hacluster user\n community.general.sudoers:\n name: wheel_group\n state: ...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 5124, "all_permissive": false }
ansible_role
Millerlw/My_Ansible_Course_Files
56d9b50a58c7001b9f8e51437ae44689f3d95309
0
class6/exercise5/roles/ntp
8,084
[ "permissive" ]
[ { "path": "class6/exercise5/roles/ntp/tasks/main.yml", "content": "- name: IOS config\n cisco.ios.ios_config:\n src: ntp-default.j2\n when: 'ansible_network_os == \"ios\"'\n\n- name: NX-OS config\n cisco.nxos.nxos_config:\n src: ntp-nxos.j2\n when: 'ansible_network_os == \"nxos\"'\n\n- name: EOS c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 320, "all_permissive": true }
ansible_role
Millerlw/My_Ansible_Course_Files
56d9b50a58c7001b9f8e51437ae44689f3d95309
0
class6/exercise6/roles/vrf-lite
8,084
[ "permissive" ]
[ { "path": "class6/exercise6/roles/vrf-lite/vars/main.yml", "content": "---\nvrfs:\n - vrf_name: Gomer\n route_distinguisher: \"65200:1\"\n interfaces:\n - Loopback1\n - vrf_name: Goober\n route_distinguisher: \"65200:2\"\n interfaces:\n - Loopback2\n", "license_type": "permissive...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 457, "all_permissive": true }
ansible_role
AdrianVarelaG/k8s-ansible-raspberrypi
02ffb4e016848b92f8dd6537db24d43b42fc50e6
0
bootstrap/roles/base
8,084
[ "no_license" ]
[ { "path": "bootstrap/roles/base/handlers/main.yml", "content": "- name: reboot_machine\n reboot:", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "bootstrap/roles/base/tasks/main.yml", "content": "- name: install dependencies \n package:\n n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 133, "all_permissive": false }
ansible_role
AdrianVarelaG/k8s-ansible-raspberrypi
02ffb4e016848b92f8dd6537db24d43b42fc50e6
0
bootstrap/roles/cgroup
8,084
[ "no_license" ]
[ { "path": "bootstrap/roles/cgroup/tasks/main.yml", "content": "- name: Enable Cgroup memory \n tags: always \n copy: \n src: cmdline.txt\n dest: /boot/firmware/cmdline.txt\n owner: root\n group: root\n mode: 0440\n notify: reboot_machine\n ", "license_type": "no_license", "detecte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 187, "all_permissive": false }
ansible_role
AdrianVarelaG/k8s-ansible-raspberrypi
02ffb4e016848b92f8dd6537db24d43b42fc50e6
0
bootstrap/roles/network
8,084
[ "no_license" ]
[ { "path": "bootstrap/roles/network/vars/main.yml", "content": "net_template_file: 50_cloud_init_ubuntu.j2", "license_type": "no_license", "detected_licenses": [], "size_bytes": 42 }, { "path": "bootstrap/roles/network/tasks/main.yml", "content": "- name: Enable IPv4 forwarding\n tag...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 443, "all_permissive": false }
ansible_role
AdrianVarelaG/k8s-ansible-raspberrypi
02ffb4e016848b92f8dd6537db24d43b42fc50e6
0
bootstrap/roles/user
8,084
[ "no_license" ]
[ { "path": "bootstrap/roles/user/vars/main.yml", "content": "ssh_users: \"ubuntu ansible\"\nssh_template_file: sshd_config_ubuntu.j2\nuser: ansible", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 }, { "path": "bootstrap/roles/user/tasks/main.yml", "content": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 653, "all_permissive": false }
ansible_role
sunjeewa/kubernetes-thw-tf
f298f4d096604a19084e2f5afe8f009dae46d543
0
ansible/roles/common
8,084
[ "permissive" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n# tasks file for common\n- name: Create /etc/etcd \n file:\n path: /etc/etcd\n state: directory\n mode: '0755'", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 119 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 119, "all_permissive": true }
ansible_role
sunjeewa/kubernetes-thw-tf
f298f4d096604a19084e2f5afe8f009dae46d543
0
ansible/roles/controller-certs
8,084
[ "permissive" ]
[ { "path": "ansible/roles/controller-certs/defaults/main.yml", "content": "---\n# defaults file for controller-certs", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 40 }, { "path": "ansible/roles/controller-certs/tasks/main.yml", "content...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 2389, "all_permissive": true }
ansible_role
sunjeewa/kubernetes-thw-tf
f298f4d096604a19084e2f5afe8f009dae46d543
0
ansible/roles/etcd
8,084
[ "permissive" ]
[ { "path": "ansible/roles/etcd/tasks/main.yml", "content": "---\n# tasks file for etcd\n- name: Install etcd\n apt:\n name: etcd \n update_cache: yes\n\n- name: Update etcd config \n template:\n src: etcd.conf \n dest: /etc/default/etcd\n owner: root\n group: root\n mode: '0644'\n b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 305, "all_permissive": true }
ansible_role
sunjeewa/kubernetes-thw-tf
f298f4d096604a19084e2f5afe8f009dae46d543
0
ansible/roles/worker-certs
8,084
[ "permissive" ]
[ { "path": "ansible/roles/worker-certs/defaults/main.yml", "content": "---\n# defaults file for worker-certs", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 36 }, { "path": "ansible/roles/worker-certs/vars/main.yml", "content": "---\n# va...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1485, "all_permissive": true }
ansible_role
drobbins/kaneara
6b022ad5109e6d6957c353c056e929ffe185c5c5
0
roles/base
8,084
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "---\n- name: install common packages\n yum: name={{ item }} state=present\n with_items:\n - vim-common\n - vim-minimal\n - vim-enhanced\n - git\n - make\n\n- name: remove old version of npm\n yum: name=npm enablerepo=epel state=absent\n\n- name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 498, "all_permissive": false }
ansible_role
drobbins/kaneara
6b022ad5109e6d6957c353c056e929ffe185c5c5
0
roles/meteor
8,084
[ "no_license" ]
[ { "path": "roles/meteor/tasks/main.yml", "content": "---\n- name: Install Meteor\n remote_user: \"{{meteor_user}}\"\n shell: \"curl https://install.meteor.com/ | sed 's/sudo/sudo -n/g' | /bin/sh\"\n args:\n creates: \"/usr/local/bin/meteor\"\n\n- name: Ensure meteor link exists\n sudo: true\n file: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 369, "all_permissive": false }
ansible_role
drobbins/kaneara
6b022ad5109e6d6957c353c056e929ffe185c5c5
0
roles/nginx
8,084
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: ensure directory /etc/pki/rpm-gpg/\n file: path=/etc/pki/rpm-gpg/ state=directory recurse=yes\n\n- name: install GPG key\n rpm_key: key=http://nginx.org/keys/nginx_signing.key state=present\n\n- name: install nginx repo\n copy: src=nginx.re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 772, "all_permissive": false }
ansible_role
drobbins/kaneara
6b022ad5109e6d6957c353c056e929ffe185c5c5
0
roles/robbinsd
8,084
[ "no_license" ]
[ { "path": "roles/robbinsd/vars/main.yml", "content": "---\nname: \"<NAME>\"\ngit_email: \"<EMAIL>\"\nusername: \"robbinsd\"\ndotfiles_repo: \"https://github.com/drobbins/dotfiles.git\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 }, { "path": "roles/robbin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1639, "all_permissive": false }
ansible_role
drobbins/kaneara
6b022ad5109e6d6957c353c056e929ffe185c5c5
0
roles/robbinsd.net
8,084
[ "no_license" ]
[ { "path": "roles/robbinsd.net/tasks/main.yml", "content": "---\n- name: copy config\n copy: src=robbinsd.net dest=/etc/nginx/sites-available/robbinsd.net\n notify:\n - Restart nginx\n\n- name: copy ssl config\n copy: src=ssl.robbinsd.net dest=/etc/nginx/sites-available/ssl.robbinsd.net\n notify:\n - R...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 963, "all_permissive": false }
ansible_role
drobbins/kaneara
6b022ad5109e6d6957c353c056e929ffe185c5c5
0
roles/tissuehub
8,084
[ "no_license" ]
[ { "path": "roles/tissuehub/tasks/main.yml", "content": "---\n- set_fact:\n timestamp: \"{{ lookup('pipe', 'date +%Y%m%d%H%M%S') }}\"\n\n- name: ensure forever is installed\n sudo: true\n npm: name=forever global=yes state=present\n\n- name: ensure the MongoDB configuration is in place\n sudo: true\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2362, "all_permissive": false }
ansible_role
drobbins/kaneara
6b022ad5109e6d6957c353c056e929ffe185c5c5
0
roles/tissuehub.org
8,084
[ "no_license" ]
[ { "path": "roles/tissuehub.org/files/ssl.tissuehub.org", "content": "# Choose between www and non-www, listen on the *wrong* one and redirect to\n# the right one -- http://wiki.nginx.org/Pitfalls#Server_Name\n\nserver {\n listen 80;\n\n # listen on both hosts\n server_name tissuehub.org www.tissuehub.org...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3091, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/consul-docker-service-config
8,084
[ "no_license" ]
[ { "path": "ansible/roles/consul-docker-service-config/tasks/main.yml", "content": "---\n# Configure Consul service entries for docker containers that do not require an Ansible role for setup\n- name: Register mongodb service with consul\n consul:\n service_name: mongodb\n service_port: 26017\n tag...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 471, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/consul-kv-config
8,084
[ "no_license" ]
[ { "path": "ansible/roles/consul-kv-config/tasks/main.yml", "content": "---\n- name: Set value for required hashes\n consul_kv:\n\n key: config/general/required-hashes\n value: \"SHA-256,SHA-512\"\n host: \"{{ host }}\"\n\n- name: Set value for thumbnail size\n consul_kv:\n\n key: config/genera...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 721, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/dev-rabbitmq-credentials
8,084
[ "no_license" ]
[ { "path": "ansible/roles/dev-rabbitmq-credentials/defaults/main.yml", "content": "---\nintegration_pwd: \"<PASSWORD>\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "ansible/roles/dev-rabbitmq-credentials/tasks/main.yml", "content": "---\n- ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 286, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/dev-vault-credentials
8,084
[ "no_license" ]
[ { "path": "ansible/roles/dev-vault-credentials/tasks/main.yml", "content": "---\n- name: Create integration approle\n uri:\n url: \"{{ vault_api_url }}/auth/approle/role/integration\"\n method: POST\n body_format: json\n status_code: 204\n headers:\n X-Vault-Token: \"{{ vault_token }}\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3259, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/docker-vault-init
8,084
[ "no_license" ]
[ { "path": "ansible/roles/docker-vault-init/tasks/main.yml", "content": "---\n# DO NOT use this role in production, it is unsafe\n\n- name: Check if Vault has been initialized\n uri:\n url: http://vault:8200/v1/sys/init\n validate_certs: no\n body_format: json\n return_content: yes\n delay: 1\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1846, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/rabbitmq-server
8,084
[ "no_license" ]
[ { "path": "ansible/roles/rabbitmq-server/defaults/main.yml", "content": "---\ndatabase: \"si2\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 20 }, { "path": "ansible/roles/rabbitmq-server/tasks/main.yml", "content": "---\n- name: Register RabbitMQ service ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2251, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/vault-approle-auth
8,084
[ "no_license" ]
[ { "path": "ansible/roles/vault-approle-auth/tasks/main.yml", "content": "---\n- name: Read Vault auth methods \n uri:\n url: \"{{ vault_api_url }}/sys/auth\"\n method: GET\n headers:\n X-Vault-Token: \"{{ vault_token }}\"\n register: auth_response\n delay: 1\n retries: 10\n until: auth_re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1047, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/vault-kv
8,084
[ "no_license" ]
[ { "path": "ansible/roles/vault-kv/tasks/main.yml", "content": "---\n- name: Check if KV secrets engine is enabled\n uri:\n url: \"{{ vault_api_url }}/sys/mounts\"\n headers:\n X-Vault-Token: \"{{ vault_token }}\"\n register: mounts_response\n\n- name: Enable KV secrets engine\n block:\n - n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 574, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/vault-pki
8,084
[ "no_license" ]
[ { "path": "ansible/roles/vault-pki/tasks/main.yml", "content": "---\n- name: Check if PKI secrets engine is enabled\n uri:\n url: \"{{ vault_api_url }}/sys/mounts\"\n headers:\n X-Vault-Token: \"{{ vault_token }}\"\n register: mounts_response\n\n- name: Enable PKI secrets engine\n block:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1784, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/vault-policy
8,084
[ "no_license" ]
[ { "path": "ansible/roles/vault-policy/tasks/main.yml", "content": "---\n- name: Check if Vault has been initialized\n uri:\n url: \"{{ vault_api_url }}/sys/init\"\n validate_certs: no\n body_format: json\n return_content: yes\n register: vault_init_response\n check_mode: no\n\n- name: Vault i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2291, "all_permissive": false }
ansible_role
seeker/si2
c2cd385c85cb419598b6179d6b4989341c15d3e0
2
ansible/roles/vault-rabbitmq-secrets
8,084
[ "no_license" ]
[ { "path": "ansible/roles/vault-rabbitmq-secrets/tasks/main.yml", "content": "---\n- name: Check if RabbitMQ secrets engine is enabled\n uri:\n url: \"{{ vault_api_url }}/sys/mounts\"\n headers:\n X-Vault-Token: \"{{ vault_token }}\"\n register: mounts_response\n\n- name: Enable RabbitMQ secrets...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 5499, "all_permissive": false }
ansible_role
wangyu1209/Ansible
1936b221105b44d127732184fd78d73165508541
0
lamp/roles/httpd
8,084
[ "no_license" ]
[ { "path": "lamp/roles/httpd/tasks/main.yml", "content": "- name: web server install\n yum: name=httpd state=present\n- name: provide test page\n copy: src=index.php dest=/var/www/html\n- name: delete apache config\n shell: rm -rf /etc/httpd/conf/httpd.conf\n- name: provide configuration file\n copy: src...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 312, "all_permissive": false }
ansible_role
wangyu1209/Ansible
1936b221105b44d127732184fd78d73165508541
0
lamp/roles/mysql
8,084
[ "no_license" ]
[ { "path": "lamp/roles/mysql/tasks/main.yml", "content": "- name: install the mysql\n yum: name=mariadb-server state=present \n- name: provide configration file\n copy: src=my.cnf dest=/etc/my.cnf \n- name: start mariadb\n service: name=mariadb enabled=yes state=started \n\n", "license_type":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 222, "all_permissive": false }
ansible_role
wangyu1209/Ansible
1936b221105b44d127732184fd78d73165508541
0
lamp/roles/php
8,084
[ "no_license" ]
[ { "path": "lamp/roles/php/tasks/main.yml", "content": "- name: install php\n yum: name=php state=present\n- name: install php-mysql\n yum: name=php-mysql state=present\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 113 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 113, "all_permissive": false }
ansible_role
wangyu1209/Ansible
1936b221105b44d127732184fd78d73165508541
0
lamp/roles/prepare
8,084
[ "no_license" ]
[ { "path": "lamp/roles/prepare/tasks/main.yml", "content": "- name: delete yum config\n shell: rm -rf /etc/yum.repos.d/*\n- name: provide yumrepo file\n shell: wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo\n- name: clean the yum repo\n shell: yum clean all\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 284, "all_permissive": false }
ansible_role
andrewnazarov/ansible-inferno
47b42644c5c2aaf39e362fdd7d25a85a46022a29
4
roles/inferno
8,086
[ "no_license" ]
[ { "path": "roles/inferno/tasks/main.yml", "content": "---\n- name: Check if i386 architecture is available\n shell: \"dpkg --print-foreign-architectures\"\n register: arch\n\n- name: Add architecture i386\n become: yes\n command: \"dpkg --add-architecture i386\"\n when: arch.stdout.find('i386') == -1 a...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3292, "all_permissive": false }
ansible_role
SpicyKalamares/CPE232_HOA11
20f9104cb54ab60719309f77f9a2a0ac1fc6897f
0
roles/centos
8,086
[ "no_license" ]
[ { "path": "roles/centos/tasks/main.yml", "content": "---\n- name: Install Docker on Ubuntu\n apt:\n name: \"{{ item }}\"\n state: present\n loop:\n - docker.io\n - docker-compose\n\n- name: Create Docker group\n group:\n name: docker\n state: present\n\n- name: Add current user to the d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 567, "all_permissive": false }
ansible_role
SpicyKalamares/CPE232_HOA11
20f9104cb54ab60719309f77f9a2a0ac1fc6897f
0
roles/ubuntu
8,086
[ "no_license" ]
[ { "path": "roles/ubuntu/tasks/main.yml", "content": "---\n- name: Install Docker on Ubuntu\n apt:\n name: \"{{ item }}\"\n state: present\n loop:\n - docker.io\n - docker-compose\n\n- name: Start Docker service\n become: yes\n service:\n name: docker\n state: started\n enabled: yes\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 509, "all_permissive": false }
ansible_role
wtaxco/wtax-dummy-java-service
8373ef0913061758e2feaf5981a91bcbe8f4b60d
0
deploy/roles/deploy_app
8,086
[ "no_license" ]
[ { "path": "deploy/roles/deploy_app/tasks/main.yml", "content": "- name: set facts\n set_fact:\n service_name: \"{{ app.name if config == 'prod' else app.name + '-' + config }}\"\n\n- name: ensure the app temp folders exist and are owned by the app user\n file:\n path: \"{{ item }}\"\n state: dire...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3002, "all_permissive": false }
ansible_role
kormachevs/create_user
939a1a0019f269f1201999b601e5e1216cbb375a
0
roles/create_user
8,086
[ "no_license" ]
[ { "path": "roles/create_user/tasks/main.yml", "content": "---\n - name: Ensure group exists\n group:\n name: '{{ uname }}'\n state: present\n\n - name: Add the user with password\n user:\n name: '{{ uname }}'\n comment: '{{ ucomment }}'\n shell: /bin/bash\n groups: \"{{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 725, "all_permissive": false }
ansible_role
alvise72/Vagrant
5c952e3ed57bbc6c218be48909a6fd9f39b48f60
0
files/control/ansible/roles/vagrant.motd
8,086
[ "no_license" ]
[ { "path": "files/control/ansible/roles/vagrant.motd/tasks/main.yml", "content": "---\n# tasks file for vagrant.motd\n - name: Install custom motd\n template:\n src: files/motd.j2\n dest: /etc/motd\n owner: root\n group: root\n mode: 06...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 492, "all_permissive": false }
ansible_role
alvise72/Vagrant
5c952e3ed57bbc6c218be48909a6fd9f39b48f60
0
files/control/ansible/roles/vagrant.webserver
8,086
[ "no_license" ]
[ { "path": "files/control/ansible/roles/vagrant.webserver/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - vagrant.webserver", "license_type": "no_license", "detected_licenses": [], "size_bytes": 75 }, { "path": "files/control/ansible/roles/vagran...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 6948, "all_permissive": false }
ansible_role
scality/spark
1c497bfc586f498e4053f4f8ceb4dde60c412597
3
ansible/roles/create-sample-config
8,086
[ "no_license" ]
[ { "path": "ansible/roles/create-sample-config/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - create-sample-config\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 }, { "path": "ansible/roles/create-sample-config/READM...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 5444, "all_permissive": false }
ansible_role
scality/spark
1c497bfc586f498e4053f4f8ceb4dde60c412597
3
ansible/roles/run-spark-cluster
8,086
[ "no_license" ]
[ { "path": "ansible/roles/run-spark-cluster/templates/start_spark.sh.j2", "content": "#!/bin/bash\n\n{%- if inventory_hostname in groups['sparkmaster'] %}\n\ndocker run --rm -dit --net=host --name spark-master \\\n --hostname=spark-master \\\n{% for h in groups['sparkmaster'] %}\n --add-host=spark-master...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 6257, "all_permissive": false }
ansible_role
scality/spark
1c497bfc586f498e4053f4f8ceb4dde60c412597
3
ansible/roles/run-spark-sidecar
8,086
[ "no_license" ]
[ { "path": "ansible/roles/run-spark-sidecar/templates/stop_sidecar.sh.j2", "content": "#!/bin/bash\n\ndocker stop spark-sidecar", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "ansible/roles/run-spark-sidecar/templates/sidecar-nginx.conf.j2", "co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2932, "all_permissive": false }
ansible_role
moonsri/Ansible
5dbd659798f9c68323583d8186c1b55eb21ee9d4
0
roles/apache
8,086
[ "no_license" ]
[ { "path": "roles/apache/tasks/install.yml", "content": "---\n# tasks file for apache\n- name: Install httpd\n yum:\n name: httpd\n state: installed\n when: ansible_os_family == \"Redhat\" and ansible_distribution_major_version == 8\n\n- name: start the httpd service\n service:\n name: httpd\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 797, "all_permissive": false }
ansible_role
sfagboho/Class5
8c261926f4024bfa429213b33e592956507e2410
0
ansible-review/roles/sample-apache
8,086
[ "no_license" ]
[ { "path": "ansible-review/roles/sample-apache/tasks/main.yml", "content": "---\n# tasks file for sample-apache\n#\n- name: Install packages\n ansible.builtin.dnf:\n name:\n - httpd\n - mod_ssl\n - php\n state: present\n\n- name: Ensure httpd is running and enabled on boot\n ansible.bu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 652, "all_permissive": false }
ansible_role
sfagboho/Class5
8c261926f4024bfa429213b33e592956507e2410
0
our-class5/roles/myvhost
8,086
[ "no_license" ]
[ { "path": "our-class5/roles/myvhost/tasks/main.yml", "content": "---\n# tasks file for myvhost\n\n- name: Ensure httpd is installed\n ansible.builtin.dnf:\n name: httpd\n state: latest\n\n- name: Ensure httpd is started and enabled\n ansible.builtin.service:\n name: httpd\n state: started\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 767, "all_permissive": false }
ansible_role
sfagboho/Class5
8c261926f4024bfa429213b33e592956507e2410
0
plays/roles/apache
8,086
[ "no_license" ]
[ { "path": "plays/roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n\n- name: httpd is installed\n ansible.builtin.dnf:\n name: httpd\n state: latest\n\n- name: start and enable the httpd and firewalld\n ansible.builtin.service:\n name: \"{{ item }}\"\n state: started\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 566, "all_permissive": false }