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
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/docker
7,989
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yaml", "content": "#\n# Docker\n#\n\n- name: \"docker: install\"\n apt:\n name: \"{{ packages }}\"\n state: latest\n install_recommends: yes\n vars:\n # See https://docs.docker.com/engine/install/ubuntu/\n packages:\n - docker-ce\n - docker-ce-cl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 669, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/dotfiles
7,989
[ "no_license" ]
[ { "path": "roles/dotfiles/files/inputrc", "content": "#\n# Make terminal region behave as emacs.\n#\n# Most emacs keybindings already work:\n# https://catonmat.net/ftp/readline-emacs-editing-mode-cheat-sheet.pdf\n#\n# Note: `bind -p` shows all bindings\n# Note: global settings in `/etc/inputrc`\n#\n\n# Ct...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2877, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/emacs
7,989
[ "no_license" ]
[ { "path": "roles/emacs/scripts/build-emacs.sh", "content": "#!/bin/bash\n\nset -e\n\nbuild_dir=${build_dir:-/opt/emacs-src}\nbuild_log=${build_dir}/build.log\ncompile_flags=${compile_flags:-}\n\nscript=\"$(basename ${0})\"\n\nfunction die {\n echo \"error: ${1}\"\n exit 1\n}\n\nfunction log {\n ech...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 7632, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/email
7,989
[ "no_license" ]
[ { "path": "roles/email/scripts/build-mu.sh", "content": "#!/bin/bash\n\nbuild_dir=${build_dir:-/opt/mu-src}\nscript=\"$(basename ${0})\"\nrepo_url=https://github.com/djcb/mu\n\nfunction die {\n echo \"error: ${1}\"\n exit 1\n}\n\nfunction log {\n echo -e \"\\e[32m[${script}] ${1}\\e[39m\"\n}\n\nbui...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2695, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/firewall
7,989
[ "no_license" ]
[ { "path": "roles/firewall/tasks/main.yaml", "content": "- name: \"ufw: deny all and enable\"\n ufw:\n state: enabled\n direction: incoming\n policy: deny\n tags:\n - Security\n - firewall\n - ufw\n\n- name: \"ufw: allow ssh access (port 22)\"\n ufw:\n rule: allow\n direction: in\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 295, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/fonts
7,989
[ "no_license", "permissive" ]
[ { "path": "roles/fonts/tasks/main.yaml", "content": "- name: \"fonts: install .ttf (truetype) fonts\"\n become: yes # as root\n copy:\n src: \"files/truetype/{{ item }}\"\n dest: /usr/local/share/fonts/\n with_items:\n - RobotoMono\n - JetBrainsMono\n # The Hack font patched with glyphs fo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1547, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/fs-encryption
7,989
[ "no_license" ]
[ { "path": "roles/fs-encryption/tasks/main.yaml", "content": "- name: \"gocryptfs: install {{ packages }}\"\n apt:\n name: \"{{ packages }}\"\n state: latest\n install_recommends: yes\n vars:\n packages:\n # allow directory-level encryption\n - gocryptfs\n - libpam-mount # needed...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3668, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/ide
7,989
[ "no_license" ]
[ { "path": "roles/ide/tasks/main.yaml", "content": "#\n# VS Code\n#\n\n- name: \"vscode: install\"\n apt:\n name: \"{{ packages }}\"\n state: latest\n install_recommends: yes\n vars:\n packages:\n - code\n tags:\n - ide\n - vscode\n\n- name: \"vscode: install extensions\"\n become:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 499, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/internet
7,989
[ "no_license" ]
[ { "path": "roles/internet/tasks/main.yaml", "content": "- name: \"google chrome: install\"\n apt:\n name: google-chrome-stable\n state: latest\n install_recommends: yes\n tags:\n - Desktop\n - internet\n - chrome\n\n- name: \"skype: install\"\n snap:\n name:\n - skype\n chann...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 463, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/kubernetes
7,989
[ "no_license" ]
[ { "path": "roles/kubernetes/tasks/main.yaml", "content": "#\n# Kubernetes\n#\n\n- name: \"kubectl: check current version\"\n shell: \"/opt/bin/kubectl version --client | grep v{{ kubectl_version }}\"\n ignore_errors: yes\n changed_when: False # read-only: won't change machine state\n register: kubectl_v...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 7626, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/lang-c++
7,989
[ "no_license" ]
[ { "path": "roles/lang-c++/tasks/main.yaml", "content": "#\n# C++\n#\n# Note: C++ is used when building some Go modules that use cgo, so clangd needs\n# to be installed before go modules.\n#\n\n- name: \"clang: install {{ packages }}\"\n vars:\n packages:\n - clang\n - clang-format\n apt:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1346, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/lang-go
7,989
[ "no_license" ]
[ { "path": "roles/lang-go/tasks/main.yaml", "content": "#\n# Go\n#\n\n- name: \"go: check current version\"\n command: /opt/bin/go version\n ignore_errors: yes\n changed_when: False # read-only: won't change machine state\n register: go_v\n tags:\n - Dev\n - go\n\n- name: \"go: create {{ go_instal...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4860, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/lang-java
7,989
[ "no_license" ]
[ { "path": "roles/lang-java/tasks/main.yaml", "content": "#\n# Java\n#\n\n- name: \"openjdk: install\"\n apt:\n name: \"{{ packages }}\"\n state: latest\n install_recommends: yes\n vars:\n packages:\n - openjdk-21-jdk\n - openjdk-21-source\n tags:\n - Dev\n - java\n - openjd...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 869, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/lang-js
7,989
[ "no_license" ]
[ { "path": "roles/lang-js/tasks/main.yaml", "content": "- name: \"nodejs: install\"\n snap:\n name: \"node\"\n classic: true\n channel: \"{{ nodejs_snap_channel }}\"\n tags:\n - Dev\n - js\n - nodejs\n\n- name: \"nodejs: user-local installation of packages\"\n copy:\n dest: \"{{ '~/.n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1477, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/lang-python
7,989
[ "no_license" ]
[ { "path": "roles/lang-python/tasks/main.yaml", "content": "#\n# Python\n#\n\n# TODO: -> lang-python\n- name: \"python3: install\"\n apt:\n name: \"{{ packages }}\"\n state: latest\n install_recommends: yes\n vars:\n packages:\n # needed for cryptography module\n - libssl-dev\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2747, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/lang-ruby
7,989
[ "no_license" ]
[ { "path": "roles/lang-ruby/tasks/main.yaml", "content": "#\n# Ruby\n#\n\n- name: \"ruby: install {{ packages }}\"\n apt:\n name: \"{{ packages }}\"\n state: latest\n install_recommends: yes\n vars:\n packages:\n - ruby\n - ruby-dev\n tags:\n - Dev\n - ruby\n\n# install ruby la...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 439, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/lang-rust
7,989
[ "no_license" ]
[ { "path": "roles/lang-rust/tasks/main.yaml", "content": "- name: \"rust: check if rustup installed\"\n become: no\n shell: \"~/.cargo/bin/rustup --version\"\n ignore_errors: yes\n changed_when: False # read-only: won't change machine state\n register: check\n tags:\n - Dev\n - rust\n - rustup...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1456, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/laptop
7,989
[ "no_license" ]
[ { "path": "roles/laptop/tasks/main.yaml", "content": "- name: \"install {{ packages }}\"\n apt:\n name: \"{{ packages }}\"\n state: latest\n install_recommends: yes\n vars:\n packages:\n - laptop-mode-tools\n tags:\n - Laptop\n - laptop\n - laptop-mode-tools\n", "license_typ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 219, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/machine-learning
7,989
[ "no_license" ]
[ { "path": "roles/machine-learning/tasks/main.yaml", "content": "- name: \"miniconda: check current version\"\n become: no\n shell: ~/miniconda3/bin/conda --version\n register: miniconda_v\n ignore_errors: yes\n changed_when: False # read-only: won't change machine state\n tags:\n - Dev\n - machi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1181, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/media
7,989
[ "no_license" ]
[ { "path": "roles/media/tasks/main.yaml", "content": "- name: \"inkscape: install\"\n apt:\n name: \"{{ packages }}\"\n state: latest\n install_recommends: yes\n vars:\n packages:\n - inkscape\n tags:\n - Desktop\n - media\n - inkscape\n\n- name: \"gimp: install\"\n apt:\n na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1509, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/vm
7,989
[ "no_license" ]
[ { "path": "roles/vm/tasks/main.yaml", "content": "#\n# Virtualization\n#\n\n# Note: you may need to run these commands to complete the installation.\n#\n# sudo dpkg-reconfigure virtualbox-dkms\n# sudo dpkg-reconfigure virtualbox\n#\n# If Ubuntu Secure Boot is enabled these commands may require you to en...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1426, "all_permissive": false }
ansible_role
petergardfjall/seed
53bf07789713fde560665b732ef550f13a881392
3
roles/window-manager
7,989
[ "no_license" ]
[ { "path": "roles/window-manager/tasks/main.yaml", "content": "- name: \"xfce: install {{ packages }}\"\n apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - xfce4\n - xfce4-goodies\n - fonts-dejavu\n - fonts-noto\n - libnotify-bin\n - greybird-gtk-theme\n - xfc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2320, "all_permissive": false }
ansible_role
MatthewFox97/thelogicdesk-provision
91bcb1247e9b260b420843b336bd9e53f8d9f925
1
roles/apache
7,989
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n# Setup/install tasks.\n- name: Update apt cache.\n apt: update_cache=yes cache_valid_time=3600\n\n- name: Ensure Apache is installed\n apt: \"name={{ apache_packages }} state=present\"\n\n- name: create logicdesk_root_dir\n file:\n path: \"{{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2897, "all_permissive": false }
ansible_role
MatthewFox97/thelogicdesk-provision
91bcb1247e9b260b420843b336bd9e53f8d9f925
1
roles/common
7,989
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n\n- name: Set hostname for server\n hostname:\n name: \"{{ inventory_hostname }}\"\n with_items: \"{{ groups.all }}\" \n\n- name: Add IP address of all hosts to all hosts\n lineinfile:\n path: /etc/hosts\n regexp: \"^{{ hostvars[item].an...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 414, "all_permissive": false }
ansible_role
MatthewFox97/thelogicdesk-provision
91bcb1247e9b260b420843b336bd9e53f8d9f925
1
roles/mysql
7,989
[ "no_license" ]
[ { "path": "roles/mysql/files/schema.sql", "content": "SET SQL_MODE = \"NO_AUTO_VALUE_ON_ZERO\";\nSET time_zone = \"+00:00\";\n\nCREATE TABLE IF NOT EXISTS `tickets` (\n `ticket_no` int(11) NOT NULL AUTO_INCREMENT,\n `title` varchar(255) NOT NULL,\n `status` varchar(8) DEFAULT NULL,\n `description` text ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3307, "all_permissive": false }
ansible_role
MatthewFox97/thelogicdesk-provision
91bcb1247e9b260b420843b336bd9e53f8d9f925
1
roles/packages
7,989
[ "no_license" ]
[ { "path": "roles/packages/defaults/main.yml", "content": "---\n# defaults file for yum_packages\n\ncommon_package_installs: []\n\ncustom_package_installs: []", "license_type": "no_license", "detected_licenses": [], "size_bytes": 94 }, { "path": "roles/packages/tasks/main.yml", "conte...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 364, "all_permissive": false }
ansible_role
MatthewFox97/thelogicdesk-provision
91bcb1247e9b260b420843b336bd9e53f8d9f925
1
roles/php
7,989
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n- name: Run apt-get update\n apt:\n update_cache: yes\n\n- name: Install PHP packages for apache2\n apt:\n name: \"software-properties-common\"\n state: present\n \n- name: Add php 7.2 repo\n apt_repository:\n repo: ppa:ondrej/php\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 684, "all_permissive": false }
ansible_role
da1ight/peervpn-ansible
df5d6b15dee954695d08f634bede697048215a3d
0
playbooks/roles/build
7,989
[ "permissive" ]
[ { "path": "playbooks/roles/build/vars/main.yml", "content": "package_version: \"0.044\"\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 25 }, { "path": "playbooks/roles/build/tasks/build.yml", "content": "- name: \"Register build path\...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1989, "all_permissive": true }
ansible_role
da1ight/peervpn-ansible
df5d6b15dee954695d08f634bede697048215a3d
0
playbooks/roles/compile
7,989
[ "permissive" ]
[ { "path": "playbooks/roles/compile/tasks/clone_repo.yml", "content": "- name: \"Git checkout peervpn\"\n git:\n repo: \"{{ peervpn_repo }}\" \n dest: /tmp/peervpn_repo", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 97 }, { "path": "p...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 743, "all_permissive": true }
ansible_role
da1ight/peervpn-ansible
df5d6b15dee954695d08f634bede697048215a3d
0
playbooks/roles/install
7,989
[ "permissive" ]
[ { "path": "playbooks/roles/install/tasks/main.yml", "content": "- name: \"Configure apt and install package\"\n include: \"add_repo.yml\"\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 70 }, { "path": "playbooks/roles/install/tasks/add_r...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 524, "all_permissive": true }
ansible_role
da1ight/peervpn-ansible
df5d6b15dee954695d08f634bede697048215a3d
0
playbooks/roles/publish
7,989
[ "permissive" ]
[ { "path": "playbooks/roles/publish/tasks/publish.yml", "content": "- name: \"Register repo path\"\n set_fact:\n repo_dir: \"/repository\"\n tags: build\n\n- name: \"Create subfolders {{ repo_dir }}\"\n become: yes\n file:\n path: \"{{ repo_dir }}/dists/stable/main/binary-amd64\"\n state: direct...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1283, "all_permissive": true }
ansible_role
Simodalstix/ansible-splunk-setup
424ceedb0b0f4c51f60b63d7eae57e4c637777b7
0
roles/grafana
7,989
[ "no_license" ]
[ { "path": "roles/grafana/defaults/main.yml", "content": "# roles/grafana/defaults/main.yml\n---\ngrafana_version: \"11.4.0\"\ngrafana_install_dir: \"/usr/share/grafana\" # Standard package install path\ngrafana_config_dir: \"/etc/grafana\"\ngrafana_data_dir: \"/var/lib/grafana\"\ngrafana_user: \"grafana\"\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2991, "all_permissive": false }
ansible_role
Simodalstix/ansible-splunk-setup
424ceedb0b0f4c51f60b63d7eae57e4c637777b7
0
roles/linux_baseline
7,989
[ "no_license" ]
[ { "path": "roles/linux_baseline/handlers/main.yml", "content": "- name: Restart sshd\n ansible.builtin.service:\n name: \"{{ 'sshd' if ansible_facts.os_family == 'RedHat' else 'ssh' }}\"\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 144 }, ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3146, "all_permissive": false }
ansible_role
Simodalstix/ansible-splunk-setup
424ceedb0b0f4c51f60b63d7eae57e4c637777b7
0
roles/prometheus
7,989
[ "no_license" ]
[ { "path": "roles/prometheus/defaults/main.yml", "content": "# roles/prometheus/defaults/main.yml\n---\n# Prometheus Server Defaults\nprometheus_version: \"3.1.0\" # Latest LTS stable version\nprometheus_base_url: \"https://github.com/prometheus/prometheus/releases/download/v{{ prometheus_version }}/promethe...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 7717, "all_permissive": false }
ansible_role
Simodalstix/ansible-splunk-setup
424ceedb0b0f4c51f60b63d7eae57e4c637777b7
0
roles/splunk_forwarder
7,989
[ "no_license" ]
[ { "path": "roles/splunk_forwarder/defaults/main.yml", "content": "---\n# roles/splunk_forwarder/defaults/main.yml\n# Sensible default values for Splunk Universal Forwarder deployment\n\nsplunk_forwarder_version: \"9.4.0\"\n\n# Use local file instead of download URL\n# Place the Splunk Universal Forwarder pa...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 5641, "all_permissive": false }
ansible_role
Simodalstix/ansible-splunk-setup
424ceedb0b0f4c51f60b63d7eae57e4c637777b7
0
roles/splunk_indexer
7,989
[ "no_license" ]
[ { "path": "roles/splunk_indexer/templates/indexes.conf.j2", "content": "# {{ ansible_managed }}\n# Splunk Indexer indexes.conf\n# This file defines custom indexes for organizing data\n\n{% for index in splunk_indexer_indexes %}\n[{{ index.name }}]\nhomePath = {{ index.homePath }}\ncoldPath = {{ index.coldPa...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 10366, "all_permissive": false }
ansible_role
kelvinator07/AWS-Cloud-DevOps-Capstone-Project
7c653c47ef74b40d05810828db5b6e0ddd30ecc2
0
.circleci/ansible/roles/deploy
7,989
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "---\n- name: Update apt packages\n become: yes\n apt:\n update_cache: yes\n\n- name: \"upgrade packages\"\n become: yes\n apt:\n upgrade: yes\n\n- name: remove dependencies that are no longer required\n become: yes\n apt:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1072, "all_permissive": false }
ansible_role
abryson-redhat/ansible-demos
aa62a194ee1904a72987f4e5abac760ea03cf663
0
namespace-onboarding/roles/onboard
7,989
[ "no_license" ]
[ { "path": "namespace-onboarding/roles/onboard/files/resourcequotas/medium.yaml", "content": "apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: medium-compute-resources\nspec:\n hard:\n pods: \"16\" \n requests.cpu: \"2\" \n requests.memory: 8Gi \n limits.cpu: \"2\" \n limits.memory: 8G...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 3383, "all_permissive": false }
ansible_role
rawidaniel/smilePay
bba5f9f150ad2c5d18bec2ebb89a2e541ed1d359
0
ansible/roles/configure-server
7,993
[ "no_license" ]
[ { "path": "ansible/roles/configure-server/tasks/main.yml", "content": "---\n- name: \"update apt packages.\"\n become: yes\n apt:\n update_cache: yes\n\n- name: \"upgrade packages\"\n become: yes\n apt:\n upgrade: yes\n\n- name: remove dependencies that are no longer required\n become: yes\n apt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 570, "all_permissive": false }
ansible_role
murilloo/redhat-ex447-exam-preparation
af8c4d15ba68b27c5180d216e0faf52aa9475cb1
3
do447/roles/web
7,993
[ "no_license" ]
[ { "path": "do447/roles/web/tasks/main.yml", "content": "---\n# tasks file for web\n\n\n\n- name: print the server\n debug:\n msg: \"{{ ansible_hostname }}\"\n\n- name: ensure SELinux allows httpd connections to a remote database\n seboolean:\n name: httpd_can_network_connect_db\n state: true\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 413, "all_permissive": false }
ansible_role
ack/runnernami
0c6cb0f4b60eb6af393e6b5ef6051e06cf15e753
0
script-package-based/roles/server
7,993
[ "no_license" ]
[ { "path": "script-package-based/roles/server/tasks/infra_existing.yml", "content": "---\n- name: resolve existing server\n clc_server_fact:\n server_id: \"{{ item }}\"\n credentials: true\n register: fact\n with_items: server_id\n\n- name: inventory\n add_host:\n groups=servers\n name={{ ite...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 653, "all_permissive": false }
ansible_role
ShiwenMa/MiniProject
628da9c1b16f63821509c1a27ee20b993a73595a
0
examples/playbooks/ansible-test/roles/common
7,993
[ "no_license" ]
[ { "path": "examples/playbooks/ansible-test/roles/common/tasks/install.yml", "content": "---\n\n- name: update system\n\n\n- name: install epel repo\n yum:\n name: epel-release\n state: present\n\n- name: install python 3.6\n yum:\n name: python36\n state: latest\n", "license_type": "no_lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 176, "all_permissive": false }
ansible_role
ShiwenMa/MiniProject
628da9c1b16f63821509c1a27ee20b993a73595a
0
examples/playbooks/ansible-test/roles/nginx
7,993
[ "no_license" ]
[ { "path": "examples/playbooks/ansible-test/roles/nginx/tasks/install.yml", "content": "---\n\n- name: add nginx repo\n yum_repository:\n name: nginx\n description: nginx repo\n baseurl: http://nginx.org/packages/centos/$releasever/$basearch/\n gpgcheck: no\n enabled: yes\n state: present\...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2759, "all_permissive": false }
ansible_role
ShiwenMa/MiniProject
628da9c1b16f63821509c1a27ee20b993a73595a
0
test/integration/roles/setup_ec2
7,993
[ "no_license" ]
[ { "path": "test/integration/roles/setup_ec2/tasks/main.yml", "content": "# common setup tasks for ec2 module tests\n# (c) 2014, <NAME> <<EMAIL>>\n\n# This file is part of Ansible\n#\n# Ansible is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1643, "all_permissive": false }
ansible_role
ShiwenMa/MiniProject
628da9c1b16f63821509c1a27ee20b993a73595a
0
test/integration/roles/test_consul_acl
7,993
[ "no_license" ]
[ { "path": "test/integration/roles/test_consul_acl/tasks/main.yml", "content": "- name: create a new acl token\n consul_acl:\n mgmt_token: '{{mgmt_token}}'\n host: '{{acl_host}}'\n name: 'New ACL'\n register: new_ruleless\n\n- name: verify ruleless key created\n assert:\n that:\n - new_ru...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 973, "all_permissive": false }
ansible_role
ShiwenMa/MiniProject
628da9c1b16f63821509c1a27ee20b993a73595a
0
test/integration/roles/test_ec2_group
7,993
[ "no_license" ]
[ { "path": "test/integration/roles/test_ec2_group/tasks/main.yml", "content": "---\n# A Note about ec2 environment variable name preference:\n# - EC2_URL -> AWS_URL\n# - EC2_ACCESS_KEY -> AWS_ACCESS_KEY_ID -> AWS_ACCESS_KEY\n# - EC2_SECRET_KEY -> AWS_SECRET_ACCESS_KEY -> AWX_SECRET_KEY\n# - EC2_REGION ->...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 6859, "all_permissive": false }
ansible_role
ShiwenMa/MiniProject
628da9c1b16f63821509c1a27ee20b993a73595a
0
test/integration/roles/test_ec2_key
7,993
[ "no_license" ]
[ { "path": "test/integration/roles/test_ec2_key/tasks/main.yml", "content": "---\n# A Note about ec2 environment variable name preference:\n# - EC2_URL -> AWS_URL\n# - EC2_ACCESS_KEY -> AWS_ACCESS_KEY_ID -> AWS_ACCESS_KEY\n# - EC2_SECRET_KEY -> AWS_SECRET_ACCESS_KEY -> AWX_SECRET_KEY\n# - EC2_REGION -> A...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 9936, "all_permissive": false }
ansible_role
ShiwenMa/MiniProject
628da9c1b16f63821509c1a27ee20b993a73595a
0
test/integration/targets/hash/roles/test_hash_behavior
7,993
[ "no_license" ]
[ { "path": "test/integration/targets/hash/roles/test_hash_behavior/tasks/main.yml", "content": "# test code for the hash variable behavior\n# (c) 2014, <NAME> <<EMAIL>>\n\n# This file is part of Ansible\n#\n# Ansible is free software: you can redistribute it and/or modify\n# it under the terms of the GNU Gen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1436, "all_permissive": false }
ansible_role
ShiwenMa/MiniProject
628da9c1b16f63821509c1a27ee20b993a73595a
0
test/samples/roles/test_role
7,993
[ "no_license" ]
[ { "path": "test/samples/roles/test_role/meta/main.yml", "content": "dependencies:\n - test_role_dep\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "test/samples/roles/test_role/tasks/main.yml", "content": "- debug: msg=\"here we are in the r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 113, "all_permissive": false }
ansible_role
ShiwenMa/MiniProject
628da9c1b16f63821509c1a27ee20b993a73595a
0
test/utils/ansible-playbook_integration_runner/roles/ansible_test_deps
7,993
[ "no_license" ]
[ { "path": "test/utils/ansible-playbook_integration_runner/roles/ansible_test_deps/meta/main.yml", "content": "---\ngalaxy_info:\n author: <NAME>\n description: install ansible integration test dependencies\n company: Ansible\n license: license (GPLv2, CC-BY, etc)\n min_ansible_version: 1.2\n platforms...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3995, "all_permissive": false }
ansible_role
ShiwenMa/MiniProject
628da9c1b16f63821509c1a27ee20b993a73595a
0
test/utils/ansible-playbook_integration_runner/roles/run_integration
7,993
[ "no_license" ]
[ { "path": "test/utils/ansible-playbook_integration_runner/roles/run_integration/tasks/main.yml", "content": "---\n- name: Sync ansible repo to ec2 instance\n synchronize: \n src: \"{{ sync_dir }}/\"\n dest: \"~/ansible\"\n no_log: true\n\n- name: Get ansible source dir\n sudo: false\n shell: \"cd ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1263, "all_permissive": false }
ansible_role
Ratio1/r1setup
f205fcb23aab73c1bf86333e1778a38398711f26
0
mnl_factory/roles/docker
7,993
[ "no_license" ]
[ { "path": "mnl_factory/roles/docker/README.md", "content": "# Docker Role\n\nThis role installs and configures Docker with NVIDIA Container Toolkit support for GPU-enabled containers. It sets up Docker daemon with proper GPU access and configuration.\n\n## Requirements\n\n- Ubuntu-based system\n- NVIDIA dri...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 12256, "all_permissive": false }
ansible_role
Ratio1/r1setup
f205fcb23aab73c1bf86333e1778a38398711f26
0
mnl_factory/roles/nvidia_drivers
7,993
[ "no_license" ]
[ { "path": "mnl_factory/roles/nvidia_drivers/tasks/main.yml", "content": "---\n# Skip this role entirely if skip_gpu is set to true\n- name: Skip NVIDIA drivers setup when skip_gpu is true\n debug:\n msg: \"NVIDIA drivers setup skipped due to skip_gpu=true configuration\"\n when: skip_gpu is defined and...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4735, "all_permissive": false }
ansible_role
Ratio1/r1setup
f205fcb23aab73c1bf86333e1778a38398711f26
0
mnl_factory/roles/nvidia_gpu
7,993
[ "no_license" ]
[ { "path": "mnl_factory/roles/nvidia_gpu/README.md", "content": "# NVIDIA GPU Role\n\nThis role manages NVIDIA GPU configuration, monitoring, and optimization. It handles GPU-specific settings, CUDA installation, and performance tuning.\n\n## Requirements\n\n- Ubuntu-based system\n- NVIDIA GPU(s)\n- NVIDIA d...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 11563, "all_permissive": false }
ansible_role
Ratio1/r1setup
f205fcb23aab73c1bf86333e1778a38398711f26
0
mnl_factory/roles/prerequisites
7,993
[ "no_license" ]
[ { "path": "mnl_factory/roles/prerequisites/README.md", "content": "# Prerequisites Role\n\nThis role sets up the basic system requirements needed for GPU node deployment. It handles system package updates, installation of essential tools, and configuration of system settings.\n\n## Requirements\n\n- Ubuntu-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3618, "all_permissive": false }
ansible_role
Ratio1/r1setup
f205fcb23aab73c1bf86333e1778a38398711f26
0
mnl_factory/roles/setup
7,993
[ "no_license" ]
[ { "path": "mnl_factory/roles/setup/templates/get_node_info.command.j2", "content": "docker exec -it {{ mnl_docker_container_name }} bash -c \"get_node_info\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 72 }, { "path": "mnl_factory/roles/setup/tasks/update_nod...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 13167, "all_permissive": false }
ansible_role
artem-vershinin/ansvpn
b1943d3362eb77f55e4f0ee13a2ec2fe9450b79f
0
roles/vpnclient
7,993
[ "no_license" ]
[ { "path": "roles/vpnclient/tasks/config.yml", "content": "---\n\n- name: Config openvpn\n become: true\n template:\n src: \".{{ vpnclient_config_path }}.j2\"\n dest: \"{{ vpnclient_config_path }}\"\n owner: root\n group: root\n mode: '0644'\n notify: runconf\n tags: [\"config\"]\n", "...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 1298, "all_permissive": false }
ansible_role
RA-Rob/rift
5d4960769e6739474bc6e9e1f815b00a3101c735
0
roles/common
7,993
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# Common role tasks applied to all hosts\n- name: Apply common configuration to {{ inventory_hostname }}\n debug:\n msg: \"Applying common configuration to {{ inventory_hostname }}\"\n\n- name: Update package cache\n dnf:\n update_cache: yes\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2329, "all_permissive": false }
ansible_role
RA-Rob/rift
5d4960769e6739474bc6e9e1f815b00a3101c735
0
roles/rift
7,993
[ "no_license" ]
[ { "path": "roles/rift/defaults/main.yml", "content": "---\n# Rift role defaults\n\n# Configuration paths\nrift_config_dir: \"/etc/rift\"\nrift_log_dir: \"/var/log/rift\"\n\n# Service configuration\nrift_service_name: \"rift\"\nrift_service_state: \"started\"\nrift_service_enabled: true\n\n# Python package v...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1367, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/cron
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/cron/tasks/main.yml", "content": "---\n# tasks file for cron\n\n- name: Check For Cron\n stat:\n path: /usr/bin/crontab\n register: cron\n\n- block:\n - name: Backup Containers Cron\n cron:\n name: backup-containers\n hour: 5\n minute: 0\n state: prese...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 747, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/dns
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/dns/tasks/main.yml", "content": "---\n# tasks file for dns\n\n- name: Check for DNS File\n stat:\n path: .dns\n register: dns\n\n- block:\n - name: Check for VPN File\n stat:\n path: .vpn\n register: vpn\n\n - name: Create Resolve Symlink\n become: true\n f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1225, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/dotfiles
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/dotfiles/tasks/main.yml", "content": "---\n# tasks file for dotfiles\n\n- name: Create Local Bin\n file:\n path: ~/.local/bin\n state: directory\n\n- name: Download YADM\n get_url:\n url: https://raw.githubusercontent.com/nickconway/yadm/master/yadm\n dest: ~/.local/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2964, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/git
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/git/tasks/main.yml", "content": "---\n# tasks file for git\n\n- name: Get Hostname\n command: uname -n\n register: hostname\n changed_when: false\n\n- name: Get Environment\n command: systemd-detect-virt\n register: virt\n changed_when: false\n ignore_errors: true\n\n- name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2648, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/hyprland
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/hyprland/tasks/main.yml", "content": "---\n- name: Check for Hyprland File\n stat:\n path: ~/.hyprland\n register: hyprland\n\n- block:\n - name: Install Hyprland Packages\n command: >\n yay -S --noconfirm --needed\n hyprland\n cpio\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3040, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/passwordless
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/passwordless/defaults/main.yml", "content": "---\n# defaults file for passwordless\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "bootstrap/roles/passwordless/handlers/main.yml", "content": "---\n# handlers file fo...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 584, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/reboot
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/reboot/tasks/main.yml", "content": "---\n# tasks file for reboot\n\n- block:\n - name: Check For Reboot\n stat:\n path: /var/run/reboot-required\n register: reboot\n\n - name: Reboot\n reboot:\n become: true\n when: reboot.stat.exists == true\n when: \"'loca...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 254, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/security
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/security/handlers/main.yml", "content": "---\n# handlers file for security\n\n- name: Restart SSH\n become: true\n service:\n name: \"sshd\"\n state: \"restarted\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 121 }, { "path...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2825, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/update
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/update/tasks/main.yml", "content": "---\n# tasks file for update\n\n- name: Upgrade System (Debian)\n become: true\n when: ansible_os_family == 'Debian'\n apt:\n update_cache: yes\n upgrade: yes\n\n- name: Upgrade System (RedHat)\n become: true\n when: ansible_os_family...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 411, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/vpn
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/vpn/tasks/main.yml", "content": "---\n# tasks file for vpn\n\n- name: Check for VPN File\n stat:\n path: ~/.vpn\n register: vpn\n\n- block:\n - name: Check if Already Installed\n shell:\n cmd: command -v tailscale\n register: tailscale_installed\n cha...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 4767, "all_permissive": false }
ansible_role
nickconway/ansible
9a8940a760fe585cf67b3c85321fae582ff40261
0
bootstrap/roles/wsl
7,993
[ "no_license" ]
[ { "path": "bootstrap/roles/wsl/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - wsl\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 62 }, { "path": "bootstrap/roles/wsl/tasks/main.yml", "content": "---\n# tasks file f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 534, "all_permissive": false }
ansible_role
sylekta/assignment
ea241f9c0eae886ba35c400ce49a148d168e8c16
0
roles/aws_provision
7,993
[ "no_license" ]
[ { "path": "roles/aws_provision/templates/credential.rc.j2", "content": "export username=\"{{cf_user}}\"\r\nexport password=\"{{<PASSWORD>}}\"\r\nexport uri=https://labs.opentlc.com", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "path": "roles/aws_provisio...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1223, "all_permissive": false }
ansible_role
sylekta/assignment
ea241f9c0eae886ba35c400ce49a148d168e8c16
0
roles/aws_smoketest
7,993
[ "no_license" ]
[ { "path": "roles/aws_smoketest/tasks/main.yml", "content": "#Role to smoketest the aws 3tier app#\r\n---\r\n- name: status check frontend server\r\n uri:\r\n url: \"http://{{item}}\"\r\n return_content: yes\r\n register: webcheck\r\n until: webcheck.status == 200\r\n retries: 30\r\n delay: 10\r\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 412, "all_permissive": false }
ansible_role
sylekta/assignment
ea241f9c0eae886ba35c400ce49a148d168e8c16
0
roles/openstack_smoketest
7,993
[ "no_license" ]
[ { "path": "roles/openstack_smoketest/tasks/main.yml", "content": "#Role to smoke test openstack 3 tier app#\r\n---\r\n- name: OpenStack facts\r\n os_server_facts:\r\n cloud: ospcloud\r\n server: 'frontend'\r\n register: openstack_result\r\n\r\n- name: status check frontend server\r\n uri:\r\n ur...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 576, "all_permissive": false }
ansible_role
sylekta/assignment
ea241f9c0eae886ba35c400ce49a148d168e8c16
0
roles/tower-aws-credential
7,993
[ "no_license" ]
[ { "path": "roles/tower-aws-credential/templates/tower_cli.cfg.j2", "content": "[general]\r\nhost=tower1.{{tower_GUID}}.example.opentlc.com\r\nusername={{tower_user}} \r\npassword={{<PASSWORD>}}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 108 }, { "path": "roles...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1084, "all_permissive": false }
ansible_role
sylekta/assignment
ea241f9c0eae886ba35c400ce49a148d168e8c16
0
roles/tower-config
7,993
[ "no_license" ]
[ { "path": "roles/tower-config/tasks/main.yml", "content": "- name: Install required packages \r\n yum: \r\n name: \"{{item}}\"\r\n state: latest \r\n loop: \r\n - python \r\n - python-pip \r\n - python-devel \r\n - gcc\r\n\r\n- name: Install tower-cli\r\n pip:\r\n name: ansible-tow...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 374, "all_permissive": false }
ansible_role
HarishaPrakash/Devops_MS_Thesis
256cbc2e20f3648522164a569fc41f9689a502a8
1
src/Devops/pipeline/integration-server/playbook/roles/gitlab
7,993
[ "no_license" ]
[ { "path": "src/Devops/pipeline/integration-server/playbook/roles/gitlab/tasks/main.yml", "content": "---\n\n- name: \"Create Downloads folder\"\n file:\n path: \"{{ destination }}\"\n state: directory\n\n- name: \"Update repositories cache.\" \n apt:\n update_cache: yes\n\n\n- name: \"Safe system...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2435, "all_permissive": false }
ansible_role
HarishaPrakash/Devops_MS_Thesis
256cbc2e20f3648522164a569fc41f9689a502a8
1
src/Devops/pipeline/integration-server/playbook/roles/grafana
7,993
[ "no_license" ]
[ { "path": "src/Devops/pipeline/integration-server/playbook/roles/grafana/tasks/main.yml", "content": "- name: Install Grafana\n shell: |\n sudo apt-get install -y apt-transport-https\n sudo apt-get install -y software-properties-common wget\n wget -q -O - https://packages.grafana.com/gpg.key | sud...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 556, "all_permissive": false }
ansible_role
HarishaPrakash/Devops_MS_Thesis
256cbc2e20f3648522164a569fc41f9689a502a8
1
src/Devops/pipeline/integration-server/playbook/roles/mysql
7,993
[ "no_license" ]
[ { "path": "src/Devops/pipeline/integration-server/playbook/roles/mysql/tasks/main.yml", "content": "---\n\n- name: Installing Mysql and dependencies\n package:\n name: \"{{item}}\"\n state: present\n update_cache: yes\n loop:\n - mysql-server\n - mysql-client \n - python3-mysqldb\n -...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2840, "all_permissive": false }
ansible_role
HarishaPrakash/Devops_MS_Thesis
256cbc2e20f3648522164a569fc41f9689a502a8
1
src/Devops/pipeline/integration-server/playbook/roles/sonarqube
7,993
[ "no_license" ]
[ { "path": "src/Devops/pipeline/integration-server/playbook/roles/sonarqube/defaults/main.yml", "content": "---\n\n# Variables related to sonarqube listed below\n# Initialize the varibales with correct values before creating VM\n# DO NOT CHANGE values until it is neccessary\n\nsonar_user: sonar\nsonar_db: so...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4280, "all_permissive": false }
ansible_role
miekuskamil/Ansible_ACI_Faults_Extract
aa8ff5ae843ae740d14f546ca32e441e36c4d9a1
0
implementation/roles/communications_faults
7,993
[ "no_license" ]
[ { "path": "implementation/roles/communications_faults/tasks/main.yml", "content": "---\n- name: GET COMMUNICATIONS FAULTS FROM \"{{ inventory_hostname }}\"\n aci_rest:\n host: \"{{ inventory_hostname }}\"\n username: \"{{ username }}\"\n password: \"{{ <PASSWORD> }}\"\n method: get\n path: /...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 472, "all_permissive": false }
ansible_role
miekuskamil/Ansible_ACI_Faults_Extract
aa8ff5ae843ae740d14f546ca32e441e36c4d9a1
0
implementation/roles/config_faults
7,993
[ "no_license" ]
[ { "path": "implementation/roles/config_faults/tasks/main.yml", "content": "---\n- name: GET CONFIG FAULTS FROM \"{{ inventory_hostname }}\"\n aci_rest:\n host: \"{{ inventory_hostname }}\"\n username: \"{{ username }}\"\n password: \"{{ <PASSWORD> }}\"\n method: get\n path: /api/node/class/f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 440, "all_permissive": false }
ansible_role
miekuskamil/Ansible_ACI_Faults_Extract
aa8ff5ae843ae740d14f546ca32e441e36c4d9a1
0
implementation/roles/environmental_faults
7,993
[ "no_license" ]
[ { "path": "implementation/roles/environmental_faults/tasks/main.yml", "content": "---\n- name: GET ENVIRONMENTAL FAULTS FROM \"{{ inventory_hostname }}\"\n aci_rest:\n host: \"{{ inventory_hostname }}\"\n username: \"{{ username }}\"\n password: \"{{ <PASSWORD> }}\"\n method: get\n path: /ap...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 468, "all_permissive": false }
ansible_role
miekuskamil/Ansible_ACI_Faults_Extract
aa8ff5ae843ae740d14f546ca32e441e36c4d9a1
0
implementation/roles/operational_faults
7,993
[ "no_license" ]
[ { "path": "implementation/roles/operational_faults/tasks/main.yml", "content": "---\n- name: GET OPERATIONAL FAULTS FROM \"{{ inventory_hostname }}\"\n aci_rest:\n host: \"{{ inventory_hostname }}\"\n username: \"{{ username }}\"\n password: \"{{ <PASSWORD> }}\"\n method: get\n path: /api/no...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 460, "all_permissive": false }
ansible_role
damionparry/ansible-training
81bc9683dae0153f7fd1713240a81e07bea0fd8a
0
3tier-good/roles/apache
7,993
[ "no_license" ]
[ { "path": "3tier-good/roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n- name: install apache\n yum:\n name: httpd\n state: latest\n\n- name: enable and start apache\n service:\n name: httpd\n state: started\n enabled: yes\n\n", "license_type": "no_license", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 189, "all_permissive": false }
ansible_role
damionparry/ansible-training
81bc9683dae0153f7fd1713240a81e07bea0fd8a
0
3tier-good/roles/appdb
7,993
[ "no_license" ]
[ { "path": "3tier-good/roles/appdb/tasks/main.yml", "content": "---\n# tasks file for appdb\n- name: install postgres server\n yum:\n name: postgresql-server\n state: latest\n\n- name: block to check state of database initialisation\n block:\n # Task to check whether of not the database has been i...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 649, "all_permissive": false }
ansible_role
damionparry/ansible-training
81bc9683dae0153f7fd1713240a81e07bea0fd8a
0
3tier-good/roles/frontends
7,993
[ "no_license" ]
[ { "path": "3tier-good/roles/frontends/tasks/main.yml", "content": "---\n# tasks file for frontends\n- name: install http\n package:\n name: httpie\n state: latest\n\n- name: install HAProxy\n yum:\n name: haproxy \n state: latest\n\n- name: configure haproxy\n template:\n src: haproxy.cfg.j2...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 367, "all_permissive": false }
ansible_role
damionparry/ansible-training
81bc9683dae0153f7fd1713240a81e07bea0fd8a
0
3tier-good/roles/inventory
7,993
[ "no_license" ]
[ { "path": "3tier-good/roles/inventory/tasks/main.yml", "content": "---\n# Role to generate an in memory inventory\n- name: query OSP to get instance details\n os_server_facts:\n cloud: ospcloud\n register: result\n- name: add instance and group metadata\n add_host:\n name: \"{{ item.public_v4 }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 326, "all_permissive": false }
ansible_role
damionparry/ansible-training
81bc9683dae0153f7fd1713240a81e07bea0fd8a
0
3tier-good/roles/tomcat
7,993
[ "no_license" ]
[ { "path": "3tier-good/roles/tomcat/defaults/main.yml", "content": "---\n# defaults file for tomcat\nserver_name: unkown\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 }, { "path": "3tier-good/roles/tomcat/tasks/main.yml", "content": "---\n# tasks file for...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 789, "all_permissive": false }
ansible_role
damionparry/ansible-training
81bc9683dae0153f7fd1713240a81e07bea0fd8a
0
windows_integration/roles/win_ad_user
7,993
[ "no_license" ]
[ { "path": "windows_integration/roles/win_ad_user/tasks/main.yml", "content": "---\n# role to add users from user_info list\n- name: add the groups to the domain\n win_domain_group:\n name: \"{{ item.group_name }}\"\n scope: \"{{ item.group_scope }}\"\n with_items: \"{{ user_info.group }}\"\n\n- name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 497, "all_permissive": false }
ansible_role
damionparry/ansible-training
81bc9683dae0153f7fd1713240a81e07bea0fd8a
0
windows_integration/roles/win_service_config
7,993
[ "no_license" ]
[ { "path": "windows_integration/roles/win_service_config/tasks/main.yml", "content": "---\n# role to configure a package on a windows server\n- name: downgrade chocolatey\n win_chocolatey:\n name: chocolatey\n state: downgrade\n version: 0.10.11\n\n- name: install {{ package_name }}\n win_chocolat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 879, "all_permissive": false }
ansible_role
amantale/deploy-demo
638cc318a5bc6a32732f7fa1c969df8d649175c7
0
operations/aws/ansible/roles/app-config
7,994
[ "no_license" ]
[ { "path": "operations/aws/ansible/roles/app-config/files/app_config.yml", "content": "---\nDescription: An AppConfig application for dynamic configuration\nParameters:\n Application:\n Description: 'Application name to add to tags'\n Type: String\n Environment:\n Description: 'The name of the Sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4801, "all_permissive": false }
ansible_role
amantale/deploy-demo
638cc318a5bc6a32732f7fa1c969df8d649175c7
0
operations/aws/ansible/roles/microservice1
7,994
[ "no_license" ]
[ { "path": "operations/aws/ansible/roles/microservice1/tasks/main.yml", "content": "---\n- name: Load JSON with ECS Task Environment Variables\n set_fact:\n ecs_vars_json_data_with_placeholder: \"{{ lookup('file', '{{ inventory_dir }}/group_vars/all/ecs_vars.json') }}\"\n\n- name: Load KMS ARN\n set_fac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 12745, "all_permissive": false }
ansible_role
amantale/deploy-demo
638cc318a5bc6a32732f7fa1c969df8d649175c7
0
operations/aws/ansible/roles/microservice2
7,994
[ "no_license" ]
[ { "path": "operations/aws/ansible/roles/microservice2/tasks/main.yml", "content": "---\n- name: Load JSON with ECS Task Environment Variables\n set_fact:\n ecs_vars_json_data_with_placeholder: \"{{ lookup('file', '{{ inventory_dir }}/group_vars/all/ecs_vars.json') }}\"\n\n- name: Load KMS ARN\n set_fac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 12745, "all_permissive": false }
ansible_role
amantale/deploy-demo
638cc318a5bc6a32732f7fa1c969df8d649175c7
0
operations/aws/ansible/roles/role1
7,994
[ "no_license" ]
[ { "path": "operations/aws/ansible/roles/role1/tasks/main.yml", "content": "---\n- name: Display variable from all yml\n debug:\n var: variable_from_all_yml\n\n- name: Display variable from lab eu central yml\n debug:\n msg: \"{{ variable_lab_eu_central_yml }}\"\n\n- name: Display variable from inven...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 272, "all_permissive": false }
ansible_role
lel99999/dev_GaussRH7
b14884d8243fe9d38660209275217d0c287dead8
0
roles/gaussRH7
7,994
[ "no_license" ]
[ { "path": "roles/gaussRH7/tasks/main.yml", "content": "---\n- name: Verify install directory\n file:\n path: \"{{gauss_bin_directory}}/\"\n state: directory\n\n- name: Install expect\n yum:\n name: expect\n state: present\n\n- name: Install python3 pip\n yum:\n name: python3-pip\n state...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1771, "all_permissive": false }
ansible_role
lel99999/dev_GaussRH7
b14884d8243fe9d38660209275217d0c287dead8
0
roles/stattransfer14
7,994
[ "no_license" ]
[ { "path": "roles/stattransfer14/tasks/main.yaml", "content": "---\n#- name: Install compat-libstdc\n# yum:\n# name: compat-libstdc++-33-3.2.3-69.el6\n# state: present\n# tags:\n# - stattransfer\n\n- name: Check directory\n stat:\n path: \"{{stattransfer_local_bin_directory}}\"\n register: st...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3170, "all_permissive": false }
ansible_role
aisensiy/fixed-assets-java
1c6da55cdacd8157b07fb9c6a469743e21b87d1d
1
deploy/playbook/roles/common
7,994
[ "no_license" ]
[ { "path": "deploy/playbook/roles/common/handlers/main.yml", "content": "---\n- name: save iptables\n sudo: true\n command: iptables-save\n\n- name: restart iptables\n service: name= ufw state=restarted\n sudo: true", "license_type": "no_license", "detected_licenses": [], "size_bytes": 139 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 244, "all_permissive": false }
ansible_role
aisensiy/fixed-assets-java
1c6da55cdacd8157b07fb9c6a469743e21b87d1d
1
deploy/playbook/roles/db.mysql
7,994
[ "no_license" ]
[ { "path": "deploy/playbook/roles/db.mysql/tasks/main.yml", "content": "---\n- name: install the RPM-GPG-KEY-mysql\n yum: name=http://repo.mysql.com/mysql-community-release-el6-5.noarch.rpm state=present\n\n- name: install libselinux-python\n yum: name=libselinux-python state=present\n\n- name: update yum ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2695, "all_permissive": false }
ansible_role
aisensiy/fixed-assets-java
1c6da55cdacd8157b07fb9c6a469743e21b87d1d
1
deploy/playbook/roles/db.redis
7,994
[ "no_license" ]
[ { "path": "deploy/playbook/roles/db.redis/templates/RedHat/redis.sentinel.init.j2", "content": "#!/bin/sh\n#\n# Simple Redis init.d script for RHEL-based distros\n#\n# chkconfig: - 58 74\n# description: Redis key-value store\n#\n# Source function library\n. /etc/init.d/functions\n\nBIND_ADDRESS={{ redis_sen...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 6884, "all_permissive": false }
ansible_role
aisensiy/fixed-assets-java
1c6da55cdacd8157b07fb9c6a469743e21b87d1d
1
deploy/playbook/roles/dev
7,994
[ "no_license" ]
[ { "path": "deploy/playbook/roles/dev/tasks/main.yml", "content": "---\n- name: install expect\n yum: name=expect state=latest\n\n#- name: install tmux latest\n# yum: name=ftp://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/home:/kalyaka/CentOS_CentOS-6/x86_64/tmux-1.8-6.1.x86_64.rpm state=pr...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1002, "all_permissive": false }