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
geudrik/homestack-playbooks
fc02ceac2ba0bc6b16979dc5cb3e9fda5abbf8a4
0
roles/apache
216
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "- name: Install Apache2 and Dependencies\n apt: name={{item}} state=present\n with_items:\n - apache2\n - libapache2-mod-wsgi\n tags: [apache]\n\n- name: Set up Apache modules\n apache2_module: state={{item.state}} name={{item.name}}\n with_ite...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1716, "all_permissive": false }
ansible_role
geudrik/homestack-playbooks
fc02ceac2ba0bc6b16979dc5cb3e9fda5abbf8a4
0
roles/mysql
216
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yaml", "content": "- name: Install mariadb and dependencies\n apt: name={{item}} state=present\n with_items:\n - python-mysqldb\n - mariadb-server\n tags: [mysql]\n\n- name: Ensure Maria is running\n service: name=mysql state=started enabled=yes\n\n- name: Update ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1935, "all_permissive": false }
ansible_role
geudrik/homestack-playbooks
fc02ceac2ba0bc6b16979dc5cb3e9fda5abbf8a4
0
roles/ntp
216
[ "no_license" ]
[ { "path": "roles/ntp/tasks/main.yaml", "content": "---\n- name: Ensure that NTP is installed\n apt: name={{item}} state=present\n with_items:\n - ntp\n tags: [ntp]\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 114 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 114, "all_permissive": false }
ansible_role
geudrik/homestack-playbooks
fc02ceac2ba0bc6b16979dc5cb3e9fda5abbf8a4
0
roles/redis
216
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yaml", "content": "---\n- name: Ensure redis is installed\n apt: name=redis-server update_cache=yes\n tags: [redis]\n\n- name: Ensure redis is running\n service: name=redis-server state=running\n tags: [redis]\n\n- name: Adjust redis ulimit\n lineinfile:\n dest=/etc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 686, "all_permissive": false }
ansible_role
caocong192/Myperson
dba383b8c1480d7ad754b9277ca47dca626e98b8
0
roles/zabbix
216
[ "no_license" ]
[ { "path": "roles/zabbix/tasks/main.yml", "content": "- import_tasks: copyfile.yml\n- import_tasks: install.yml\n- import_tasks: yum.yml\n- import_tasks: rmfile.yml\n- import_tasks: templ.yml\n- import_tasks: start.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 160 ...
{ "task_files": 7, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 797, "all_permissive": false }
ansible_role
Win32Sector/ansible-nginx-rol-with-certbot
b84b570e070f17bdda3203a8a5ac3bacd0efe967
0
roles/certbot
216
[ "no_license" ]
[ { "path": "roles/certbot/templates/example1.com.j2", "content": "#####################\n#{{ ansible_managed }}\n#####################\n\nserver {\n listen 80;\n listen [::]:80;\n server_name {{ vhosts['example1.com'] }};\n return 301 https://$host$request_uri;\n}\n\n# SSL configuration\nserver {\n ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3277, "all_permissive": false }
ansible_role
Win32Sector/ansible-nginx-rol-with-certbot
b84b570e070f17bdda3203a8a5ac3bacd0efe967
0
roles/nginx
216
[ "no_license" ]
[ { "path": "roles/nginx/tasks/install_packages.yml", "content": "---\n- name: NGINX repo install\n template:\n src: \"templates/etc/yum.repos.d/{{ item }}.j2\"\n dest: \"/etc/yum.repos.d/{{ item }}\"\n mode: 0644\n owner: root\n group: root\n loop:\n - nginx.repo\n\n- name: ensure nginx i...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 3227, "all_permissive": false }
ansible_role
AtlasPlato/logstash-filter-ldap
4d4b6cc0cb88b6ea781a97510a94991633ee103a
0
provisioning/roles/ldap-server
216
[ "permissive" ]
[ { "path": "provisioning/roles/ldap-server/tasks/main.yml", "content": "---\n- name: Create the maven data directory\n become: false\n file:\n path: \"${HOME}/.m2/\"\n state: directory\n when: http_proxy is not none and http_proxy is defined and http_proxy != \"\"\n\n- name: Deploy the maven config ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1761, "all_permissive": true }
ansible_role
AtlasPlato/logstash-filter-ldap
4d4b6cc0cb88b6ea781a97510a94991633ee103a
0
provisioning/roles/system-utils
216
[ "permissive" ]
[ { "path": "provisioning/roles/system-utils/tasks/main.yml", "content": "---\r\n- name: Install system utilities\r\n apt:\r\n name: \"{{ item }}\"\r\n state: present\r\n with_items:\r\n - htop\r\n - nload\r\n - iotop\r\n - curl\r\n - vim\r\n - nano\r\n", "license_type": "permiss...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 179, "all_permissive": true }
ansible_role
jokajak/homelab
a3109353af72a3dbee8f6b9124079cfaaea804e0
0
roles/bootstrap
216
[ "no_license" ]
[ { "path": "roles/bootstrap/vars/main.yml", "content": "---\n# variables for bootstrap role\n__bootstrap_required_facts:\n- os_family\n- distribution\n\n__bootstrap_become_method: '{{ \"ansible.builtin.su\" if _bootstrap_sudo_result is failed else \"ansible.builtin.sudo\" }}'\n", "license_type": "no_lice...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2717, "all_permissive": false }
ansible_role
jokajak/homelab
a3109353af72a3dbee8f6b9124079cfaaea804e0
0
roles/common
216
[ "no_license" ]
[ { "path": "roles/common/meta/main.yml", "content": "---\ngalaxy_info:\n author: Josh\n description: common tasks\n license: BSD-3-Clause\n\n min_ansible_version: 2.8\n\n platforms:\n - name: Fedora\n versions:\n - all\n - name: Debian\n versions:\n - all\n\n galaxy_tags: []\n\ndependenci...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 3053, "all_permissive": false }
ansible_role
jokajak/homelab
a3109353af72a3dbee8f6b9124079cfaaea804e0
0
roles/ignition
216
[ "no_license" ]
[ { "path": "roles/ignition/tasks/main.yml", "content": "---\n# main task file for ignition\n- name: Generate ignition file when ignition_dest is provided\n when: ignition_dest is defined\n command: butane --pretty --strict -o {{ ignition_dest }}\n args:\n stdin: '{{ ignition_butane_config | to_yaml }}'...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 7865, "all_permissive": false }
ansible_role
jokajak/homelab
a3109353af72a3dbee8f6b9124079cfaaea804e0
0
roles/k3s
216
[ "no_license" ]
[ { "path": "roles/k3s/defaults/main.yml", "content": "---\n# defaults file for k3s\nk3s_version: v1.27.5+k3s1\nk3s_role: agent\n\nk3s_server_args: ''\nk3s_server_init: ''\n\nk3s_disable_network_policy: false\nk3s_disabled_addons:\n# replaced with custom helm chart\n- coredns # Disable coredns\n- flann...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 17950, "all_permissive": false }
ansible_role
Elao/osx-installer
27dd4f68a96d8d972e940ccd280e8aac79b812b1
4
roles/git
216
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "---\n- name: install\n homebrew: >\n name=git\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
Elao/osx-installer
27dd4f68a96d8d972e940ccd280e8aac79b812b1
4
roles/homebrew-cask
216
[ "no_license" ]
[ { "path": "roles/homebrew-cask/tasks/main.yml", "content": "---\n- name: tap caskroom/cask\n homebrew_tap: tap=caskroom/cask state=present\n\n- name: install\n homebrew: >\n name=brew-cask\n state=present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 146 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 146, "all_permissive": false }
ansible_role
Elao/osx-installer
27dd4f68a96d8d972e940ccd280e8aac79b812b1
4
roles/oh-my-zsh
216
[ "no_license" ]
[ { "path": "roles/oh-my-zsh/tasks/main.yml", "content": "---\n- name: clone check\n stat:\n path: \"{{ ansible_env.HOME }}/.oh-my-zshgit\"\n register: result\n sudo: yes\n\n- name: clone\n git: >\n repo=https://github.com/robbyrussell/oh-my-zsh.git\n dest={{ ansible_env.HOME }}/.oh-my-zsh\n whe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 674, "all_permissive": false }
ansible_role
Elao/osx-installer
27dd4f68a96d8d972e940ccd280e8aac79b812b1
4
roles/vagrant
216
[ "no_license" ]
[ { "path": "roles/vagrant/tasks/main.yml", "content": "---\n- name: Install virtualbox\n homebrew_cask: name=virtualbox state=present\n\n- name: Install vagrant\n homebrew_cask: name=vagrant state=present\n\n# install plugins\n- name: Install vagrant plugins\n command: vagrant plugin install {{ item }}\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 265, "all_permissive": false }
ansible_role
shivam3108/Ansible_infra
93828a78797f59808a6bba7717b98df9d89d7c82
0
roles/docker_installation_ubuntu
216
[ "no_license" ]
[ { "path": "roles/docker_installation_ubuntu/tasks/main.yml", "content": "---\n- name: Add Docker Group\n become: yes\n become_method: sudo\n become_user: root\n group: name=docker state=present\n\n- name: Add Docker Signing Key\n become: yes\n become_method: sudo\n become_user: root\n apt_key:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 777, "all_permissive": false }
ansible_role
shivam3108/Ansible_infra
93828a78797f59808a6bba7717b98df9d89d7c82
0
roles/emmetog.jenkins
216
[ "no_license" ]
[ { "path": "roles/emmetog.jenkins/tasks/apt/stop.yml", "content": "---\n\n- name: Jenkins is stopped\n service:\n name: jenkins\n state: stopped\n\n- pause: seconds=5\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "path": "roles/emmetog.jenkins/ta...
{ "task_files": 12, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 12, "total_bytes": 8204, "all_permissive": false }
ansible_role
shivam3108/Ansible_infra
93828a78797f59808a6bba7717b98df9d89d7c82
0
roles/jenkins_job_creation
216
[ "no_license" ]
[ { "path": "roles/jenkins_job_creation/tasks/main.yml", "content": "---\n- name: Install python-jenkins\n become: yes\n become_method: sudo\n become_user: root\n pip: name=python-jenkins\n- name: Install python-jenkins\n become: yes\n become_method: sudo\n become_user: root\n pip: name=lxml\n#- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 769, "all_permissive": false }
ansible_role
shivam3108/Ansible_infra
93828a78797f59808a6bba7717b98df9d89d7c82
0
roles/nexus
216
[ "no_license" ]
[ { "path": "roles/nexus/tasks/install_nexus.yml", "content": "- name: Ensure nexus directory on docker host\n file:\n state: directory\n owner: 1000\n group: 1000\n path: /share/nexus\n\n- name: Pull the latest official nexus docker image\n become: yes\n become_method: sudo\n become_user: roo...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1097, "all_permissive": false }
ansible_role
shivam3108/Ansible_infra
93828a78797f59808a6bba7717b98df9d89d7c82
0
roles/pip_installation
216
[ "no_license" ]
[ { "path": "roles/pip_installation/defaults/main.yml", "content": "---\npip_version: \"9.0.*\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 25 }, { "path": "roles/pip_installation/tasks/main.yml", "content": "---\n- name: Get installed pip version\n become...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 878, "all_permissive": false }
ansible_role
shivam3108/Ansible_infra
93828a78797f59808a6bba7717b98df9d89d7c82
0
roles/provision_VM_using_ARM_template
216
[ "no_license" ]
[ { "path": "roles/provision_VM_using_ARM_template/defaults/main.yml", "content": "vm_ip1: \"{{vm_ip}}\"\n#vm_ip1: 172.16.31.10\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 42 }, { "path": "roles/provision_VM_using_ARM_template/defaults/main.yml", "content":...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1193, "all_permissive": false }
ansible_role
shivam3108/Ansible_infra
93828a78797f59808a6bba7717b98df9d89d7c82
0
roles/sonarqube
216
[ "no_license" ]
[ { "path": "roles/sonarqube/tasks/main.yml", "content": "---\n- include: install_sonar.yml\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "roles/sonarqube/tasks/install_sonar.yml", "content": "- name: Ensure sonarqube directory on docker hos...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1203, "all_permissive": false }
ansible_role
thaumos/ansible-training
cce3682ab6c8892f2511617ba05a56437887694a
0
exercises/exercise5/roles/common
216
[ "no_license" ]
[ { "path": "exercises/exercise5/roles/common/tasks/main.yml", "content": "---\n# tasks file for common\n- name: Add the OS specific variables\n include_vars: \"{{ ansible_os_family }}.yml\"\n tags: include_vars\n\n# CentOS specific package installations\n\n- include: RedHat.yml\n when: ansible_os_family ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 576, "all_permissive": false }
ansible_role
slimaneguemil/ansible
40a4ad1011e069ef743cf8fc163a3f9c119ad4cd
1
backup/lab7_june21/roles/users
216
[ "no_license" ]
[ { "path": "backup/lab7_june21/roles/users/vars/main.yml", "content": "---\nusers:\n - vijay\n - rajkumar\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "backup/lab7_june21/roles/users/Readme.md", "content": "this role will iterate all eleme...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1513, "all_permissive": false }
ansible_role
slimaneguemil/ansible
40a4ad1011e069ef743cf8fc163a3f9c119ad4cd
1
collect/roles/check
216
[ "no_license" ]
[ { "path": "collect/roles/check/tasks/main.yml", "content": "---\n- name: process on localhost\n block:\n - name: host files\n command: ls\n register: var_ls\n changed_when: false\n - name: ansible_hostname\n debug:\n msg: \"{{ var_ls }}\"\n delegate_to: localhost\n\n\n\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 231, "all_permissive": false }
ansible_role
slimaneguemil/ansible
40a4ad1011e069ef743cf8fc163a3f9c119ad4cd
1
collect/roles/collect
216
[ "no_license" ]
[ { "path": "collect/roles/collect/vars/main.yml", "content": "---\n# vars file for inventory\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "collect/roles/collect/defaults/main.yml", "content": "---\n# defaults file for inventory\npath_output:...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 6984, "all_permissive": false }
ansible_role
slimaneguemil/ansible
40a4ad1011e069ef743cf8fc163a3f9c119ad4cd
1
logs/roles/inventory
216
[ "no_license" ]
[ { "path": "logs/roles/inventory/vars/main.yml", "content": "---\n# vars file for inventory\npath_output: /home/ansible/output", "license_type": "no_license", "detected_licenses": [], "size_bytes": 63 }, { "path": "logs/roles/inventory/templates/output.txt.j2", "content": "#date\n {{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 7038, "all_permissive": false }
ansible_role
slimaneguemil/ansible
40a4ad1011e069ef743cf8fc163a3f9c119ad4cd
1
logs/roles/logs
216
[ "no_license" ]
[ { "path": "logs/roles/logs/tasks/main.yml", "content": "---\n# NOTE: Fully quoted because of the ': ' on the line. See the Gotchas in the YAML docs.\n- name: Validate the sudoers file before saving\n lineinfile:\n path: /etc/sudoers\n state: present\n regexp: '^%?Defaults\tlogfile='\n line: 'De...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1037, "all_permissive": false }
ansible_role
slimaneguemil/ansible
40a4ad1011e069ef743cf8fc163a3f9c119ad4cd
1
logs/roles/test
216
[ "no_license" ]
[ { "path": "logs/roles/test/tasks/main.yml", "content": "---\n# Validate the sudoers file before saving\n- name: Step 6 Restart the logrotate file\n command: \"/sbin/logrotate -d /etc/logrotate.conf\"\n# command: echo $HOME\n# register: run_logrotate\n\n#- name: display\n# debug:\n# msg: \"{{run_logro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 247, "all_permissive": false }
ansible_role
slimaneguemil/ansible
40a4ad1011e069ef743cf8fc163a3f9c119ad4cd
1
logs/roles/users
216
[ "no_license" ]
[ { "path": "logs/roles/users/Readme.md", "content": "this role will iterate all elements from a list and create/update users account\n\n- loop trgouh solaris and centos os\n -loop through each item\n - generate accounts if not exist\n - update password change policy(force change) for new use...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1758, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_aaa
216
[ "no_license" ]
[ { "path": "roles/config_aaa/handlers/main.yml", "content": "---\n# handlers file for config_aaa\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/config_aaa/vars/main.yml", "content": "---\n# vars file for config_aaa\n", "license_type...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 13, "total_bytes": 4720, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_acl
216
[ "no_license" ]
[ { "path": "roles/config_acl/tasks/main.yml", "content": "---\n- name: \"Include ACL Tasks\"\n include_tasks: \"{{ ansible_network_os }}.yml\"\n when: ansible_network_os is defined\n with_first_found:\n - files:\n - \"tasks/{{ ansible_network_os }}.yml\"\n skip: true\n", "license_type":...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 1887, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_backup
216
[ "no_license" ]
[ { "path": "roles/config_backup/handlers/main.yml", "content": "---\n# handlers file for roles/config_backup\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 44 }, { "path": "roles/config_backup/tests/test.yml", "content": "---\n- hosts: localhost\n remote_use...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 3283, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_bandwidth
216
[ "no_license" ]
[ { "path": "roles/config_bandwidth/defaults/main.yml", "content": "---\ncpe_interface: \"GigabitEthernet2\"\ninstance_id: dev103976\n\ninstance:\n host: https://dev103976.service-now.com\n username: \"{{ snow_user }}\"\n password: \"{{ <PASSWORD> }}\"\n", "license_type": "no_license", "detected_li...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 2392, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_credentials
216
[ "no_license" ]
[ { "path": "roles/config_credentials/handlers/main.yml", "content": "---\n# handlers file for config_credentials\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 43 }, { "path": "roles/config_credentials/tasks/main.yml", "content": "---\n- name: \"Include {{ an...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 13, "total_bytes": 2974, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_dns
216
[ "no_license" ]
[ { "path": "roles/config_dns/defaults/main.yml", "content": "dns_servers:\n - 192.168.6.3\n - 192.168.6.4\n\ndns_vrf: management\n\ndns_source_interface: Management1\n\nenforce_compliance: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 126 }, { "path": "rol...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 14, "total_bytes": 2991, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_evpn
216
[ "no_license" ]
[ { "path": "roles/config_evpn/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - config_evpn", "license_type": "no_license", "detected_licenses": [], "size_bytes": 69 }, { "path": "roles/config_evpn/handlers/main.yml", "content": "---\n# handler...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 1003, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_ha
216
[ "no_license" ]
[ { "path": "roles/config_ha/README.md", "content": "# Config HA\n\nUsed to configure HA peering on devices.\n\n## Role Variables\n\nFor F5 configurations, the following vars are required:\n\n- f5_ha_vlan = The VLAN to be used for HA replication\n- f5_ha_ports = List of interface ports used for HA Port Channe...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 5215, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_interfaces
216
[ "no_license" ]
[ { "path": "roles/config_interfaces/tasks/ios.yml", "content": "- name: Set Interface Dictionary Facts\n set_fact:\n port_config: \"{{ interface_config | json_query('[*].{name: name, enabled: enabled, description: description }') }}\"\n trunk_config: \"{{ interface_config | json_query('[?trunk].{name:...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 17, "total_bytes": 16517, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_ntp
216
[ "no_license" ]
[ { "path": "roles/config_ntp/handlers/main.yml", "content": "---\n# handlers file for config_ntp\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/config_ntp/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n role...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 15, "total_bytes": 3525, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_provisioning
216
[ "no_license" ]
[ { "path": "roles/config_provisioning/tasks/main.yml", "content": "---\n# tasks file for config_provisioning\n- name: \"Include Provisioning Tasks\"\n include_tasks: \"{{ ansible_network_os }}.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 126 }, { "path":...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 13, "total_bytes": 3661, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_routing
216
[ "no_license" ]
[ { "path": "roles/config_routing/vars/default.yml", "content": "#The entire purpose of this is to be catch-all for any device that doesn't have a device template file.\n#The conditional within the OS-specific playbook will skip hosts from there.\n", "license_type": "no_license", "detected_licenses": ...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 19, "total_bytes": 11468, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_save
216
[ "no_license" ]
[ { "path": "roles/config_save/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - config_save\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 }, { "path": "roles/config_save/tasks/main.yml", "content": "---\n- name: \"...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 11, "total_bytes": 1123, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_snmp
216
[ "no_license" ]
[ { "path": "roles/config_snmp/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Configure SNMP for network devices\n company: Red Hat\n license: \"license (BSD, MIT)\"\n min_ansible_version: 2.7\n galaxy_tags:\n - network\n - arista\n - nexus\n - ios\n - asa\n -...
{ "task_files": 7, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 13, "total_bytes": 4910, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_syslog
216
[ "no_license" ]
[ { "path": "roles/config_syslog/README.md", "content": "# Configure Syslog\n\nConfigure syslog settings. The template under templates/eos_syslog.j2 will create a list of commands and compare it to the current commands. If the \"enforce_comliance\" var is set to yes, it will remove any command that does not m...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 16, "total_bytes": 6404, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/config_vpn
216
[ "no_license" ]
[ { "path": "roles/config_vpn/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/config_vpn", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 }, { "path": "roles/config_vpn/handlers/main.yml", "content": "---\n# hand...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 2991, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/create_f5
216
[ "no_license" ]
[ { "path": "roles/create_f5/tasks/main.yml", "content": "---\n- name: Create F5 VIP\n block:\n - name: Get Next Available IP\n netbox.netbox.netbox_ip_address:\n netbox_url: \"{{ netbox_url }}\"\n netbox_token: \"{{ netbox_token }}\"\n data:\n prefix: \"{{ network_subne...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2100, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/device_upgrade
216
[ "no_license" ]
[ { "path": "roles/device_upgrade/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Upgrade firmware for network devices\n company: Red Hat\n license: \"license (BSD, MIT)\"\n min_ansible_version: 2.7\n galaxy_tags:\n - network\n - arista\n - nexus\n - ios\n - asa\n...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 7707, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/facts
216
[ "no_license" ]
[ { "path": "roles/facts/handlers/main.yml", "content": "---\n# handlers file for facts\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "roles/facts/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - facts...
{ "task_files": 8, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 12, "total_bytes": 2454, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/parsers
216
[ "no_license" ]
[ { "path": "roles/parsers/tasks/eos.yml", "content": "- name: Parse EOS Interface Stats\n ansible.netcommon.cli_parse:\n command: show interfaces | json\n parser:\n name: ansible.netcommon.json\n set_fact: interfaces\n\n- name: Parse EOS BGP Stats\n ansible.netcommon.cli_parse:\n command: ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 5982, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/snow_compliance
216
[ "no_license" ]
[ { "path": "roles/snow_compliance/tasks/bgp_eos.yml", "content": "- name: Get Arista BGP Status\n import_role:\n name: config_routing\n tasks_from: eos\n check_mode: true\n\n- name: Set Arista Compliance Facts\n set_fact:\n problem_description: \"The following changes need to be made:\\n\\n******...
{ "task_files": 12, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 16, "total_bytes": 7346, "all_permissive": false }
ansible_role
AdamMack2007/Ansible-Network-Playbooks
012102ed419cb6d380166e5ac77166ae7fabe5c5
5
roles/snow_network_cmdb
216
[ "no_license" ]
[ { "path": "roles/snow_network_cmdb/handlers/main.yml", "content": "---\n# handlers file for roles/snow_network_cmdb", "license_type": "no_license", "detected_licenses": [], "size_bytes": 47 }, { "path": "roles/snow_network_cmdb/tests/test.yml", "content": "---\n- hosts: localhost\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1775, "all_permissive": false }
ansible_role
gg-master/Yandex_RestApi
2f366ec80115c732cf6df33c094a687e4d95fffa
0
deploy/roles/magicComparator
216
[ "no_license" ]
[ { "path": "deploy/roles/magicComparator/handlers/main.yml", "content": "---\n\n- name: restart magicComparator\n service:\n name: docker-compose@magicComparator\n state: restarted", "license_type": "no_license", "detected_licenses": [], "size_bytes": 113 }, { "path": "deploy/r...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2310, "all_permissive": false }
ansible_role
talfreds/ACIT4640
ac8008b7a0c9cfc6b33717f6d78496689c3d7021
0
vagrant_ansible/roles/base_system
216
[ "no_license" ]
[ { "path": "vagrant_ansible/roles/base_system/tasks/main.yml", "content": "- name: set SE Linux permissive, potentially redundant for basebox configuration\n selinux:\n policy: targeted\n state: permissive\n\n- name: open firewall ports for http, potentially redundant as above\n become: y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 318, "all_permissive": false }
ansible_role
talfreds/ACIT4640
ac8008b7a0c9cfc6b33717f6d78496689c3d7021
0
vagrant_ansible/roles/mongodb
216
[ "no_license" ]
[ { "path": "vagrant_ansible/roles/mongodb/tasks/main.yml", "content": "---\n - block:\n - copy:\n src: mongodb-org-4.2.repo\n dest: /etc/yum.repos.d/mongodb-org-4.2.repo\n become: yes\n\n - name: Install mongo\n package:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 917, "all_permissive": false }
ansible_role
talfreds/ACIT4640
ac8008b7a0c9cfc6b33717f6d78496689c3d7021
0
vagrant_ansible/roles/nginx
216
[ "no_license" ]
[ { "path": "vagrant_ansible/roles/nginx/tasks/main.yml", "content": "---\n- name: Install NGINX\n become: yes\n package:\n name: nginx\n state: installed\n\n- name: copy nginx.conf\n become: yes\n template:\n src: nginx.conf\n dest: /etc/nginx/nginx.conf\n notify: res...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 239, "all_permissive": false }
ansible_role
talfreds/ACIT4640
ac8008b7a0c9cfc6b33717f6d78496689c3d7021
0
vagrant_ansible/roles/nodejs
216
[ "no_license" ]
[ { "path": "vagrant_ansible/roles/nodejs/tasks/main.yml", "content": "---\n- name: install npm and nodejs\n become: yes\n package:\n name: nodejs\n state: installed\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 111 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 111, "all_permissive": false }
ansible_role
talfreds/ACIT4640
ac8008b7a0c9cfc6b33717f6d78496689c3d7021
0
vagrant_ansible/roles/todoapp_service
216
[ "no_license" ]
[ { "path": "vagrant_ansible/roles/todoapp_service/tasks/main.yml", "content": "---\n- name: install git\n become: yes\n package:\n state: installed\n name:\n - git\n\n- name: create app user\n become: yes\n user:\n name: \"{{ todo_user }}\"\n password:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1196, "all_permissive": false }
ansible_role
suman526/kubernetes-cluster-on-aws
7ceeee3f8664d89183ca04faae00a24ebb218b7f
0
kubernetes_cluster/roles/aws-instance
216
[ "no_license" ]
[ { "path": "kubernetes_cluster/roles/aws-instance/vars/main.yml", "content": "---\n# vars file for aws-instance\ninstance_tag:\n - kubernetes-master\n - kubernetes-slave1\n - kubernetes-slave2\n\nreg_name: ap-south-1\nsubnet: subnet-2dfcf545\nami_id: ami-045e6fa7127ab1ac4\nkey_pair: myke...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1624, "all_permissive": false }
ansible_role
suman526/kubernetes-cluster-on-aws
7ceeee3f8664d89183ca04faae00a24ebb218b7f
0
kubernetes_cluster/roles/kubernetes_master
216
[ "no_license" ]
[ { "path": "kubernetes_cluster/roles/kubernetes_master/tasks/main.yml", "content": "---\n# tasks file for kubernetes_master\n\n- name: Configuring Kubernetes Repository\n yum_repository:\n name: k8s\n description: Kubernetes repo\n baseurl: https://packages.cloud.google.com/yum/repos/kubernetes-el7...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1963, "all_permissive": false }
ansible_role
suman526/kubernetes-cluster-on-aws
7ceeee3f8664d89183ca04faae00a24ebb218b7f
0
kubernetes_cluster/roles/kubernetes_slave
216
[ "no_license" ]
[ { "path": "kubernetes_cluster/roles/kubernetes_slave/tasks/main.yml", "content": "---\n# tasks file for kubernetes_slave\n- name: configuring yum for slave node\n yum_repository:\n name: kube\n description: Kubernetes repo\n baseurl: https://packages.cloud.google.com/yum/repos/kubernetes-el7-$base...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1357, "all_permissive": false }
ansible_role
anton-png/ansible-wordpress
0eee939b9ca2a1aa30a12e284537cb93b002ade5
0
roles/nginx
216
[ "no_license" ]
[ { "path": "roles/nginx/tasks/setup-Archlinux.yml", "content": "---\n- name: Ensure nginx is installed for Archlinux.\n pacman:\n name: \"{{ nginx_package_name }}\"\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 }, { "path": "roles/ngi...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 614, "all_permissive": false }
ansible_role
anton-png/ansible-wordpress
0eee939b9ca2a1aa30a12e284537cb93b002ade5
0
roles/wordpress
216
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/setup-RedHat.yml", "content": "---\n# WordPress Configuration\n- name: Set ownership\n file:\n path: \"/var/www/{{ server_name }}\"\n state: directory\n recurse: yes\n owner: \"{{ wp_owner }}\" # nginx | apache\n group: \"{{ wp_group }}\" # nginx | apache\n",...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 432, "all_permissive": false }
ansible_role
AlexHBR/DiplomDevOps
2be828aef04a98ba8dd1c1f9b7f8f53f867e7b48
0
ansible/roles/runner
217
[ "no_license" ]
[ { "path": "ansible/roles/runner/tasks/main.yml", "content": "---\n# tasks file for runner\n- name: Install git\n become: true\n package:\n name: \"git\"\n state: present\n update_cache: yes\n\n- name: Download the binary for system\n ansible.builtin.get_url:\n url: https://gitlab-runner-down...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1410, "all_permissive": false }
ansible_role
AlexHBR/DiplomDevOps
2be828aef04a98ba8dd1c1f9b7f8f53f867e7b48
0
ansible/roles/wordpress
217
[ "no_license" ]
[ { "path": "ansible/roles/wordpress/tasks/main.yml", "content": "#https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-wordpress-with-lamp-on-ubuntu-18-04-ru\n---\n- name: Install Nginx\n apt:\n name=nginx\n state=latest\n\n- name: Install Nginx config for site\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2349, "all_permissive": false }
ansible_role
Ryan4815/crowd-up
58525822ab0e7d1c4f44bbc071ade52eb8d5b96e
0
ansible-role-crowd/roles/mimacom.crowd
217
[ "permissive" ]
[ { "path": "ansible-role-crowd/roles/mimacom.crowd/vars/main.yml", "content": "---\n# vars file for crowd", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 25 }, { "path": "ansible-role-crowd/roles/mimacom.crowd/tests/test.yml", "content": ...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 14, "total_bytes": 8632, "all_permissive": true }
ansible_role
omgsian/ansible-wordpress
cbbea863b4cb1e174e176dda14f64fe166be75e2
0
controller/provisioning/roles/mysql
217
[ "no_license" ]
[ { "path": "controller/provisioning/roles/mysql/tasks/main.yml", "content": "---\n# tasks file for mysql\n\n- name: Create mysql database\n community.mysql.mysql_db:\n name: '{{ wp_mysql_db }}'\n state: present\n become: yes\n\n- name: Create mysql user\n community.mysql.mysql_user:\n name: '{{ w...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 408, "all_permissive": false }
ansible_role
kusabar/ansible_pub
6c3c3e00e265c19484a6393fbca22d79fb7573d8
0
roles/002_mkdir
217
[ "no_license" ]
[ { "path": "roles/002_mkdir/tasks/main.yml", "content": "---\n# 002_mkdir/tasks/main.yml\n\n- name: Create directory [java]\n win_file:\n path: \"{{ item }}\"\n state: directory\n with_items:\n - C:\\Java\\jdk1.8.0_201\n - C:\\Java\\jre1.8.0_201\n\n- name: Create directory [log]\n win_file:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 756, "all_permissive": false }
ansible_role
kusabar/ansible_pub
6c3c3e00e265c19484a6393fbca22d79fb7573d8
0
roles/003_install_java
217
[ "no_license" ]
[ { "path": "roles/003_install_java/tasks/main.yml", "content": "---\n# 003_install_java/tasks/main.yml\n\n# ansible マネジャの/root/git/soft/ に下記があること\n# ・jdk-8u201-windows-x64.exe\n#\n# JDK\n#\n\n# javaをDLできるURL\n# https://objectstorage.ap-tokyo-1.oraclecloud.com/p/8-NPnOsY3YIp_5jpKbF8pkCHw8MwbQ5Je0lIiu-5T0FCJI4...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 985, "all_permissive": false }
ansible_role
kusabar/ansible_pub
6c3c3e00e265c19484a6393fbca22d79fb7573d8
0
roles/004_install_resin
217
[ "no_license" ]
[ { "path": "roles/004_install_resin/tasks/main.yml", "content": "---\n# 004_install_resin/tasks/main.yml\n\n#\n# https://www.intra-mart.jp/document/library/iap/public/setup/iap_setup_guide/texts/install/windows/resin_windows.html#id4\n#\n\n# resinをDLできるURL\n# https://objectstorage.ap-tokyo-1.oraclecloud.com/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2444, "all_permissive": false }
ansible_role
NatashaHeinkens/projecten-2
1be8d1129f701d67dfe3c1aa4f663683fecc6a5c
0
Ansible/ansible/roles/common
217
[ "no_license" ]
[ { "path": "Ansible/ansible/roles/common/tasks/main.yml", "content": "# roles/common/main.yml\n---\n- name: Install common packages\n yum: pkg={{item}} state=latest\n with_items:\n - libselinux-python\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 131, "all_permissive": false }
ansible_role
NatashaHeinkens/projecten-2
1be8d1129f701d67dfe3c1aa4f663683fecc6a5c
0
Ansible/ansible/roles/miscJEE
217
[ "no_license" ]
[ { "path": "Ansible/ansible/roles/miscJEE/tasks/main.yml", "content": "---\n# file miscLamp/tasks/main.yml\n- name: Firewall-services\n firewalld: port={{item}} permanent=true state=enabled\n with_items:\n - 8080/tcp\n notify: restart firewalld\n\n", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 175, "all_permissive": false }
ansible_role
NatashaHeinkens/projecten-2
1be8d1129f701d67dfe3c1aa4f663683fecc6a5c
0
Ansible/ansible/roles/miscLamp
217
[ "no_license" ]
[ { "path": "Ansible/ansible/roles/miscLamp/tasks/main.yml", "content": "---\n# file miscLamp/tasks/main.yml\n- name: Firewall-services\n firewalld: service={{item}} permanent=true state=enabled\n with_items:\n - https\n - http\n notify: restart firewalld\n\n", "license_type": "no_license", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 186, "all_permissive": false }
ansible_role
NatashaHeinkens/projecten-2
1be8d1129f701d67dfe3c1aa4f663683fecc6a5c
0
Ansible/ansible/roles/tomcat
217
[ "no_license" ]
[ { "path": "Ansible/ansible/roles/tomcat/tasks/main.yml", "content": "---\n# file java/tasks/main.yml\n- name: Install tomcat\n yum: pkg={{item}} state=latest\n with_items:\n - tomcat\n - tomcat-webapps\n - tomcat-admin-webapps\n \n- name: Download tomcat-tools pt1\n command: \"sudo mkdir /usr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 615, "all_permissive": false }
ansible_role
NatashaHeinkens/projecten-2
1be8d1129f701d67dfe3c1aa4f663683fecc6a5c
0
Ansible/ansible/roles/update
217
[ "no_license" ]
[ { "path": "Ansible/ansible/roles/update/tasks/main.yml", "content": "---\n# file update/tasks/main.yml\n- name: Update\n command: \"sudo yum -y update\"\n \n- name: Upgrade\n command: \"sudo yum -y upgrade\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 131, "all_permissive": false }
ansible_role
NatashaHeinkens/projecten-2
1be8d1129f701d67dfe3c1aa4f663683fecc6a5c
0
Ansible/ansible/roles/web
217
[ "no_license" ]
[ { "path": "Ansible/ansible/roles/web/tasks/main.yml", "content": "---\n# file web/tasks/main.yml\n- name: Install Apache\n yum: pkg={{item}} state=latest\n with_items:\n - httpd\n - php\n - php-xml\n - php-mysql\n\n- name: Start Apache service\n service: name=httpd state=running enabled=yes\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 230, "all_permissive": false }
ansible_role
fschoenwaelder/vps-playbook
85984a67475b403b9c062f9cfcc1da506f81a2b0
0
roles/setup
217
[ "no_license" ]
[ { "path": "roles/setup/tasks/main.yml", "content": "# install neccessary packages\n- name: Update OS\n become: true\n ansible.builtin.apt:\n upgrade: yes\n update_cache: yes\n cache_valid_time: 86400 #One day\n\n- name: Ensure neccessary packages are installed.\n ansible.builtin.apt:\n pkg:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2508, "all_permissive": false }
ansible_role
baccenfutter/ansible-workshop
a483f1f677d1b454e81e15e5ca6553e053ae491a
1
roles/heinlein.role-apache2
217
[ "no_license" ]
[ { "path": "roles/heinlein.role-apache2/defaults/main.yml", "content": "apache2_enabled: no\napache2_listen_port: 80\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 44 }, { "path": "roles/heinlein.role-apache2/tasks/main.yml", "content": "- include: apache2.ym...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 381, "all_permissive": false }
ansible_role
baccenfutter/ansible-workshop
a483f1f677d1b454e81e15e5ca6553e053ae491a
1
roles/heinlein.role-openexchange
217
[ "no_license" ]
[ { "path": "roles/heinlein.role-openexchange/defaults/main.yml", "content": "openexchange_enabled: no\nopenexchange_mysql_user: openexchange\nopenexchange_mysql_user_pass: <PASSWORD>\nopenexchange_admin_master: oxadminmaster\nopenexchange_admin_master_password: <PASSWORD>\nopenexchange_ctx_admin: oxadmin\nop...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1352, "all_permissive": false }
ansible_role
abchyw/anbsible-aws-setup
06656923f99b187ca88e5c3e9c82b9fe00ce4181
0
roles/webserver
217
[ "no_license" ]
[ { "path": "roles/webserver/tasks/nginx.yml", "content": "---\n- name: define nginx_user\n set_fact:\n nginx_user: \"{{ __nginx_user }}\"\n when: nginx_user is not defined\n#- name: enable nginx repo.\n# template: \n# src: nginx.repo.j2 \n# dest: /etc/yum.repos.d/nginx.repo\n# owner: root \n# ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 957, "all_permissive": false }
ansible_role
aesouza98/ansible-arch
11fdea3ef0883cf37c5027330363cf49477ffd60
0
roles/crmall
217
[ "no_license" ]
[ { "path": "roles/crmall/vars/crmall_packages.yml", "content": "crmall_packages:\n - python3\n - python-virtualenv\n - python-virtualenvwrapper\n - git-crypt\n - docker-compose\n - vagrant\n - virtualbox\n - apache\n - glab\n\ncrmall_aur:\n - tgswitch\n - tfswitch\n - pyth...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 631, "all_permissive": false }
ansible_role
aesouza98/ansible-arch
11fdea3ef0883cf37c5027330363cf49477ffd60
0
roles/packages
217
[ "no_license" ]
[ { "path": "roles/packages/tasks/flatpak.yml", "content": "---\n- name: Install flatpak\n pacman:\n name: flatpak\n state: present\n\n- name: Install Flathub\n flatpak_remote:\n name: flathub\n state: present\n flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo\n method: use...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3069, "all_permissive": false }
ansible_role
aesouza98/ansible-arch
11fdea3ef0883cf37c5027330363cf49477ffd60
0
roles/pacman
217
[ "no_license" ]
[ { "path": "roles/pacman/tasks/main.yml", "content": "---\n- name: Import pacman config tasks\n include_task: pacman.yml\n\n- name: Import AUR config tasks\n include_task: aur.yml\n\n- name: Import Nix package manager task\n include_task: nix.yml\n\n- name: Import chaotic-aur install task\n include_task:...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1838, "all_permissive": false }
ansible_role
aesouza98/ansible-arch
11fdea3ef0883cf37c5027330363cf49477ffd60
0
roles/user
217
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yml", "content": "- name: Sudo configuration\n copy: \n src: sudoers\n dest: /etc/sudoers\n mode: 0440\n validate: 'visudo -cf %s'\n\n- name: Install user shell\n pacman:\n name: \"{{ user.shell }}\"\n state: present\n\n- name: Set user shell and wheel group\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 348, "all_permissive": false }
ansible_role
aesouza98/ansible-arch
11fdea3ef0883cf37c5027330363cf49477ffd60
0
roles/wm
217
[ "no_license" ]
[ { "path": "roles/wm/vars/wm.yml", "content": "wm_pkg:\n - hyprland\n - waybar\n - dunst\n - rofi\n - swaybg\n - grim\n - slurp\n - pamixer\n - nautilus\n - ttf-jetbrains-mono-nerd\n - brightnessctl\n - playerctl\n - lxappearance-gtk3\n - python-pywal\n - imagemag...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1100, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.0.0/openstack-full/H.1.1.0/roles/controller
217
[ "no_license" ]
[ { "path": "upgrade/H.1.0.0/openstack-full/H.1.1.0/roles/controller/files/cinder.sh", "content": "#!/bin/bash\n#\n# Copyright (C) 2014 eNovance SAS <<EMAIL>>\n#\n# Author: <NAME> <<EMAIL>>\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n# not use this file except in complianc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3994, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.0.0/openstack-full/H.1.1.0/roles/loadbalancer
217
[ "no_license" ]
[ { "path": "upgrade/H.1.0.0/openstack-full/H.1.1.0/roles/loadbalancer/tasks/main.yml", "content": "---\n# file: main.yml\n\n- name: edeploy upgrade\n edeploy: command=upgrade version={{ version }}\n tags: before_config\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 117, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.1.0/openstack-full/H.1.2.0/roles/compute
217
[ "no_license" ]
[ { "path": "upgrade/H.1.1.0/openstack-full/H.1.2.0/roles/compute/tasks/main.yml", "content": "---\n# file: roles/common/tasks/main.yml\n\n- name: edeploy upgrade\n edeploy: command=upgrade version={{ version }}\n tags: before_config\n\n# This release upgrades Havana 2 to Havana 3\n# Some services need to b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 413, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.1.0/openstack-full/H.1.2.0/roles/controller
217
[ "no_license" ]
[ { "path": "upgrade/H.1.1.0/openstack-full/H.1.2.0/roles/controller/tasks/main.yml", "content": "---\n# file: roles/common/tasks/main.yml\n\n- name: edeploy upgrade\n edeploy: command=upgrade version={{ version }}\n tags: before_config\n\n# This release upgrades Havana 2 to Havana 3\n# Some services need t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1017, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.2.0/openstack-full/H.1.3.0/roles/common
217
[ "no_license" ]
[ { "path": "upgrade/H.1.2.0/openstack-full/H.1.3.0/roles/common/tasks/main.yml", "content": "---\n# file: roles/common/tasks/main.yml\n\n- name: edeploy upgrade\n edeploy: command=upgrade version={{ version }}\n tags: before_config\n", "license_type": "no_license", "detected_licenses": [], "siz...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 136, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.2.0/openstack-full/H.1.3.0/roles/controller
217
[ "no_license" ]
[ { "path": "upgrade/H.1.2.0/openstack-full/H.1.3.0/roles/controller/tasks/main.yml", "content": "---\n# file: roles/common/tasks/main.yml\n\n- name: edeploy upgrade\n edeploy: command=upgrade version={{ version }}\n tags: before_config\n\n# This release upgrades MariaDB-galera-server\n- name: restart mysql...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 450, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.3.0/openstack-full/I.1.0.0/roles/compute
217
[ "no_license" ]
[ { "path": "upgrade/H.1.3.0/openstack-full/I.1.0.0/roles/compute/tasks/main.yml", "content": "---\n# file: roles/compute/tasks/main.yml\n\n# migrate instances\n- name: migrate instances\n script: migrate.sh {{ ansible_hostname }} {{ os_username }} {{ os_tenant_name }} {{ os_password }} {{ os_auth_url }}\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1379, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.3.0/openstack-full/I.1.0.0/roles/controller
217
[ "no_license" ]
[ { "path": "upgrade/H.1.3.0/openstack-full/I.1.0.0/roles/controller/files/neutron.sh", "content": "#!/bin/bash\n#\n# Copyright (C) 2014 eNovance SAS <<EMAIL>>\n#\n# Author: <NAME> <<EMAIL>>\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n# not use this file except in complian...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 7057, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.3.0/openstack-full/I.1.0.0/roles/full
217
[ "no_license" ]
[ { "path": "upgrade/H.1.3.0/openstack-full/I.1.0.0/roles/full/tasks/main.yml", "content": "---\n# file: roles/full/tasks/main.yml\n# this role is used when all services are running on the same node.\n\n- name: migrate instances on another node\n script: migrate.sh {{ ansible_hostname }} {{ os_username }} {{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 7362, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.3.0/openstack-full/I.1.0.0/roles/loadbalancer
217
[ "no_license" ]
[ { "path": "upgrade/H.1.3.0/openstack-full/I.1.0.0/roles/loadbalancer/tasks/main.yml", "content": "---\n# file: roles/loadbalancer/tasks/main.yml\n\n# Upgrade packages to Icehouse\n- name: edeploy upgrade\n edeploy: command=upgrade version=D7-{{ version }}\n tags: before_config\n when: ansible_distributio...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 880, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/H.1.3.0/openstack-full/I.1.0.0/roles/network
217
[ "no_license" ]
[ { "path": "upgrade/H.1.3.0/openstack-full/I.1.0.0/roles/network/tasks/main.yml", "content": "---\n# file: roles/network/tasks/main.yml\n\n# Stop Services\n- name: stop services before upgrade\n service: name={{ item }} state=stopped\n with_items:\n - neutron-l3-agent\n - neutron-lbaas-agent\n - n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1112, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/I.1.0.0/I.1.1.0/roles/compute
217
[ "no_license" ]
[ { "path": "upgrade/I.1.0.0/I.1.1.0/roles/compute/tasks/main.yml", "content": "---\n# file: roles/compute/tasks/main.yml\n\n- name: edeploy upgrade\n edeploy: command=upgrade version=D7-{{ version }}\n tags: before_config\n when: ansible_distribution == 'Debian'\n", "license_type": "no_license", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 181, "all_permissive": false }
ansible_role
redhat-cip/edeploy-roles
b0b01ded4ecf5c2564710cb59eb3f249d26944ba
3
upgrade/I.1.0.0/I.1.1.0/roles/controller
217
[ "no_license" ]
[ { "path": "upgrade/I.1.0.0/I.1.1.0/roles/controller/tasks/main.yml", "content": "---\n# file: roles/controller/tasks/main.yml\n\n# Stop some upgraded services before\n- name: stop heat-api, nova-api and neutron-server\n service: name={{ item }} state=stopped\n with_items:\n - nova-api\n - neutron-se...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1354, "all_permissive": false }