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
lou4y/collection
90e1bf89412f1f458a38e2389cc6e10d4bdfec41
0
ainsble/roles/helm
112
[ "no_license" ]
[ { "path": "ainsble/roles/helm/tasks/main.yml", "content": "- name: Download Helm install script\n get_url:\n url: https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3\n dest: /tmp/get_helm.sh\n mode: '0700'\n tags: helm\n\n- name: Run Helm install script\n command: /tmp/get_helm.s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 256, "all_permissive": false }
ansible_role
lou4y/collection
90e1bf89412f1f458a38e2389cc6e10d4bdfec41
0
ainsble/roles/java
112
[ "no_license" ]
[ { "path": "ainsble/roles/java/tasks/main.yml", "content": "---\n- name: Install OpenJDK 17\n apt:\n name: openjdk-17-jdk\n state: present\n update_cache: yes\n\n- name: Ensure JAVA_HOME is set system-wide\n lineinfile:\n path: /etc/environment\n regexp: '^JAVA_HOME='\n line: 'JAVA_HOME=/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 394, "all_permissive": false }
ansible_role
lou4y/collection
90e1bf89412f1f458a38e2389cc6e10d4bdfec41
0
ainsble/roles/jenkins
112
[ "no_license" ]
[ { "path": "ainsble/roles/jenkins/tasks/main.yml", "content": "---\n- name: Add Jenkins APT key\n apt_key:\n url: https://pkg.jenkins.io/debian-stable/jenkins.io.key\n state: present\n\n- name: Add Jenkins APT repository\n apt_repository:\n repo: \"deb https://pkg.jenkins.io/debian-stable binary/\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 514, "all_permissive": false }
ansible_role
lou4y/collection
90e1bf89412f1f458a38e2389cc6e10d4bdfec41
0
ainsble/roles/maven
112
[ "no_license" ]
[ { "path": "ainsble/roles/maven/tasks/main.yml", "content": "---\n- name: Update apt cache\n apt:\n update_cache: yes\n\n- name: Install Maven package\n apt:\n name: maven\n state: present\n\n- name: Ensure Maven is installed and check version\n command: mvn -version\n register: maven_version_ou...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 356, "all_permissive": false }
ansible_role
lou4y/collection
90e1bf89412f1f458a38e2389cc6e10d4bdfec41
0
ainsble/roles/nexus
112
[ "no_license" ]
[ { "path": "ainsble/roles/nexus/tasks/main.yml", "content": "- name: Ensure nexus user exists\n user:\n name: nexus\n home: \"{{ nexus_install_dir }}\"\n shell: /bin/bash\n create_home: no\n system: yes\n ignore_errors: yes\n\n- name: Set ulimit for nexus user\n copy:\n dest: /etc/securi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2209, "all_permissive": false }
ansible_role
lou4y/collection
90e1bf89412f1f458a38e2389cc6e10d4bdfec41
0
ainsble/roles/owasp
112
[ "no_license" ]
[ { "path": "ainsble/roles/owasp/tasks/main.yml", "content": "---\r\n- name: Create OWASP install directory\r\n file:\r\n path: /opt/owasp\r\n state: directory\r\n mode: '0755'\r\n\r\n- name: Download OWASP Dependency-Check CLI\r\n get_url:\r\n url: \"https://github.com/jeremylong/DependencyChec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 868, "all_permissive": false }
ansible_role
lou4y/collection
90e1bf89412f1f458a38e2389cc6e10d4bdfec41
0
ainsble/roles/prometheus
112
[ "no_license" ]
[ { "path": "ainsble/roles/prometheus/tasks/main.yml", "content": "---\n- name: Create prometheus user\n user:\n name: prometheus\n system: yes\n shell: /usr/sbin/nologin\n create_home: no\n\n- name: Download Prometheus archive\n get_url:\n url: \"{{ prometheus_url }}\"\n dest: \"/tmp/prom...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2046, "all_permissive": false }
ansible_role
lou4y/collection
90e1bf89412f1f458a38e2389cc6e10d4bdfec41
0
ainsble/roles/sonarqube
112
[ "no_license" ]
[ { "path": "ainsble/roles/sonarqube/tasks/main.yml", "content": "- name: Install required packages\n apt:\n name:\n - unzip\n - openjdk-17-jdk\n - postgresql\n - postgresql-common\n - wget\n - ufw\n state: present\n update_cache: yes\n\n- name: Enable and start Postgre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4635, "all_permissive": false }
ansible_role
lou4y/collection
90e1bf89412f1f458a38e2389cc6e10d4bdfec41
0
ainsble/roles/trivy
112
[ "no_license" ]
[ { "path": "ainsble/roles/trivy/tasks/main.yml", "content": "- name: Download Trivy binary\n get_url:\n url: \"https://github.com/aquasecurity/trivy/releases/download/v{{ trivy_version }}/trivy_{{ trivy_version }}_Linux-64bit.tar.gz\"\n dest: /tmp/trivy.tar.gz\n mode: '0644'\n\n- name: Create direc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 562, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/awscli
112
[ "no_license" ]
[ { "path": "roles/awscli/templates/credentials.j2", "content": "[default]\r\naws_access_key_id = {{ awscli_aws_access_key_id }}\r\naws_secret_access_key = {{ awscli_aws_secret_access_key }}\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 123 }, { "path": "roles/...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 4790, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/dnf
112
[ "no_license" ]
[ { "path": "roles/dnf/tasks/main.yml", "content": "# Enable the GPG check in the DNF configuration. DNF should always verify the signature before installing a package.\r\n# Main configuration is located in /etc/dnf/dnf.conf file, but you should also check all files in /etc/yum.repos.d directory.\r\n#\r\n- na...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 5262, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/firewalld
112
[ "no_license" ]
[ { "path": "roles/firewalld/tasks/main.yml", "content": "# Make sure that firewalld package is installed\r\n#\r\n- name: Install firewalld\r\n dnf:\r\n name: firewalld\r\n state: latest\r\n tags: [firewalld]\r\n\r\n\r\n\r\n# Make sure that firewalld service is started and enabled on boot\r\n#\r\n- na...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 8161, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/git
112
[ "no_license" ]
[ { "path": "roles/git/defaults/main.yml", "content": "# Version of git that should be installed\r\ngit_version: \"2.47.1\"\r\n\r\n# Location where Git should be installed\r\ngit_install_path: /usr/local/git\r\n\r\n# Location of files for git sources\r\ngit_sources_location: /usr/src\r\n\r\n# User that will b...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3797, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/httpd
112
[ "no_license" ]
[ { "path": "roles/httpd/templates/logrotate.j2", "content": "{% for item in httpd_virtualhosts_with_logrotate %}\r\n{{ httpd_websites_directory }}/{{ item.server_name }}/logs/httpd-*.log\r\n{% endfor %}\r\n{\r\n rotate 30\r\n daily\r\n compress\r\n delaycompress\r\n sharedscripts\r\n missingok\r\n not...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 15, "total_bytes": 38252, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/letsencrypt
112
[ "no_license" ]
[ { "path": "roles/letsencrypt/README.md", "content": "Let's Encrypt role\r\n==================\r\n\r\nThis role will install latest version of Certbot for Let's Encrypt certificates. It will also create certificates for given domains.\r\n\r\nWhat you should know?\r\n---------------------\r\n\r\n**Domains**\r...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2629, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/mongodb
112
[ "no_license" ]
[ { "path": "roles/mongodb/tasks/pymongo.yml", "content": "# Ensure that pymongo and cryptography are installed to successfully execute tasks in this role\r\n#\r\n- name: Install pip command\r\n ansible.builtin.dnf:\r\n name: python3.12-pip\r\n state: latest\r\n tags: [mongodb]\r\n\r\n- name: Install ...
{ "task_files": 9, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 14, "total_bytes": 19297, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/mysql
112
[ "no_license" ]
[ { "path": "roles/mysql/tasks/root-password.yml", "content": "# Make sure that python3.12-PyMySQL lib is installed. Ansible rely on this package for mysql connections\r\n#\r\n- name: Install python3.12-PyMySQL for Ansible\r\n ansible.builtin.dnf:\r\n name: [python3.12, python3.12-PyMySQL]\r\n state: l...
{ "task_files": 7, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 12, "total_bytes": 14937, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/nginx
112
[ "no_license" ]
[ { "path": "roles/nginx/tasks/configure.yml", "content": "# Make sure that dedicated nginx daemon user and group exists\r\n#\r\n- name: Create dedicated nginx group\r\n group:\r\n name: \"{{ nginx_group }}\"\r\n state: present\r\n tags: [nginx]\r\n\r\n- name: Create dedicated nginx user\r\n user:\r\...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 13, "total_bytes": 17636, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/nodejs
112
[ "no_license" ]
[ { "path": "roles/nodejs/defaults/main.yml", "content": "# Node.js version\r\nnodejs_version: \"22.12.0\"\r\n\r\n# Global packages (list of packages installed with -g option)\r\nnodejs_global_packages: []\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 139 }, { ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2241, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/ntp
112
[ "no_license" ]
[ { "path": "roles/ntp/defaults/main.yml", "content": "# Default system timezone\nntp_timezone: \"UTC\"\n\n# List of servers to sync with for chrony\nntp_servers:\n - time.cloudflare.com\n - 0.pool.ntp.org\n - 1.pool.ntp.org\n - 2.pool.ntp.org\n - 3.pool.ntp.org\n", "license_type": "no_license", ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2134, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/openssl
112
[ "no_license" ]
[ { "path": "roles/openssl/tasks/install.yml", "content": "# Install required tools for compiling OpenSSL from source\r\n#\r\n- name: Install required tools for compiling OpenSSL\r\n dnf:\r\n name: [libtool, perl-core, zlib-devel]\r\n state: latest\r\n tags: [openssl]\r\n\r\n\r\n\r\n# Download and unp...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4379, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/php
112
[ "no_license" ]
[ { "path": "roles/php/tasks/extensions.yml", "content": "# Install PECL extensions\r\n# If the server is already configured and PHP is upgraded to next version, from instance 8.1 -> 8.2, extensions must be reinstalled to avoid configuration errors:\r\n# Remove extensions first and install them back in\r\n#\r...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 14236, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/redis
112
[ "no_license" ]
[ { "path": "roles/redis/tasks/install.yml", "content": "# Install required software for compiling Redis from source\r\n#\r\n- name: Install epel-release package\r\n dnf:\r\n name: epel-release\r\n state: latest\r\n tags: [redis]\r\n\r\n- name: Install required tools for compiling Redis\r\n dnf:\r\n ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 10702, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/ssh
112
[ "no_license" ]
[ { "path": "roles/ssh/README.md", "content": "SSH role\r\n==========\r\n\r\nThis role hardens the SSHD config.\r\n\r\n\r\nVariables\r\n---------\r\nHere is the list of configurable variables for this role:\r\n\r\n- `ssh_sshd_default_config_options` is the list of keys and values to be set in the `/etc/ssh/ss...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3359, "all_permissive": false }
ansible_role
blacksaildivision/lamponsteroids
a858dfe49acbb8c5406365d34f5f86cd654539bd
25
roles/users
112
[ "no_license" ]
[ { "path": "roles/users/README.md", "content": "Users role\r\n==========\r\n\r\nThis role is responsible for user and group management. It can create and remove groups, create and remove users. \r\nIt also enables sudo for given users.\r\n\r\nVariables\r\n---------\r\nHere is the list of configurable variabl...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 4691, "all_permissive": false }
ansible_role
andschneider/ansible_configs
d024b52abc64a3d19d81f280ae9fce781998b024
0
roles/common
112
[ "no_license" ]
[ { "path": "roles/common/tasks/security.yml", "content": "# install security configuration\n- name: ensure python packages are installed\n apt:\n name: [\"python3-pip\", \"python3-dev\", \"fail2ban\"]\n update_cache: yes\n become: yes\n\n- name: enable SSH within the firewall\n ufw: rule=allow port=...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1136, "all_permissive": false }
ansible_role
andschneider/ansible_configs
d024b52abc64a3d19d81f280ae9fce781998b024
0
roles/database
112
[ "no_license" ]
[ { "path": "roles/database/tasks/backups.yml", "content": "# set up automatic backups\n- name: create necessary directories\n file:\n path: /home/{{ deploy_user }}/{{ item }}\n state: directory\n with_items: \n - backups\n - scripts\n - logs\n\n- name: write backup script\n template:\n s...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 11871, "all_permissive": false }
ansible_role
andschneider/ansible_configs
d024b52abc64a3d19d81f280ae9fce781998b024
0
roles/programs
112
[ "no_license" ]
[ { "path": "roles/programs/tasks/vim.yml", "content": "# install latest Vim from ppa\n- name: add latest Vim ppa\n become: yes\n apt_repository:\n repo: ppa:jonathonf/vim\n\n- name: install latest Vim\n become: yes\n apt:\n name: [\"vim\"]\n update_cache: yes\n state: latest\n\n- name: update...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 8066, "all_permissive": false }
ansible_role
andschneider/ansible_configs
d024b52abc64a3d19d81f280ae9fce781998b024
0
roles/webserver
112
[ "no_license" ]
[ { "path": "roles/webserver/tasks/security.yml", "content": "# install security configuration\n- name: enable HTTP\n ufw: rule=allow port=80\n become: yes\n\n- name: enable HTTPS\n ufw: rule=allow port=443\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1598, "all_permissive": false }
ansible_role
BenoitLeveque/ansible-mac-dev-install
5b8b43eb0f6c8fb298950a77f2c041b93ce7e36c
2
roles/apache
112
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n- name: enable apache vhost module\n lineinfile: >\n dest=/etc/apache2/httpd.conf\n regexp='^LoadModule vhost_alias_module libexec/apache2/mod_vhost_alias.so'\n insertafter='#LoadModule vhost_alias_module libexec/apache2/mod_vhost_alias.so'...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1204, "all_permissive": false }
ansible_role
BenoitLeveque/ansible-mac-dev-install
5b8b43eb0f6c8fb298950a77f2c041b93ce7e36c
2
roles/mariadb
112
[ "no_license" ]
[ { "path": "roles/mariadb/tasks/main.yml", "content": "---\n- name: install\n homebrew: >\n name=mariadb\n state=present\n\n- name: mysql.server start\n shell: mysql.server start\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
BenoitLeveque/ansible-mac-dev-install
5b8b43eb0f6c8fb298950a77f2c041b93ce7e36c
2
roles/node
112
[ "no_license" ]
[ { "path": "roles/node/tasks/main.yml", "content": "---\n- name: install\n homebrew: >\n name=node\n state=present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 66, "all_permissive": false }
ansible_role
BenoitLeveque/ansible-mac-dev-install
5b8b43eb0f6c8fb298950a77f2c041b93ce7e36c
2
roles/php
112
[ "no_license" ]
[ { "path": "roles/php/handlers/main.yml", "content": "---\n- name: restart apache\n command: /usr/sbin/apachectl restart\n sudo: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "roles/php/templates/zzz-config.ini.j2", "content": "[PHP]\nm...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1190, "all_permissive": false }
ansible_role
BenoitLeveque/ansible-mac-dev-install
5b8b43eb0f6c8fb298950a77f2c041b93ce7e36c
2
roles/vim
112
[ "no_license" ]
[ { "path": "roles/vim/tasks/main.yml", "content": "---\n- name: install\n homebrew: >\n name=vim\n 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
BenoitLeveque/ansible-mac-dev-install
5b8b43eb0f6c8fb298950a77f2c041b93ce7e36c
2
roles/zsh
112
[ "no_license" ]
[ { "path": "roles/zsh/tasks/main.yml", "content": "---\n- name: clone\n git: >\n repo=https://github.com/robbyrussell/oh-my-zsh.git\n dest={{ ansible_env.HOME }}/.oh-my-zsh\n update=no\n sudo: no\n\n- name: template\n shell: >\n cp {{ ansible_env.HOME }}/.oh-my-zsh/templates/zshrc.zsh-template...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 547, "all_permissive": false }
ansible_role
y-trudeau/benchscripts
07db7e475419b0318addbaca20ecbfd7fdf3afdf
0
Ansible/roles/linux
112
[ "no_license" ]
[ { "path": "Ansible/roles/linux/tasks/main.yml", "content": "---\n\n- name: Install gnupg \n apt:\n name: gnupg\n state: latest\n\n- name: Install the percona repo package\n apt:\n deb: https://repo.percona.com/apt/percona-release_latest.generic_all.deb \n state: present\n\n- name: Enable the...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 662, "all_permissive": false }
ansible_role
y-trudeau/benchscripts
07db7e475419b0318addbaca20ecbfd7fdf3afdf
0
Ansible/roles/mysql
112
[ "no_license" ]
[ { "path": "Ansible/roles/mysql/templates/setup_replication.sh.j2", "content": "mysqldump -h {{ groups['mysql'] | map('extract', hostvars, ['ansible_default_ipv4','address']) | first }} \\\n --single-transaction --all-databases --triggers --routines --events -u {{ sysbench_user }} -p{{ sysbench_password }}...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3333, "all_permissive": false }
ansible_role
y-trudeau/benchscripts
07db7e475419b0318addbaca20ecbfd7fdf3afdf
0
Ansible/roles/pmm
112
[ "no_license" ]
[ { "path": "Ansible/roles/pmm/tasks/main.yml", "content": "---\n\n- name: copy the installation script \n copy:\n src: files/get-pmm.sh\n dest: /tmp/get-pmm.sh\n owner: root\n group: root\n mode: 0700\n\n- name: Call installation script\n shell: bash /tmp/get-pmm.sh\n\n- name: Enable the pt ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 11327, "all_permissive": false }
ansible_role
paulkniepper/hello-codetails
beee977e346be56804f53c4834544eb644e7ce34
0
roles/common_setup
112
[ "no_license" ]
[ { "path": "roles/common_setup/meta/main.yml", "content": "---\ngalaxy_info:\n author: <NAME>. <NAME>\n description: Ansible role to common environment setup.\n license: MIT\n min_ansible_version: 2.1\n platforms:\n - name: Ubuntu\n versions:\n - xenial\n - name: Centos\n versions:\n - 7\n...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1681, "all_permissive": false }
ansible_role
paulkniepper/hello-codetails
beee977e346be56804f53c4834544eb644e7ce34
0
roles/deployment
112
[ "no_license" ]
[ { "path": "roles/deployment/defaults/main.yml", "content": "project: []\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 12 }, { "path": "roles/deployment/tasks/main.yml", "content": "---\n- include: debian_deploy.yml\n when: ansible_os_family == 'Debian'\n\n...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1652, "all_permissive": false }
ansible_role
paulkniepper/hello-codetails
beee977e346be56804f53c4834544eb644e7ce34
0
roles/nginx
112
[ "no_license" ]
[ { "path": "roles/nginx/tasks/debian_setup.yml", "content": "---\n- name: Copy last version of nginx.conf\n template:\n src: nginx.conf.j2\n dest: /etc/nginx/nginx.conf\n notify: restart nginx\n tags:\n - nginx-setup\n\n- name: Ensure default site is absent\n file: \n name: /etc/nginx/conf.d/de...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 4780, "all_permissive": false }
ansible_role
michaelgruczel/build-you-own-paas-conference-resources
8f25d4ef8805e4c67619a41c619496ac43233863
1
ansible-examples/roles/install-docker
112
[ "no_license" ]
[ { "path": "ansible-examples/roles/install-docker/tasks/main.yml", "content": "--- \n\n- name: Get uname\n command: uname -r\n register: os_uname\n\n- name: install linux-image-extra-{{os_uname.stdout}}\n apt:\n name: linux-image-extra-{{os_uname.stdout}}\n state: present\n update_cache: yes\n i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1264, "all_permissive": false }
ansible_role
michaelgruczel/build-you-own-paas-conference-resources
8f25d4ef8805e4c67619a41c619496ac43233863
1
ansible-examples/roles/install-mesos
112
[ "no_license" ]
[ { "path": "ansible-examples/roles/install-mesos/tasks/main.yml", "content": "--- \n\n- name: stop all docker containers\n command: \"docker stop $(docker ps -a -q)\"\n ignore_errors: yes\n\n- name: remove all docker containers\n command: \"docker rm $(docker ps -a -q)\"\n ignore_errors: yes\n\n- name: s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4135, "all_permissive": false }
ansible_role
PeppyHare/toolbox
c6c0c3de3f48f9eca909aaddb6603c9875503161
0
ansible/superlists/roles/ansible-role-flask
112
[ "no_license" ]
[ { "path": "ansible/superlists/roles/ansible-role-flask/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - ansible-role-flask", "license_type": "no_license", "detected_licenses": [], "size_bytes": 76 }, { "path": "ansible/superlists/roles/ansible-ro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 970, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/ios_bgp_router
112
[ "no_license" ]
[ { "path": "roles/ios_bgp_router/templates/bgp_router.j2", "content": "\nrouter bgp {{ bgp.as_number}}\n !\n bgp router-id {{ bgp.router_id }}\n bgp log-neighbor-changes\n !\n {% for network in bgp.networks %}\n network {{ network.network }} mask {{ network.mask }}\n {% endfor %}\n\n {% for n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 614, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/ios_common
112
[ "no_license" ]
[ { "path": "roles/ios_common/templates/csr_base_template.j2", "content": "hostname {{ inventory_hostname }}\nboot-start-marker\nboot-end-marker\n!\n\n{%- for vrf in vrfs %}\nvrf definition {{ vrf }}\n{%- endfor %}\n\n!\n!\n!\nlicense accept end user agreement\nlicense boot level premium\n!\n!\nno aaa new-mod...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1943, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/ios_xr_bgp_router
112
[ "no_license" ]
[ { "path": "roles/ios_xr_bgp_router/templates/bgp_router.j2", "content": "\nrouter bgp {{ bgp.as_number }}\n bgp router-id {{ bgp.router_id }}\n!\n address-family ipv4 unicast\n {% for network in bgp.networks %}\n network {{ network.network }} {{ network.mask }}\n {% endfor %}\n !\n {% for neighbor in bgp....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 600, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/ios_xr_common
112
[ "no_license" ]
[ { "path": "roles/ios_xr_common/tasks/main.yml", "content": "---\n\n- name: Generate SSH Key\n telnet:\n user: cisco\n password: <PASSWORD>\n login_prompt: \"Username: \"\n prompts:\n - \"[>|#]\"\n - \": \"\n command:\n - crypto key generate rsa\n - \"2048\"\n - term ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1692, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/ios_xr_route_reflector
112
[ "no_license" ]
[ { "path": "roles/ios_xr_route_reflector/templates/route_reflector.j2", "content": "\nrouter bgp {{ bgp.as_number }}\n bgp cluster-id {{ bgp.cluster_id }}\n address-family ipv4 unicast\n !\n {% for rrc in bgp.rr_clients %}\n neighbor {{ rrc.peer_ip }}\n remote-as {{ rrc.remote_as }}\n update-source {{ rrc....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 518, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/ios_xr_telemetry
112
[ "no_license" ]
[ { "path": "roles/ios_xr_telemetry/templates/xr_telemetry_template.j2", "content": "telemetry model-driven\n destination-group PIPELINE\n address-family ipv4 {{ telemetry_host }} port {{ telemetry_port }}\n encoding self-describing-gpb\n protocol tcp\n !\n !\n sensor-group CPU\n sensor-path Cisco-IOS-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1924, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/nxos_access_switch
112
[ "no_license" ]
[ { "path": "roles/nxos_access_switch/tasks/main.yml", "content": "---\n\n- name: Enable Features\n tags: features\n with_items:\n - interface-vlan\n nxos_feature:\n feature: \"{{ item }}\"\n state: enabled\n\n- name: Management SVI's are present\n with_items: \"{{ svi_interfaces }}\"\n nxos_int...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 771, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/nxos_common
112
[ "no_license" ]
[ { "path": "roles/nxos_common/templates/nxos_base_template.j2", "content": "\n\n{% for feature in features %}\nfeature {{ feature }}\n{% endfor %}\n\nhostname {{ hostname }}\nip domain-name {{ domain_name }}\n\nsnmp-server community {{ snmp_ro }} ro\nsnmp-server community {{ snmp_rw }} rw\n\nlogging server {...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 559, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/nxos_first_hop
112
[ "no_license" ]
[ { "path": "roles/nxos_first_hop/tasks/main.yml", "content": "---\n\n- name: Enable Features\n tags: [features, dgw]\n with_items:\n - interface-vlan\n - hsrp\n nxos_feature:\n provider:\n host: \"{{ ansible_host }}\"\n transport: nxapi\n feature: \"{{ item }}\"\n state: enabled\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1034, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/nxos_ospf_router
112
[ "no_license" ]
[ { "path": "roles/nxos_ospf_router/meta/main.yml", "content": "---\n\ndependencies:\n - role: nxos_router\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 41 }, { "path": "roles/nxos_ospf_router/tasks/main.yml", "content": "---\n\n- name: Enable Features\n ta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 731, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/nxos_router
112
[ "no_license" ]
[ { "path": "roles/nxos_router/tasks/main.yml", "content": "---\n\n- name: Configure Layer 3 Interfaces\n tags: [layer3]\n with_items: \"{{ l3_interfaces }}\"\n nxos_interface:\n provider:\n host: \"{{ ansible_host }}\"\n transport: nxapi\n interface: \"{{ item.interface }}\"\n mode: lay...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 600, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/nxos_switch
112
[ "no_license" ]
[ { "path": "roles/nxos_switch/defaults/main.yml", "content": "---\nusername: cisco\npassword: <PASSWORD>\n\nenable_password: <PASSWORD>\nenable_secret: cisco\n\ntrunk_ports: []\naccess_ports: []\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 125 }, { "path": "rol...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1534, "all_permissive": false }
ansible_role
kecorbin/ansible-netdevops-demo
99b35d232c43127a58407e3bbde99e3de0109f6d
0
roles/nxos_vpc_domain
112
[ "no_license" ]
[ { "path": "roles/nxos_vpc_domain/tasks/main.yml", "content": "---\n\n- name: Enable Features\n with_items:\n - vpc\n - lacp\n nxos_feature:\n provider:\n host: \"{{ ansible_host }}\"\n transport: nxapi\n feature: \"{{ item }}\"\n state: enabled\n\n- name: Configure VPC\n tags: vp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1580, "all_permissive": false }
ansible_role
sgoryunov/epam_ansible_task3
f4665255ef52755df2980ba7c1065b7753b85230
0
roles/httpd
112
[ "no_license" ]
[ { "path": "roles/httpd/tasks/main.yml", "content": "---\n# tasks file for httpd\n- name: Ensure httpd and firewalld are presented\n package:\n name: \"{{ item }}\"\n state: present\n with_items: \"{{ services }}\"\n\n- name: Ensure services is started\n service:\n name: \"{{ item }}\"\n state...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 666, "all_permissive": false }
ansible_role
sgoryunov/epam_ansible_task3
f4665255ef52755df2980ba7c1065b7753b85230
0
roles/vsftpd
112
[ "no_license" ]
[ { "path": "roles/vsftpd/vars/main.yml", "content": "---\n# vars file for vsftpd\nservices:\n - vsftpd\n - firewalld\n\ndirs:\n pub: \n dir: /var/ftp/pub \n mode: 754\n setype: public_content_t\n upload: \n dir: /var/ftp/pub/upload\n mode: 755\n setype: public_content_rw_t\n \nvsftpd_an...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1502, "all_permissive": false }
ansible_role
racinrandall/satbare
03d7657e7e0e48b3f1ec82aef5b6cd81d6b02301
0
roles/sat-deploy-baremetal
112
[ "no_license" ]
[ { "path": "roles/sat-deploy-baremetal/handlers/main.yml", "content": "---\n# handlers file for sat-deploy-baremetal\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 }, { "path": "roles/sat-deploy-baremetal/tasks/main.yml", "content": "---\n- name: Tell Sat ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1239, "all_permissive": false }
ansible_role
os-migrate/vmware-migration-kit
bedbeb6529320b27bdb07c3b4f797df18dec3c66
8
roles/conversion_host
112
[ "permissive" ]
[ { "path": "roles/conversion_host/README.md", "content": "The role conversion_host makes sure that all requirements are installed and configured to the hosts designated as conversion hosts in order to be able to run the migration.\n", "license_type": "permissive", "detected_licenses": [ "Apache...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3880, "all_permissive": true }
ansible_role
os-migrate/vmware-migration-kit
bedbeb6529320b27bdb07c3b4f797df18dec3c66
8
roles/convert_metadata
112
[ "permissive" ]
[ { "path": "roles/convert_metadata/templates/import_workloads.json.j2", "content": "{\n \"vm_name\": \"{{ vm_name }}\",\n \"openstack\": {\n \"flavor_name_or_uuid\": \"{{ flavor_name_or_uuid }}\",\n \"openstack_private_network\": \"\",\n \"nics\": {% if convert_metadata_nics %}\"{{ conve...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4447, "all_permissive": true }
ansible_role
os-migrate/vmware-migration-kit
bedbeb6529320b27bdb07c3b4f797df18dec3c66
8
roles/export_metadata
112
[ "permissive" ]
[ { "path": "roles/export_metadata/tasks/vm_info.yml", "content": "---\n- name: Gather VM info\n community.vmware.vmware_vm_info:\n validate_certs: false\n hostname: \"{{ vcenter_hostname }}\"\n username: \"{{ vcenter_username }}\"\n password: \"{{ <PASSWORD> }}\"\n vm_name: \"{{ vm_name }}\"\...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 6308, "all_permissive": true }
ansible_role
os-migrate/vmware-migration-kit
bedbeb6529320b27bdb07c3b4f797df18dec3c66
8
roles/import_workloads
112
[ "permissive" ]
[ { "path": "roles/import_workloads/tasks/teardown.yml", "content": "# Cleanup\n- name: Delete OS instance\n openstack.cloud.server:\n state: absent\n name: \"{{ instance_uuid }}\"\n cloud: \"{{ dst_cloud }}\"\n when:\n - delete_os_instance|default(true)|bool\n - instance_uuid is defined\n\n-...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 19211, "all_permissive": true }
ansible_role
os-migrate/vmware-migration-kit
bedbeb6529320b27bdb07c3b4f797df18dec3c66
8
roles/prelude
112
[ "permissive" ]
[ { "path": "roles/prelude/defaults/main.yml", "content": "prelude_host_entries: []\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 25 }, { "path": "roles/prelude/tasks/main.yml", "content": "- name: Add OpenShift and OpenStack entries t...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 761, "all_permissive": true }
ansible_role
alimoli/udacity-superpower
d68711759ab058b98146d2ad11c0d6a5234735a6
0
.circleci/ansible/roles/deploy
112
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "- name: \"Create app folder\"\n become: true\n file:\n path: /home/ubuntu/app\n state: directory\n\n- name: \"Copy backend build to server\"\n become: true\n unarchive:\n src: /tmp/workspace/backend.tar.gz\n dest: /home/u...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1171, "all_permissive": false }
ansible_role
workerwork/deploy-5gc
71a05cc7d6c2d6639743e9307de5b4305e9e6485
0
ansible/playbooks/roles/install_5gc
110
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/install_5gc/tasks/main.yaml", "content": "# Copyright 2019 baicells Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# htt...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 5936, "all_permissive": false }
ansible_role
jmtx1020/kitchen-yansible-pusher
05dbbe3ec26308b340ee98328a05d1d63664a47f
7
test/integration/ansible/roles/ansible_test
110
[ "no_license" ]
[ { "path": "test/integration/ansible/roles/ansible_test/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - ansible_test\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "test/integration/ansible/roles/ansible_...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1763, "all_permissive": false }
ansible_role
digitalake/kubernetes-the-hard-way-do-ansible
43e199c324427348ffd2879d80882144054ecb56
1
ansible/roles/api-load-balancer
110
[ "no_license" ]
[ { "path": "ansible/roles/api-load-balancer/tasks/main.yml", "content": "---\n# tasks file for api-load-balancer\n- name: Update apt package cache\n ansible.builtin.apt:\n update_cache: yes\n become: yes\n tags: nginx\n\n- name: Install the NginX to balance the KubeAPI requests\n ansible.builtin.apt:\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1291, "all_permissive": false }
ansible_role
digitalake/kubernetes-the-hard-way-do-ansible
43e199c324427348ffd2879d80882144054ecb56
1
ansible/roles/control-plane-bootstrap
110
[ "no_license" ]
[ { "path": "ansible/roles/control-plane-bootstrap/tasks/configure-hosts.yml", "content": "---\n- name: Add workers to /etc/hosts for masters\n ansible.builtin.lineinfile:\n path: /etc/hosts\n line: \"{{ hostvars[item]['ansible_host_private'] }} {{ hostvars[item]['inventory_hostname'] }} # Added by An...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 5364, "all_permissive": false }
ansible_role
digitalake/kubernetes-the-hard-way-do-ansible
43e199c324427348ffd2879d80882144054ecb56
1
ansible/roles/delegating
110
[ "no_license" ]
[ { "path": "ansible/roles/delegating/vars/main.yml", "content": "---\n# vars file for cert-delegate\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "ansible/roles/delegating/tasks/main.yml", "content": "---\n- name: Copy certificates and privat...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1732, "all_permissive": false }
ansible_role
digitalake/kubernetes-the-hard-way-do-ansible
43e199c324427348ffd2879d80882144054ecb56
1
ansible/roles/etcd-bootstrap
110
[ "no_license" ]
[ { "path": "ansible/roles/etcd-bootstrap/vars/main.yml", "content": "---\n# vars file for roles/etcd-bootstrap\netcdBinaryURL: \"https://github.com/etcd-io/etcd/releases/download/v3.4.15/etcd-v3.4.15-linux-amd64.tar.gz\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 147 ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3262, "all_permissive": false }
ansible_role
digitalake/kubernetes-the-hard-way-do-ansible
43e199c324427348ffd2879d80882144054ecb56
1
ansible/roles/generating
110
[ "no_license" ]
[ { "path": "ansible/roles/generating/tasks/generate-enc-key.yml", "content": "---\n- name: Generate an encryption key\n set_fact:\n encryption_key: \"{{ lookup('community.general.random_string', length=32) | b64encode }}\"\n\n- name: Generate encryption-config.yaml encryption config file\n ansible.built...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 8476, "all_permissive": false }
ansible_role
digitalake/kubernetes-the-hard-way-do-ansible
43e199c324427348ffd2879d80882144054ecb56
1
ansible/roles/tools-setup
110
[ "no_license" ]
[ { "path": "ansible/roles/tools-setup/vars/main.yml", "content": "---\n# vars file for tools_setup\ncfsslURL: \"https://pkg.cfssl.org/R1.2/cfssl_linux-amd64\"\n\ncfssljsonURL: \"https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64\"\n\nkubectlVersion: 1.21.0", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 905, "all_permissive": false }
ansible_role
digitalake/kubernetes-the-hard-way-do-ansible
43e199c324427348ffd2879d80882144054ecb56
1
ansible/roles/workers-bootstrap
110
[ "no_license" ]
[ { "path": "ansible/roles/workers-bootstrap/templates/10-bridge.conf.j2", "content": "{\n \"cniVersion\": \"0.4.0\",\n \"name\": \"bridge\",\n \"type\": \"bridge\",\n \"bridge\": \"cnio0\",\n \"isGateway\": true,\n \"ipMasq\": true,\n \"ipam\": {\n \"type\": \"host-local\",\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 7595, "all_permissive": false }
ansible_role
diatmpravin/ansible-lamp-stack
3c47ca0b867c57f157b557e17928ca0acac4fa21
0
roles/common
110
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: System - Install base packages\n apt: pkg={{item}} state=present\n sudo: yes\n with_items:\n - git\n - screen\n - traceroute\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 139 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 139, "all_permissive": false }
ansible_role
diatmpravin/ansible-lamp-stack
3c47ca0b867c57f157b557e17928ca0acac4fa21
0
roles/database
110
[ "no_license" ]
[ { "path": "roles/database/tasks/main.yml", "content": "- name: System - Install MySQL\n apt: pkg={{item}} state=present\n sudo: yes\n with_items:\n - mysql-server\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 110 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 110, "all_permissive": false }
ansible_role
diatmpravin/ansible-lamp-stack
3c47ca0b867c57f157b557e17928ca0acac4fa21
0
roles/webserver
110
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "- name: System - Install Apache\n apt: pkg={{item}} state=present\n sudo: yes\n with_items:\n - apache2\n - php5\n - php5-mysql\n - php5-memcache\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 154 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 154, "all_permissive": false }
ansible_role
XBS-Nathan/ansible-magento
6f25181fae9afb5f7e2811f84d9640813b04e8f2
0
roles/init
110
[ "no_license" ]
[ { "path": "roles/init/tasks/main.yml", "content": "---\n - name: Update apt\n sudo: yes\n apt: update_cache=yes\n\n - name: Install basic system packages\n sudo: yes\n apt: pkg={{ item }} state=latest\n with_items:\n - curl\n - wget\n - build-essential\n - git\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 456, "all_permissive": false }
ansible_role
XBS-Nathan/ansible-magento
6f25181fae9afb5f7e2811f84d9640813b04e8f2
0
roles/mysql
110
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n- name: Install MySQL server\n sudo: yes\n apt: pkg=mariadb-server state=latest\n\n- name: Add root user from anywhere to MySQL\n command: mysql -u root -e \"GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'; FLUSH PRIVILEGES;\"\n\n- name: Add deploy DB u...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 491, "all_permissive": false }
ansible_role
XBS-Nathan/ansible-magento
6f25181fae9afb5f7e2811f84d9640813b04e8f2
0
roles/nginx
110
[ "no_license" ]
[ { "path": "roles/nginx/templates/magento.tpl", "content": "server {\n listen 80;\n\n server_name {{ server_name }};\n root {{ doc_root }};\n\n access_log /var/log/nginx/{{ server_name }}.access.log;\n error_log /var/log/nginx/{{ server_name }}.error.log error;\n\n location = /js/ind...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1612, "all_permissive": false }
ansible_role
XBS-Nathan/ansible-magento
6f25181fae9afb5f7e2811f84d9640813b04e8f2
0
roles/php-cli
110
[ "no_license" ]
[ { "path": "roles/php-cli/tasks/main.yml", "content": "---\n- name: Install PHP5-CLI\n sudo: yes\n apt: package=php-cli state=latest\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 78, "all_permissive": false }
ansible_role
XBS-Nathan/ansible-magento
6f25181fae9afb5f7e2811f84d9640813b04e8f2
0
roles/php-fpm
110
[ "no_license" ]
[ { "path": "roles/php-fpm/tasks/main.yml", "content": "---\n- name: Install PHP-FPM\n sudo: yes\n apt: package=php-fpm state=latest\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 77 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 77, "all_permissive": false }
ansible_role
XBS-Nathan/ansible-magento
6f25181fae9afb5f7e2811f84d9640813b04e8f2
0
roles/redis
110
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yml", "content": "---\n\n- name: Add ppa repository\n sudo: yes\n apt_repository: repo=ppa:chris-lea/redis-server\n\n- name: Install redis\n sudo: yes\n apt: pkg=redis-server state=latest\n", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 167, "all_permissive": false }
ansible_role
manaki-naoe/ansible_docker
4f8ea7758d07e32bf83108589b4b10063ad283cf
0
roles/common
110
[ "no_license" ]
[ { "path": "roles/common/tasks/firewall.yml", "content": "- name: Install packages required for SELinux operation\n yum:\n name: libselinux-python\n state: present\n tags:\n - firewall\n\n- name: Disable SELinux\n selinux:\n state: disabled\n tags:\n - firewall\n\n- name: Disable firewall\...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2452, "all_permissive": false }
ansible_role
manaki-naoe/ansible_docker
4f8ea7758d07e32bf83108589b4b10063ad283cf
0
roles/docker
110
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Install yum-utils\n yum:\n name: yum-utils\n state: installed\n tags:\n - docker\n\n- name: Adding a repository\n template:\n src: \"docker-ce.repo.j2\"\n dest: /etc/yum.repos.d/docker-ce.repo\n owner: root\n mode: 0644\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1033, "all_permissive": false }
ansible_role
yyamada12/isucon9-qualify
3475b9e639e6a60195d20cc8b1fccc0a531901b8
0
provisioning/roles/external.deploy
110
[ "no_license" ]
[ { "path": "provisioning/roles/external.deploy/tasks/main.yml", "content": "- name: Create isucari directory\n become: yes\n become_user: isucon\n file:\n path=/home/isucon/isucari\n state=directory\n\n- name: Deploy isucari\n become: yes\n synchronize:\n src: ../../../../\n dest: /home/isuc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 719, "all_permissive": false }
ansible_role
yyamada12/isucon9-qualify
3475b9e639e6a60195d20cc8b1fccc0a531901b8
0
provisioning/roles/webapp.deploy
110
[ "no_license" ]
[ { "path": "provisioning/roles/webapp.deploy/tasks/main.yml", "content": "- name: Create isucari directory\n become: yes\n become_user: isucon\n file:\n path=/home/isucon/isucari\n state=directory\n\n- name: Deploy isucari\n become: yes\n synchronize:\n src: ../../../../webapp/\n dest: /home...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 605, "all_permissive": false }
ansible_role
snsinfu/illil-dokku
09c93579369edde71859820945c6658695cb2124
0
roles/docker
110
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "# https://docs.docker.com/install/linux/docker-ce/debian/\n\n- name: docker repository key is registered\n apt_key:\n id: <KEY>\n url: https://download.docker.com/linux/debian/gpg\n state: present\n\n- name: docker repository is registered\n ap...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 549, "all_permissive": false }
ansible_role
snsinfu/illil-dokku
09c93579369edde71859820945c6658695cb2124
0
roles/dokku
110
[ "no_license" ]
[ { "path": "roles/dokku/tasks/main.yml", "content": "- name: packagecloud repository key is registered\n apt_key:\n id: 418a7f2fb0e1e6e7eabf6fe8c2e73424d59097ab\n url: https://packagecloud.io/gpg.key\n state: present\n\n- name: dokku repository is registered\n apt_repository:\n repo: deb https:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1338, "all_permissive": false }
ansible_role
snsinfu/illil-dokku
09c93579369edde71859820945c6658695cb2124
0
roles/firewall
110
[ "no_license" ]
[ { "path": "roles/firewall/tasks/main.yml", "content": "# IPv4\n\n- name: ipv4_firewall service is installed\n copy:\n src: config/ipv4_firewall.service\n dest: /etc/systemd/system/\n\n- name: ipv4_firewall script is installed\n template:\n src: config/ipv4_firewall.sh.j2\n dest: /etc/ipv4_fire...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1152, "all_permissive": false }
ansible_role
snsinfu/illil-dokku
09c93579369edde71859820945c6658695cb2124
0
roles/hostname
110
[ "no_license" ]
[ { "path": "roles/hostname/tasks/main.yml", "content": "- name: hostname is set\n hostname:\n name: \"{{ dokku_host }}\"\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
snsinfu/illil-dokku
09c93579369edde71859820945c6658695cb2124
0
roles/mackerel
110
[ "no_license" ]
[ { "path": "roles/mackerel/tasks/main.yml", "content": "- name: mackerel repository key is registered\n apt_key:\n id: 9dd9479d06baa71322803ac166332b78417e73ea\n url: https://mackerel.io/file/cert/GPG-KEY-mackerel-v2\n state: present\n\n- name: mackerel repository is registered\n apt_repository:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 658, "all_permissive": false }
ansible_role
snsinfu/illil-dokku
09c93579369edde71859820945c6658695cb2124
0
roles/nginx
110
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "- name: nginx ssl certificate is present\n copy:\n src: \"{{ item }}\"\n dest: /etc/nginx/ssl/\n with_items:\n - certs/origin.cert\n - certs/origin.key\n notify:\n - reload nginx\n\n- name: nginx ssl reverse proxy is configured\n copy:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 666, "all_permissive": false }
ansible_role
snsinfu/illil-dokku
09c93579369edde71859820945c6658695cb2124
0
roles/packages
110
[ "no_license" ]
[ { "path": "roles/packages/tasks/main.yml", "content": "- name: apt cache is up to date\n apt:\n update_cache: yes\n cache_valid_time: 3600\n\n- name: apt packages are up to date\n apt:\n upgrade: yes\n\n- name: apt https repository requirements are satisfied\n apt:\n name: \"{{ item }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 374, "all_permissive": false }
ansible_role
snsinfu/illil-dokku
09c93579369edde71859820945c6658695cb2124
0
roles/ssh-server
110
[ "no_license" ]
[ { "path": "roles/ssh-server/tasks/main.yml", "content": "- name: sshd is configured\n template:\n src: config/sshd_config.j2\n dest: /etc/ssh/sshd_config\n notify:\n - restart sshd\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 130, "all_permissive": false }
ansible_role
fmarcelinoPT/mpt4dev
06fd980c85916baec8e0892dd6d74e63d56c1d3a
0
roles/apt-packages-desktop
110
[ "no_license" ]
[ { "path": "roles/apt-packages-desktop/tasks/main.yml", "content": "---\n# tasks file for sys-package-manager-packages-desktop\n- name: Install `apt` packages 4 Desktop\n become: true\n ansible.builtin.apt:\n pkg:\n - snapd\n - yakuake\n - keepassxc\n - filezilla\n - krita\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 352, "all_permissive": false }
ansible_role
fmarcelinoPT/mpt4dev
06fd980c85916baec8e0892dd6d74e63d56c1d3a
0
roles/certs_hypervisor
110
[ "no_license" ]
[ { "path": "roles/certs_hypervisor/tasks/main.yml", "content": "---\n# tasks file for certs_hypervisors\n- name: Touch files to be created\n when: install_certificates\n become: true\n become_user: root\n file:\n path: \"{{ touch_file }}\"\n state: touch\n owner: root\n group: www-data\n m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2723, "all_permissive": false }
ansible_role
fmarcelinoPT/mpt4dev
06fd980c85916baec8e0892dd6d74e63d56c1d3a
0
roles/desktop-apps
110
[ "no_license" ]
[ { "path": "roles/desktop-apps/tasks/install_redhat.yml", "content": "- name: Install dependencies\n ansible.builtin.dnf:\n name:\n - wget\n - gpg\n state: present\n become: true\n\n- name: Install BetterBird on Red Hat\n block:\n - name: Ensure Flatpak is installed\n become: true\...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 5815, "all_permissive": false }
ansible_role
fmarcelinoPT/mpt4dev
06fd980c85916baec8e0892dd6d74e63d56c1d3a
0
roles/hello
110
[ "no_license" ]
[ { "path": "roles/hello/tasks/main.yml", "content": "---\n# tasks file for hello\n- name: hello\n shell: echo 'hello world'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 69 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 69, "all_permissive": false }