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
lscsaw/devops-basics-ansible-playbook
389daafddcdd8c73845bf102d623b8634eb9d2dd
0
session4/roles/authorized_keys
417
[ "no_license" ]
[ { "path": "session4/roles/authorized_keys/tasks/main.yml", "content": "# - Hinzufügen von SSH-Schlüsseln aus einer Datei für den `ansible` user.\n- name: add ssh keys\n authorized_key:\n user: \"{{ user }}\"\n key: \"{{ item }}\"\n exclusive: yes\n with_file:\n - authorized_keys\n", "licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 212, "all_permissive": false }
ansible_role
ernane/vagrant-ansible-mongodb
1fd219de5264a79af79985688ccfa816178826e0
0
provisioning/roles/mongo
417
[ "no_license" ]
[ { "path": "provisioning/roles/mongo/tasks/install.yml", "content": "- name: install mongodb\n apt: name=mongodb-org update_cache=yes cache_valid_time=3600\n\n- name: install pymongo with pip\n pip: name=pymongo \n\n- name: add mongo apt key from ubuntu keyserver\n apt_key: keyserver={{ mongo.key_server }...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2056, "all_permissive": false }
ansible_role
ernane/vagrant-ansible-mongodb
1fd219de5264a79af79985688ccfa816178826e0
0
provisioning/roles/packages
417
[ "no_license" ]
[ { "path": "provisioning/roles/packages/tasks/main.yml", "content": "- name: install required packages\n apt: name={{ item }} state=present update_cache=yes cache_valid_time=3600\n with_items: required_packages\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 142 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 142, "all_permissive": false }
ansible_role
ragu101/postgres-haproxy-ansible
db7d05136fd1524791737d1ae522ca8d9ee290bb
0
roles/deploy-haproxy
417
[ "no_license" ]
[ { "path": "roles/deploy-haproxy/tasks/main.yml", "content": "---\n- name: Git checkout\n ansible.builtin.git:\n repo: '<EMAIL>:ragu101/patroni-haproxy.git'\n dest: \"{{ basepath }}/patroni-haproxy\"\n version: main\n\n- name: Install postgres helm chart\n kubernetes.core.helm:\n name: haproxy\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 423, "all_permissive": false }
ansible_role
ragu101/postgres-haproxy-ansible
db7d05136fd1524791737d1ae522ca8d9ee290bb
0
roles/postgres-operator
417
[ "no_license" ]
[ { "path": "roles/postgres-operator/vars/main.yml", "content": "---\n# vars file for postgres-operator\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/postgres-operator/handlers/main.yml", "content": "---\n# handlers file for postgres-op...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 892, "all_permissive": false }
ansible_role
ragu101/postgres-haproxy-ansible
db7d05136fd1524791737d1ae522ca8d9ee290bb
0
roles/test-haproxy
417
[ "no_license" ]
[ { "path": "roles/test-haproxy/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - test-haproxy\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "roles/test-haproxy/handlers/main.yml", "content": "---\n# ha...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 815, "all_permissive": false }
ansible_role
MyNameIs-13/steamdeck_install
25736059064566feff1be760bf3b376d8377eeb2
0
ansible/roles/steamdeck
417
[ "no_license" ]
[ { "path": "ansible/roles/steamdeck/tasks/main.yml", "content": "---\n- name: Handle user-dirs\n block:\n - name: Create new user-dirs\n ansible.builtin.file:\n path: /home/deck/{{ dir }}\n state: directory\n mode: '0755'\n loop:\n - documents\n - downloads\n ...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 10872, "all_permissive": false }
ansible_role
SnayderMorales/ansible-migrate
859943e4ae24424f0eb02052e5d3cb7271928127
0
roles/common
417
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# This playbook contains common plays that will be run on all nodes.\n#Cambiar yum por apt\n- name: Install ntp\n apt: name=ntp state=present\n tags: ntp\n\n- name: Configure ntp file\n template: src=ntp.conf.j2 dest=/etc/ntp.conf\n tags: ntp\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 520, "all_permissive": false }
ansible_role
SnayderMorales/ansible-migrate
859943e4ae24424f0eb02052e5d3cb7271928127
0
roles/db
417
[ "no_license" ]
[ { "path": "roles/db/tasks/main.yml", "content": "---\n# This playbook will install mysql and create db user and give permissions.\n\n#Cambiar yum por apt y mysql-server por mariadb\n- name: Install Mysql package\n apt: name={{ item }} state=present\n with_items:\n - mariadb-server\n\n#Cambie todas las l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1154, "all_permissive": false }
ansible_role
SnayderMorales/ansible-migrate
859943e4ae24424f0eb02052e5d3cb7271928127
0
roles/web
417
[ "no_license" ]
[ { "path": "roles/web/tasks/install_httpd.yml", "content": "---\n# These tasks install http and the php modules.\n#Cambiar yum por apt y http por apache2\n#lib-semanage es para centos ubuntu es python-semanage y\n#libselinux-python por python-selinux\n\n- name: 1. install Apache\n apt: name=apache2 state=pr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 496, "all_permissive": false }
ansible_role
rajesh-gawande/ansible-roles
7f5c8136e3cc1b1ed68afb656805b02065737f86
0
roles/play1
414
[ "no_license" ]
[ { "path": "roles/play1/handlers/main.yml", "content": "---\n# handlers file for play1\n- name: restart nginx\n service: name=nginx state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 }, { "path": "roles/play1/tasks/main.yml", "content": "---\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 401, "all_permissive": false }
ansible_role
rajesh-gawande/ansible-roles
7f5c8136e3cc1b1ed68afb656805b02065737f86
0
roles/play2
414
[ "no_license" ]
[ { "path": "roles/play2/tasks/main.yml", "content": "- name: \" adding role play2\"\n ping:\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 38, "all_permissive": false }
ansible_role
gopichandGC/roboshop-ansible-roles-tf
3ed80ccbb02d1681a88e6a2d4276321931704788
0
roles/rabbitmq
414
[ "no_license" ]
[ { "path": "roles/rabbitmq/tasks/main.yaml", "content": "- name: configure yum erlang repo\n ansible.builtin.shell: curl -s https://packagecloud.io/install/repositories/rabbitmq/erlang/script.rpm.sh | bash\n \n- name: configure yum repo for rabbitmq\n ansible.builtin.shell: curl -s https://packagecloud.i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 917, "all_permissive": false }
ansible_role
ansible-playbooks-mamono210/chrome
303a651a63c90d1c617d350b523b523526811b3a
0
roles/chrome
414
[ "no_license" ]
[ { "path": "roles/chrome/tasks/main.yml", "content": "- name: Add Google Chrome RPM package to system\n yum_repository:\n name: google-chrome\n description: google-chrome\n baseurl: http://dl.google.com/linux/chrome/rpm/stable/$basearch\n gpgcheck: yes\n gpgkey: https://dl-ssl.google.com/linu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 385, "all_permissive": false }
ansible_role
NEKOGET/ci3_aws_c9_ansible
90f1df47823667aa5c38996f6be3c5011b2a0664
0
roles/apache
414
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n- name: apache install\n yum:\n name: httpd\n state: latest\n lock_timeout: 200\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 87 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 87, "all_permissive": false }
ansible_role
NEKOGET/ci3_aws_c9_ansible
90f1df47823667aa5c38996f6be3c5011b2a0664
0
roles/mysql
414
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n\n- name: download epel-release\n yum:\n name: https://dev.mysql.com/get/mysql80-community-release-el7-1.noarch.rpm\n state: present\n lock_timeout: 200\n\n- name: install mysql\n yum:\n name: mysql80*\n state: present\n lock_timeout: 20...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 433, "all_permissive": false }
ansible_role
NEKOGET/ci3_aws_c9_ansible
90f1df47823667aa5c38996f6be3c5011b2a0664
0
roles/php
414
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n- name: install php73\n yum:\n name: php73\n state: latest\n lock_timeout: 200\n\n- name: php73-bcmath\n yum: \n name: php73-bcmath\n state: latest\n lock_timeout: 200\n\n- name: php73-devel \n yum: \n name: php73-devel \n state: late...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2354, "all_permissive": false }
ansible_role
NEKOGET/ci3_aws_c9_ansible
90f1df47823667aa5c38996f6be3c5011b2a0664
0
roles/setting
414
[ "no_license" ]
[ { "path": "roles/setting/tasks/main.yml", "content": "---\n- name: dir parmission\n command: chmod 777 /var/www\n become: yes\n \n- name: CodeIgniter create project\n command: /usr/local/bin/composer create-project kenjis/codeigniter-composer-installer CodeIgniter chdir=/var/www/ creates=/var/www/CodeIg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1135, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/apt
414
[ "no_license" ]
[ { "path": "roles/apt/defaults/main.yml", "content": "---\napt_sources_mirror: http://archive.ubuntu.com/ubuntu/\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 58 }, { "path": "roles/apt/templates/etc_apt_sources.list.j2", "content": "# See http://help.ubuntu...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4051, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/bootstrap
414
[ "no_license" ]
[ { "path": "roles/bootstrap/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Install python\n license: GPLv2\n min_ansible_version: 2.0\n platforms:\n - name: Ubuntu\n versions:\n - trusty\n", "license_type": "no_license", "detected_licenses": [], "size_bytes":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 303, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/dcos
414
[ "no_license" ]
[ { "path": "roles/dcos/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Install dcos via a bootstrap node\n license: GPLv2\n min_ansible_version: 2.0\n platforms:\n - name: Ubuntu\n versions:\n - trusty\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2128, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/dcos-bootstrap
414
[ "no_license" ]
[ { "path": "roles/dcos-bootstrap/defaults/main.yml", "content": "bootstrap_basedir: /opt/dcos\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 29 }, { "path": "roles/dcos-bootstrap/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Insta...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1657, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/docker
414
[ "no_license" ]
[ { "path": "roles/docker/README.md", "content": "Role Name\n=========\n\nThis role runs on all hosts.\n\nExample Playbook\n----------------\n\n - hosts: all\n roles:\n - common\n\nLicense\n-------\n\nGPLv2\n\nAuthor Information\n------------------\n", "license_type": "no_license", "de...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1908, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/firewall
414
[ "no_license" ]
[ { "path": "roles/firewall/tasks/main.yml", "content": "---\n- name: Install ufw\n apt:\n state: present\n name: ufw\n tags:\n - firewall\n\n- name: Allow ssh\n ufw:\n proto: tcp\n port: 22\n rule: allow\n tags:\n - firewall\n\n- name: Drop everything else\n ufw:\n state: enabled...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 478, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/java
414
[ "no_license" ]
[ { "path": "roles/java/tasks/main.yml", "content": "---\n- name: Add java ppa\n apt_repository:\n state: present\n repo: \"ppa:webupd8team/java\"\n tags:\n - java\n\n- name: Check if java is already installed\n shell: \"dpkg -l | grep oracle-java8-installer\"\n register: java_check_installed\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 829, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/nginx
414
[ "no_license" ]
[ { "path": "roles/nginx/defaults/main.yml", "content": "---\nnginx_packages:\n - \"nginx\"\n - \"python-passlib\"\nnginx_removed_vhosts: []\nnginx_vhosts:\n default: |\n server {\n listen 80 default_server;\n root /usr/share/nginx/html;\n index index.html index.htm;\n server_name {{...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 4942, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/shell
414
[ "no_license" ]
[ { "path": "roles/shell/tasks/main.yml", "content": "---\n- name: Get a list of all user directories\n find:\n paths: /home\n file_type: directory\n register: home_directories\n tags:\n - shell\n\n- name: Change PS1 to contain fqdn\n replace:\n dest: \"{{ item.path }}/.bashrc\"\n regexp: '...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 501, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/ssh
414
[ "no_license" ]
[ { "path": "roles/ssh/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: SSH main config\n license: GPLv2\n min_ansible_version: 2.0\n platforms:\n - name: Ubuntu\n versions:\n - trusty\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 162 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 890, "all_permissive": false }
ansible_role
maltekrupa/ansible-dcos
29fa12a6bb04c0a55fbd92612275b42545f632d3
3
roles/timezone
414
[ "no_license" ]
[ { "path": "roles/timezone/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Timezone configuration\n license: GPLv2\n min_ansible_version: 2.0\n platforms:\n - name: Ubuntu\n versions:\n - trusty\n", "license_type": "no_license", "detected_licenses": [], "size_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 322, "all_permissive": false }
ansible_role
LeorixKol/robotdreams-petclinic
685271bcd7304ed8571b007f086356ee80ddcca6
0
Lecture_32/roles/baseline
414
[ "permissive" ]
[ { "path": "Lecture_32/roles/baseline/tasks/main.yml", "content": "# roles/baseline/tasks/main.yml\n---\n- name: Update apt and install packages\n apt:\n name: \n - vim\n - git\n - mc\n - ufw\n - curl\n - wget\n - unzip\n - traceroute\n - cifs-utils\n - p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 764, "all_permissive": true }
ansible_role
LeorixKol/robotdreams-petclinic
685271bcd7304ed8571b007f086356ee80ddcca6
0
Lecture_32/roles/firewall
414
[ "permissive" ]
[ { "path": "Lecture_32/roles/firewall/tasks/main.yml", "content": "# roles/firewall/tasks/main.yml\n---\n- name: Install and configure UFW\n apt:\n name: ufw\n state: present\n\n- name: Deny incoming by default\n ufw:\n direction: incoming\n policy: deny\n\n- name: Allow outgoing by default \n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 498, "all_permissive": true }
ansible_role
LeorixKol/robotdreams-petclinic
685271bcd7304ed8571b007f086356ee80ddcca6
0
Lecture_32/roles/mysql
414
[ "permissive" ]
[ { "path": "Lecture_32/roles/mysql/tasks/main.yml", "content": "# roles/mysql/tasks/main.yml\n---\n- name: Install MySQL packages\n apt:\n name: ['mysql-server', 'python3-pymysql']\n state: present\n update_cache: yes\n\n- name: Start MySQL service\n systemd:\n name: mysql\n state: started\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 924, "all_permissive": true }
ansible_role
LeorixKol/robotdreams-petclinic
685271bcd7304ed8571b007f086356ee80ddcca6
0
Lecture_32/roles/nginx
414
[ "permissive" ]
[ { "path": "Lecture_32/roles/nginx/templates/index.html.j2", "content": "<!DOCTYPE html>\n<html>\n<head>\n <title>{{ page_title }}</title>\n</head>\n<body>\n <h1>{{ welcome_message }}</h1>\n <p>Server: {{ inventory_hostname }}</p>\n <p>Deployed with Ansible</p>\n</body>\n</html>", "license_ty...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 778, "all_permissive": true }
ansible_role
mvdboogaard/project
d8551c2d4da2c0f7780a5e43595f89653ba3750b
0
roles/docker
414
[ "no_license" ]
[ { "path": "roles/docker/handlers/main.yml", "content": "---\n# handlers file for docker\n- name: restart docker\n service:\n name: docker\n state: restarted\n\n- name: save iptables\n community.general.iptables_state:\n state: saved\n path: /etc/sysconfig/iptables\n\n- name: save ip6tables\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1934, "all_permissive": false }
ansible_role
mvdboogaard/project
d8551c2d4da2c0f7780a5e43595f89653ba3750b
0
roles/docker_swarm
414
[ "no_license" ]
[ { "path": "roles/docker_swarm/defaults/main.yml", "content": "---\n# defaults file for docker_swarm\neth1_address: '127.0.0.2'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 63 }, { "path": "roles/docker_swarm/tasks/main.yml", "content": "---\n# tasks file f...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3047, "all_permissive": false }
ansible_role
mvdboogaard/project
d8551c2d4da2c0f7780a5e43595f89653ba3750b
0
roles/traefik
414
[ "no_license" ]
[ { "path": "roles/traefik/tasks/main.yml", "content": "---\n# tasks file for traefik\n#\n- name: install jsondiff\n pip:\n name:\n - jsondiff\n\n\n# What is this?\n# This stack exists solely to deploy the traefik_public overlay network, so that\n# other stacks (including traefik-app) can attach to i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 5134, "all_permissive": false }
ansible_role
teror4uks/less
d1a2ca3043ca2eab074b9fda90e7f22fe540502d
0
ansible-django-deploy/roles/django
414
[ "no_license" ]
[ { "path": "ansible-django-deploy/roles/django/tasks/main.yml", "content": "---\n- name: create project directory\n file: path={{ project_dir }} state=directory\n\n- name: create logs directory\n file: path={{ project_dir }}/logs state=directory\n\n- name: create project home directory\n file: path={{ pro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1898, "all_permissive": false }
ansible_role
teror4uks/less
d1a2ca3043ca2eab074b9fda90e7f22fe540502d
0
ansible-django-deploy/roles/system
414
[ "no_license" ]
[ { "path": "ansible-django-deploy/roles/system/handlers/main.yml", "content": "---\n\n#- name: restart site\n# supervisorctl: name={{ project_url }} state=restarted\n\n#- name: restart mysql\n# service: name=mysql state=restarted enabled=yes\n\n- name: restart nginx\n service: name=nginx state=restarted e...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 4674, "all_permissive": false }
ansible_role
HackerDom/ructf-2019
274ef3a1c12b253baedf3d76b2e4906c5ea4aead
12
deploy/roles/beacons
414
[ "no_license" ]
[ { "path": "deploy/roles/beacons/tasks/main.yml", "content": "- hostname:\n name: beacons\n\n# put your authorized key here\n#- name: Set authorized key\n# authorized_key:\n# user: root\n# key: \"ssh-rsa x<KEY> name@domain\"\n# state: present\n \n- name: create user\n user: name=beacons shel...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2372, "all_permissive": false }
ansible_role
HackerDom/ructf-2019
274ef3a1c12b253baedf3d76b2e4906c5ea4aead
12
deploy/roles/brainhugger
414
[ "no_license" ]
[ { "path": "deploy/roles/brainhugger/files/go-path.sh", "content": "export GOPATH=/home/brainhugger/go\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "deploy/roles/brainhugger/tasks/main.yml", "content": "- hostname:\n name: brainhugger\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1590, "all_permissive": false }
ansible_role
HackerDom/ructf-2019
274ef3a1c12b253baedf3d76b2e4906c5ea4aead
12
deploy/roles/geoapi
414
[ "no_license" ]
[ { "path": "deploy/roles/geoapi/tasks/main.yml", "content": "- hostname:\n name: geoapi\n\n# put your authorized key here\n#- name: Set authorized key\n# authorized_key:\n# user: root\n# key: \"ssh-rsa x<KEY> name@domain\"\n# state: present\n \n- name: create user\n user: name=geoapi shell=/...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 3048, "all_permissive": false }
ansible_role
HackerDom/ructf-2019
274ef3a1c12b253baedf3d76b2e4906c5ea4aead
12
deploy/roles/index
414
[ "no_license" ]
[ { "path": "deploy/roles/index/handlers/main.yml", "content": "- name: enable and restart services\n systemd: name={{ item }} enabled=yes state=restarted daemon_reload=yes\n with_items:\n - index\n\n- name: enable and restart mongo\n systemd: name=mongod enabled=yes state=restarted daemon_reload=yes\n"...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2218, "all_permissive": false }
ansible_role
HackerDom/ructf-2019
274ef3a1c12b253baedf3d76b2e4906c5ea4aead
12
deploy/roles/sandbox
414
[ "no_license" ]
[ { "path": "deploy/roles/sandbox/tasks/main.yml", "content": "- hostname:\n name: sandbox\n\n# put your authorized key here\n#- name: Set authorized key\n# authorized_key:\n# user: root\n# key: \"ssh-rsa x<KEY> name@domain\"\n# state: present\n\n- name: copy motd\n copy: src=motd dest=/etc/motd...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 3073, "all_permissive": false }
ansible_role
HackerDom/ructf-2019
274ef3a1c12b253baedf3d76b2e4906c5ea4aead
12
deploy/roles/weatherd
414
[ "no_license" ]
[ { "path": "deploy/roles/weatherd/tasks/main.yml", "content": "- hostname:\n name: weatherd\n\n# put your authorized key here\n#- name: Set authorized key\n# authorized_key:\n# user: root\n# key: \"ssh-rsa <KEY>\"\n# state: present\n \n- name: create user\n user: name=weatherd shell=/bin/false\...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1935, "all_permissive": false }
ansible_role
HackerDom/ructf-2019
274ef3a1c12b253baedf3d76b2e4906c5ea4aead
12
deploy/roles/weatherd_imagemagick
414
[ "no_license" ]
[ { "path": "deploy/roles/weatherd_imagemagick/tasks/main.yml", "content": "- file:\n path: /root/ImageMagick6/\n state: directory\n mode: 0755\n\n- name: kokfdfive\n unarchive:\n src: \"{{ playbook_dir }}/../services/weatherD/ImageMagick6.zip\"\n dest: \"/root/ImageMagick6/\"\n\n- name: dfdfd...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 425, "all_permissive": false }
ansible_role
gra6er/gitlab_install
bd94da416dd1ba4d859151b810d7d215cc69ffd7
0
roles/gitlab_install
414
[ "no_license" ]
[ { "path": "roles/gitlab_install/tasks/main.yml", "content": "---\n# tasks file for gitlab_install\n\n- name: Create gitlab directories\n file: path={{ item }} recurse=yes state=directory\n with_items:\n - \"{{ gitlab_config_dir }}\"\n - \"{{ gitlab_logs_dir }}\"\n - \"{{ gitlab_data_dir }}\"\n\n-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 998, "all_permissive": false }
ansible_role
ENOFLG/kali-automation
9652ae6bb298a3f1de78655ef004068123006ae4
0
vagrant/build/roles/browser
414
[ "no_license" ]
[ { "path": "vagrant/build/roles/browser/tasks/extensions.yml", "content": "---\n- name: Installing FoxyProxy\n shell: |\n wget https://github.com/foxyproxy/firefox-extension/releases/download/7.4.2/foxyproxy_standard-7.4.2-an+fx.xpi -P /usr/lib/firefox-esr/distribution/extensions \n mv /usr/lib/firefo...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 810, "all_permissive": false }
ansible_role
ENOFLG/kali-automation
9652ae6bb298a3f1de78655ef004068123006ae4
0
vagrant/build/roles/config
414
[ "no_license" ]
[ { "path": "vagrant/build/roles/config/tasks/dots.yml", "content": "---\n# TODO: Opportunity for futher customization\n# - name: Add pywal\n# community.general.pipx:\n# name: pywal\n# state: present\n# become: true\n# become_user: \"{{ username | default('vagrant')}}\"\n# tags: rice \n\n# - n...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 7959, "all_permissive": false }
ansible_role
ENOFLG/kali-automation
9652ae6bb298a3f1de78655ef004068123006ae4
0
vagrant/build/roles/core
414
[ "no_license" ]
[ { "path": "vagrant/build/roles/core/tasks/main.yml", "content": "---\n- include_tasks: chores.yml\n- include_tasks: docker.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 60 }, { "path": "vagrant/build/roles/core/tasks/docker.yml", "content": "---\n- name...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2758, "all_permissive": false }
ansible_role
ENOFLG/kali-automation
9652ae6bb298a3f1de78655ef004068123006ae4
0
vagrant/build/roles/tools
414
[ "no_license" ]
[ { "path": "vagrant/build/roles/tools/tasks/binary.yml", "content": "---\n- name: Installing jd-gui\n apt:\n pkg: jd-gui\n state: latest\n update_cache: true\n become: true\n #become_user: \"{{ username | default('vagrant')}}\"\n tags: binex\n\n- name: Installing ghidra\n apt:\n pkg: ghidra\...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 4341, "all_permissive": false }
ansible_role
ENOFLG/kali-automation
9652ae6bb298a3f1de78655ef004068123006ae4
0
vagrant/build/roles/user
414
[ "no_license" ]
[ { "path": "vagrant/build/roles/user/tasks/main.yml", "content": "---\n- include_tasks: pw.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "vagrant/build/roles/user/tasks/pw.yml", "content": "- name: Change password\n user:\n name: \"{{...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 321, "all_permissive": false }
ansible_role
koji/ansible-playbooks
8bf5b1d2265c9aaa17c12b2a80d2582f55c22ecc
0
local/roles/homebrew
416
[ "no_license" ]
[ { "path": "local/roles/homebrew/tasks/main.yml", "content": "---\n- name: update homebrew\n community.general.homebrew:\n update_homebrew: true\n\n- name: install homebrew packages\n community.general.homebrew:\n name:\n - anyenv\n - fd\n - ffmpeg\n - fzf\n - gh\n - ima...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 318, "all_permissive": false }
ansible_role
koji/ansible-playbooks
8bf5b1d2265c9aaa17c12b2a80d2582f55c22ecc
0
local/roles/homebrew_cask
416
[ "no_license" ]
[ { "path": "local/roles/homebrew_cask/tasks/main.yml", "content": "---\n- name: install homebrew cask packages\n community.general.homebrew_cask:\n name:\n - appcleaner\n - brave-browser\n - docker\n - github\n - notion\n - postman\n - the-unarchiver\n - visual-stu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 252, "all_permissive": false }
ansible_role
koji/ansible-playbooks
8bf5b1d2265c9aaa17c12b2a80d2582f55c22ecc
0
local/roles/mac_app_store
416
[ "no_license" ]
[ { "path": "local/roles/mac_app_store/tasks/main.yml", "content": "---\n- name: install applications from app store\n community.general.mas:\n upgrade_all: yes\n id:\n #- 497799835 #Xcode (13.2.1)\n - 409183694 #Keynote\n", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 164, "all_permissive": false }
ansible_role
koji/ansible-playbooks
8bf5b1d2265c9aaa17c12b2a80d2582f55c22ecc
0
local/roles/mac_os
416
[ "no_license" ]
[ { "path": "local/roles/mac_os/tasks/main.yml", "content": "---\n- name: AppleShowAllFiles\n community.general.osx_defaults:\n domain: com.apple.finder\n key: AppleShowAllFiles\n type: bool\n value: TRUE\n\n\n- name: AppleShowAllExtensions\n community.general.osx_defaults:\n domain: NSGlobal...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 639, "all_permissive": false }
ansible_role
opentelekomcloud-infra/graphite-operator
ea3dce283173eedaa846fcb0ad1ad87c248af24b
0
roles/graphite
416
[ "permissive" ]
[ { "path": "roles/graphite/defaults/main.yml", "content": "---\n# defaults file for Graphite\nansible_operator_meta:\n namespace: graphite\n\nstate: present\ngraphite_timezone: Europe/Berlin\ngraphite_version: \"1.1.7\"\ngraphite_image: \"graphiteapp/graphite-statsd:{{ graphite_version }}-9\"\n\ngraphite_cm...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 13, "total_bytes": 40713, "all_permissive": true }
ansible_role
Thang1102/CIS-Apache-2.4
c5282039b427fc013604505f0cd3d04fb075e736
0
CIS-webserver/roles/cis_httpd_v2
416
[ "no_license" ]
[ { "path": "CIS-webserver/roles/cis_httpd_v2/tasks/section_09_level_1_and_2.yml", "content": "---\r\n- name: 9.1. Ensure the TimeOut Is Set to 10 or Less \r\n blockinfile:\r\n path: /etc/httpd/conf/httpd.conf\r\n insertafter: \"^Group apache\"\r\n block: |\r\n #\r\n # Timeout: The number ...
{ "task_files": 31, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 33, "total_bytes": 23919, "all_permissive": false }
ansible_role
MMA17/Devops-Tranning-Excercises
2b4075ad04bb76f3b8ae6b1b0d71e15bb305e828
0
DOTRAIN 87/roles/mysql
416
[ "no_license" ]
[ { "path": "DOTRAIN 87/roles/mysql/tasks/main.yml", "content": "- include_tasks: installMySQL.yml\n- include_tasks: configureMySQL.yml\n- include_tasks: database.yml\n- include_tasks: user.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 126 }, { "path": "DOTRA...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1065, "all_permissive": false }
ansible_role
MMA17/Devops-Tranning-Excercises
2b4075ad04bb76f3b8ae6b1b0d71e15bb305e828
0
DOTRAIN 90/roles/apache
416
[ "no_license" ]
[ { "path": "DOTRAIN 90/roles/apache/tasks/configureApache.yml", "content": "- name: Cau hinh global config Apache\n template:\n src: ../templates/apache2.conf.j2\n dest: /etc/apache2/apache2.conf.j2\n owner: root\n group: root\n mode: 0644\n\n- name: Cau hinh site config\n template:\n src...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1514, "all_permissive": false }
ansible_role
MMA17/Devops-Tranning-Excercises
2b4075ad04bb76f3b8ae6b1b0d71e15bb305e828
0
DOTRAIN 90/roles/mysql
416
[ "no_license" ]
[ { "path": "DOTRAIN 90/roles/mysql/vars/main.yml", "content": "mysql_db_name: testdb\nmysql_db_collation: utf8_unicode_ci\nmysql_db_encoding: utf8\nmysql_user_name: hoangviet\nmysql_user_host: localhost\nmysql_user_password: \"<PASSWORD>\"\nmysql_user_priv: \"*.*:ALL\"\n\nmysql_port: 3306\nmysql_socket_path:...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2247, "all_permissive": false }
ansible_role
MMA17/Devops-Tranning-Excercises
2b4075ad04bb76f3b8ae6b1b0d71e15bb305e828
0
DOTRAIN 90/roles/php
416
[ "no_license" ]
[ { "path": "DOTRAIN 90/roles/php/vars/main.yml", "content": "php_packages:\n - php\n - libapache2-mod-php\n - php-mysql\n - php-curl\n - php-gd\n - php-mbstring\n - php-xml\n - php-xmlrpc\n - php-soap\n - php-intl\n - php-zip", "license_type": "no_license", "detected_licenses": [], "si...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 271, "all_permissive": false }
ansible_role
MMA17/Devops-Tranning-Excercises
2b4075ad04bb76f3b8ae6b1b0d71e15bb305e828
0
DOTRAIN 90/roles/wordpress
416
[ "no_license" ]
[ { "path": "DOTRAIN 90/roles/wordpress/tasks/installWP.yml", "content": "- name: Kiem tra xem da cai Wordpress chua\n stat: path=\"{{ root_document }}\"\n register: wp_installed\n\n- name: Cai dat Wordpress\n synchronize:\n src: ../files/wordpress/\n dest: \"{{ root_document }}\"\n when: not wp_ins...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 643, "all_permissive": false }
ansible_role
Nanako0129/minecraft-playbook
39637c86c7a04c5670773474f4147f162be2a00f
0
roles/common
416
[ "no_license" ]
[ { "path": "roles/common/tasks/get-volume-path-by-remoteID.yml", "content": "- name: Look up node configuration\n block:\n - name: 'Get the details of {{ server_external_id }}'\n ansible.builtin.uri:\n url: \"https://{{ pd_host }}/api/application/servers/external/{{ server_external_id }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1333, "all_permissive": false }
ansible_role
Nanako0129/minecraft-playbook
39637c86c7a04c5670773474f4147f162be2a00f
0
roles/create-symlink
416
[ "no_license" ]
[ { "path": "roles/create-symlink/tasks/main.yml", "content": "- name: Pre tasks\n ansible.builtin.set_fact:\n the_failed_task: \"nothing\"\n- name: Step check\n block:\n - name: Check server volume does exist\n ansible.builtin.stat:\n path: '{{ volume_path }}/{{ server_uuid }}'\n reg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1356, "all_permissive": false }
ansible_role
Nanako0129/minecraft-playbook
39637c86c7a04c5670773474f4147f162be2a00f
0
roles/install-mc-plugin
416
[ "no_license" ]
[ { "path": "roles/install-mc-plugin/tasks/main.yml", "content": "- name: Pre tasks\n ansible.builtin.set_fact:\n the_failed_task: \"nothing\"\n- name: print vars\n ansible.builtin.debug:\n msg: \"{{ plugin }}\"\n- name: Step install\n block:\n - name: \"Install from {{ plugin.type }}\"\n ans...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1959, "all_permissive": false }
ansible_role
rschamizo/aws-kube-port-scrapper
74ee8250cafa8bb27ef6b4446f5c02c8cb6f3294
1
ansible/roles/ensure-packages-installed
416
[ "no_license" ]
[ { "path": "ansible/roles/ensure-packages-installed/docs/antora.yml", "content": "name: rol-tasks-infra\nversion: '0.1'\nprerelease: '.0'\ntitle: Rol Tasks Infra\nasciidoc:\n attributes:\n source-language: asciidoc@\n xrefstyle: short@\n listing-caption: Example@\n example-caption: false\n ve...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 13, "total_bytes": 9322, "all_permissive": false }
ansible_role
rschamizo/aws-kube-port-scrapper
74ee8250cafa8bb27ef6b4446f5c02c8cb6f3294
1
ansible/roles/port-scrapper
416
[ "no_license" ]
[ { "path": "ansible/roles/port-scrapper/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - port-scrapper", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "ansible/roles/port-scrapper/templates/new-user.j2", ...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 9635, "all_permissive": false }
ansible_role
rschamizo/aws-kube-port-scrapper
74ee8250cafa8bb27ef6b4446f5c02c8cb6f3294
1
ansible/roles/terraform-scrapper
416
[ "no_license" ]
[ { "path": "ansible/roles/terraform-scrapper/tasks/main.yml", "content": "---\n\n- name: Terraform >> Template providers file\n ansible.builtin.template:\n src: \"{{ trf__template_providers_file }}\"\n dest: \"{{ trf__files_path }}/providers.tf\"\n\n- name: Terraform >> Template vars file\n ansible.b...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3403, "all_permissive": false }
ansible_role
hico-horiuchi/gcp-nomad-demo
f856535a6d59eaaa83ea8810fa8fea427b5ffffd
0
roles/consul
416
[ "no_license" ]
[ { "path": "roles/consul/tasks/main.yml", "content": "---\n- apt:\n name: unzip\n\n- unarchive:\n dest: /usr/local/bin\n remote_src: yes\n src: 'https://releases.hashicorp.com/consul/{{ consul.version }}/consul_{{ consul.version }}_linux_amd64.zip'\n\n- user:\n home: /etc/consul.d\n name: c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1449, "all_permissive": false }
ansible_role
hico-horiuchi/gcp-nomad-demo
f856535a6d59eaaa83ea8810fa8fea427b5ffffd
0
roles/nomad
416
[ "no_license" ]
[ { "path": "roles/nomad/tasks/main.yml", "content": "---\n- apt:\n name: unzip\n\n- unarchive:\n dest: /usr/local/bin\n remote_src: yes\n src: 'https://releases.hashicorp.com/nomad/{{ nomad.version }}/nomad_{{ nomad.version }}_linux_amd64.zip'\n\n- file:\n path: '{{ item }}'\n state: direct...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 954, "all_permissive": false }
ansible_role
ucs-compute-solutions/FlexPod-Express-Intersight
5f961fbcc8eb891703091023c4fe587ade0666db
0
roles/NEXUSconfig
416
[ "permissive" ]
[ { "path": "roles/NEXUSconfig/defaults/main.yml", "content": "---\nbackup_dir: \"~/\"\n#\nenabled_features:\n - lacp\n - vpc\n - interface-vlan\n - nxapi\n - udld\n - lldp\n#\nglobal_settings:\n - spanning-tree port type network default\n - spanning-tree port type edge bpduguard default\n - spanning...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 7816, "all_permissive": true }
ansible_role
alexeiev/wordpress-traefik
06db5431d33256222d0dd8db375f17511531a9ac
0
roles/deploy-app
416
[ "no_license" ]
[ { "path": "roles/deploy-app/tasks/deploy-app.yaml", "content": "- name: Criando Diretorio para deploy\n become: yes\n file:\n path: '{{ work_dir }}'\n state: directory\n mode: '2775'\n owner: root\n group: docker\n register: create_directory\n\n- name: Copiando files para deploy\n become:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2818, "all_permissive": false }
ansible_role
alexeiev/wordpress-traefik
06db5431d33256222d0dd8db375f17511531a9ac
0
roles/install-docker
416
[ "no_license" ]
[ { "path": "roles/install-docker/tasks/main.yml", "content": "---\n# tasks file for install-docker\n- include: install-docker.yaml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "roles/install-docker/vars/main.yml", "content": "---\n# vars file ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1568, "all_permissive": false }
ansible_role
staerion/home-k3s
69198f91b5434401d2b8f6b3a528666fa61776e2
0
roles/k3s-worker
420
[ "no_license" ]
[ { "path": "roles/k3s-worker/tasks/main.yml", "content": "---\n- name: Update all packages to their latest version\n apt:\n name: \"*\"\n state: latest\n\n- name: set hostname\n hostname:\n name: \"{{ new_hostname }}\"\n\n- name: download k3s binary\n get_url:\n url: https://github.com/k3s-io/...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 876, "all_permissive": false }
ansible_role
Lunalectric/windows-hack-environment
1f5cb3f34308885ddb0233803581f659ed0ae66d
1
ansible-inventory/roles/windows-ad
420
[ "no_license" ]
[ { "path": "ansible-inventory/roles/windows-ad/defaults/main.yml", "content": "---\nusername: mondoo\npassword: <PASSWORD>\ndomain_name: mondoo.hacklab\nman_adcs_winrm_domain: '{{ domain_name }}'\ndomain_admin: Administrator\ndomain_admin_password: <PASSWORD>!\nnetbios_name: MONDOO\ndomain_mode: WinThreshold...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 9355, "all_permissive": false }
ansible_role
Lunalectric/windows-hack-environment
1f5cb3f34308885ddb0233803581f659ed0ae66d
1
ansible-inventory/roles/windows-exchange
420
[ "no_license" ]
[ { "path": "ansible-inventory/roles/windows-exchange/defaults/main.yml", "content": "---\nusername: mondoo\npassword: <PASSWORD>\ndomain_name: mondoo.hacklab\nman_adcs_winrm_domain: '{{ domain_name }}'\ndomain_admin: Administrator\ndomain_admin_password: <PASSWORD>!\nnetbios_name: MONDOO\ndomain_mode: WinThr...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3516, "all_permissive": false }
ansible_role
TheTesla/ansible-tine
e14f00a7e89cc41a5d931abef1aba3323dfac891
8
roles/cms
420
[ "no_license" ]
[ { "path": "roles/cms/tasks/main.yml", "content": "---\n\n- name: Download Grav\n unarchive:\n src: https://getgrav.org/download/core/grav-admin/latest\n dest: /var/www/\n owner: www-data\n group: www-data\n remote_src: True\n register: gravinst\n\n- name: Install dependencies\n package:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2620, "all_permissive": false }
ansible_role
TheTesla/ansible-tine
e14f00a7e89cc41a5d931abef1aba3323dfac891
8
roles/common
420
[ "no_license" ]
[ { "path": "roles/common/templates/etc/hosts", "content": "127.0.0.1 {{ domain }} {{ hostname }} localhost.localdomain localhost \n::1 {{ domain }} {{ hostname }} localhost.localdomain ip6-localhost\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 147 }, { ...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 5415, "all_permissive": false }
ansible_role
TheTesla/ansible-tine
e14f00a7e89cc41a5d931abef1aba3323dfac891
8
roles/crm
420
[ "no_license" ]
[ { "path": "roles/crm/tasks/main.yml", "content": "---\n\n- include: tine20.yml\n\n- name: Restart all services\n systemd:\n name: \"{{ item }}\"\n state: restarted\n with_items:\n - unbound\n - redis\n - mysql\n - apache2\n - postfix\n - dovecot\n - rspamd\n - mailman\n\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 234, "all_permissive": false }
ansible_role
TheTesla/ansible-tine
e14f00a7e89cc41a5d931abef1aba3323dfac891
8
roles/database
420
[ "no_license" ]
[ { "path": "roles/database/tasks/main.yml", "content": "---\n\n- name: Configure mysql-server root password\n debconf:\n name: mysql-server\n question: mysql-server/root_password\n value: \"{{ mysql_root_passwd }}\"\n vtype: password\n\n- name: Repeate mysql-server root password\n debconf:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 572, "all_permissive": false }
ansible_role
TheTesla/ansible-tine
e14f00a7e89cc41a5d931abef1aba3323dfac891
8
roles/domain
420
[ "no_license" ]
[ { "path": "roles/domain/tasks/main.yml", "content": "---\n\n- include: cryptdomainmgr.yml\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "roles/domain/tasks/cryptdomainmgr.yml", "content": "---\n\n- name: Install dependencies via apt\n apt...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 7991, "all_permissive": false }
ansible_role
TheTesla/ansible-tine
e14f00a7e89cc41a5d931abef1aba3323dfac891
8
roles/mailinglist
420
[ "no_license" ]
[ { "path": "roles/mailinglist/tasks/main.yml", "content": "---\n\n\n- name: Configure mailman create_site_list\n debconf:\n name: mailman\n question: mailman/create_site_list\n value: true \n vtype: note\n\n- name: Configure mailman site_language\n debconf:\n name: mailman\n question: mai...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2067, "all_permissive": false }
ansible_role
TheTesla/ansible-tine
e14f00a7e89cc41a5d931abef1aba3323dfac891
8
roles/mailserver
420
[ "no_license" ]
[ { "path": "roles/mailserver/files/etc/rc.local", "content": "#!/bin/sh -e\n#\n# rc.local\n#\n# This script is executed at the end of each multiuser runlevel.\n# Make sure that the script will \"exit 0\" on success or any other\n# value on error.\n#\n# In order to enable or disable this script just change th...
{ "task_files": 7, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 18, "total_bytes": 19533, "all_permissive": false }
ansible_role
TheTesla/ansible-tine
e14f00a7e89cc41a5d931abef1aba3323dfac891
8
roles/up
420
[ "no_license" ]
[ { "path": "roles/up/tasks/main.yml", "content": "---\n\n- name: Debug host\n debug:\n msg: \"{{ inventory_hostname }}\"\n delegate_to: localhost\n\n- name: Waiting for startup\n local_action:\n module: wait_for\n host: \"{{ inventory_hostname }}\"\n state: started\n port: 22\n delay: 1\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 288, "all_permissive": false }
ansible_role
TheTesla/ansible-tine
e14f00a7e89cc41a5d931abef1aba3323dfac891
8
roles/webserver
420
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "---\n\n- name: Add new apache2 repo to support TLSv1.3\n apt_repository:\n repo: \"ppa:ondrej/apache2\"\n state: present\n update_cache: yes\n\n- name: Install apache2 webserver\n package:\n name: \n - apache2\n - php\n - l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1236, "all_permissive": false }
ansible_role
fodpeter/ansible-nas-pi
ab1a2d1640ab3b7ab8fe040ce4d02cc48fe583c9
0
roles/nas
420
[ "no_license" ]
[ { "path": "roles/nas/tasks/smb.yml", "content": "- name: Ensure samba packages are installed\n apt:\n name: \"{{item}}\"\n state: installed\n with_items:\n - samba\n - samba-common-bin\n\n- name: Copy the Customize smb.conf file\n template:\n src: etc_samba_smb.conf.j2\n dest: /etc/...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3983, "all_permissive": false }
ansible_role
stankoviciuslukas/master_thesis
1434283ac9954b19a2266f49211f78d14b5d6ae4
0
provision/roles/docker
420
[ "no_license" ]
[ { "path": "provision/roles/docker/tasks/main.yml", "content": "- name: Install docker dependencies\n apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - apt-transport-https \n - ca-certificates \n - curl \n - gnupg-agent \n - software-properties-common\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 882, "all_permissive": false }
ansible_role
stankoviciuslukas/master_thesis
1434283ac9954b19a2266f49211f78d14b5d6ae4
0
provision/roles/snort
420
[ "no_license" ]
[ { "path": "provision/roles/snort/tasks/main.yml", "content": "- name: Run apt-get update\n apt:\n update_cache: yes\n- name: Getting Snort dependencies\n apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - gcc\n - libpcre3-dev\n - zlib1g-dev\n - libpcap-dev\n - opens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1935, "all_permissive": false }
ansible_role
stankoviciuslukas/master_thesis
1434283ac9954b19a2266f49211f78d14b5d6ae4
0
provision/roles/suricata
420
[ "no_license" ]
[ { "path": "provision/roles/suricata/tasks/main.yml", "content": "- name: Install suricata repo\n apt_repository:\n repo: ppa:oisf/suricata-stable\n state: present\n- name: Run apt-get update\n apt:\n update_cache: yes\n- name: Get Suricata with debugging enabled\n apt:\n name: suricata-dbg\n"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 232, "all_permissive": false }
ansible_role
stankoviciuslukas/master_thesis
1434283ac9954b19a2266f49211f78d14b5d6ae4
0
provision/roles/zeek
420
[ "no_license" ]
[ { "path": "provision/roles/zeek/tasks/main.yml", "content": "- name: Run apt-get update\n apt:\n update_cache: yes\n- name: Getting zeek dependencies\n apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - cmake\n - make\n - gcp\n - g++\n - bison\n - libpcap-dev\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 619, "all_permissive": false }
ansible_role
VincentDeCoen/ops3-g08
411b711f320e5a156c9a5fb0b0f0d78a72bdd8bb
0
linux/cluster/ansible/roles/common
420
[ "no_license" ]
[ { "path": "linux/cluster/ansible/roles/common/tasks/main.yml", "content": "---\n- name: Copy the NGINX repository definition\n copy:\n src: nginx.repo\n dest: /etc/yum.repos.d/\n\n- name: Copy the EPEL repository definition\n copy:\n src: epel.repo\n dest: /etc/yum.repos.d/\n\n- name: Create t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 667, "all_permissive": false }
ansible_role
VincentDeCoen/ops3-g08
411b711f320e5a156c9a5fb0b0f0d78a72bdd8bb
0
linux/lempstack/ansible/roles/nginx
420
[ "no_license" ]
[ { "path": "linux/lempstack/ansible/roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx\n yum: name=nginx state=present\n\n- name: Replace default nginx configuration to fix duplicate default server error\n template: src=nginx.conf dest=/etc/nginx/nginx.conf\n\n- name: Copy nginx configurat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 562, "all_permissive": false }
ansible_role
VincentDeCoen/ops3-g08
411b711f320e5a156c9a5fb0b0f0d78a72bdd8bb
0
linux/remotedb/ansible/roles/mariadb
420
[ "no_license" ]
[ { "path": "linux/remotedb/ansible/roles/mariadb/tasks/main.yml", "content": "---\n# This playbook will install MariaDB and create db user and give permissions.\n\n- name: Install MariaDB package\n yum:\n pkg: \"{{ item }}\"\n state: installed\n with_items:\n - mariadb-server\n - MySQL-python\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1413, "all_permissive": false }
ansible_role
VincentDeCoen/ops3-g08
411b711f320e5a156c9a5fb0b0f0d78a72bdd8bb
0
linux/remotedb/ansible/roles/nginx
420
[ "no_license" ]
[ { "path": "linux/remotedb/ansible/roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx\n yum:\n pkg: nginx\n state: present\n\n- name: Replace default nginx configuration to fix duplicate default server error\n template:\n src: nginx.conf\n dest: /etc/nginx/nginx.conf\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 756, "all_permissive": false }
ansible_role
Otus-DevOps-2020-11/barmank32_infra
062b1c5cceb4991d53b3c71dd2a787255f87b23b
0
ansible/roles/db
420
[ "no_license" ]
[ { "path": "ansible/roles/db/tasks/install_mongo.yml", "content": "---\n- name: Install ssl\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n state: present\n update_cache: yes\n- name: Add an Apt signing key, uses whichever key is at the URL\n apt_key:\n url: https://www.m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 692, "all_permissive": false }
ansible_role
karbovskii/moodle-vagrant-ansible
b344a43d84bf2635856fcfe2ba87f9ce7fd9a4a5
0
roles/dbserver
420
[ "no_license" ]
[ { "path": "roles/dbserver/handlers/main.yml", "content": "# roles/dbserver/handlers/main.yml\n- name: Restart MariaDB\n service:\n name: mariadb\n state: restarted\n\n- name: Restart Memcached\n become: yes\n systemd:\n name: memcached\n state: restarted\n enabled: yes\n", "license_typ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2242, "all_permissive": false }
ansible_role
karbovskii/moodle-vagrant-ansible
b344a43d84bf2635856fcfe2ba87f9ce7fd9a4a5
0
roles/loadbalancer
420
[ "no_license" ]
[ { "path": "roles/loadbalancer/tasks/main.yml", "content": "---\n# - name: Check if Apache is installed\n# ansible.builtin.shell: dpkg -l | grep apache2\n# register: apache_check\n# ignore_errors: yes\n#\n# - name: Ensure Apache is stopped and disabled\n# ansible.builtin.service:\n# name: apache2...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1949, "all_permissive": false }
ansible_role
karbovskii/moodle-vagrant-ansible
b344a43d84bf2635856fcfe2ba87f9ce7fd9a4a5
0
roles/nfs_client
420
[ "no_license" ]
[ { "path": "roles/nfs_client/tasks/main.yml", "content": "---\n- name: Install NFS client packages\n apt:\n name: nfs-common\n state: present\n update_cache: yes\n\n- name: DEBUG - Show NFS mount variables\n debug:\n msg:\n - \"nfs_server: {{ nfs_server | default('undefined') }}\"\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 852, "all_permissive": false }
ansible_role
karbovskii/moodle-vagrant-ansible
b344a43d84bf2635856fcfe2ba87f9ce7fd9a4a5
0
roles/nfs_server
420
[ "no_license" ]
[ { "path": "roles/nfs_server/tasks/main.yml", "content": "---\n- name: Install NFS server packages\n apt:\n name: nfs-kernel-server\n state: present\n update_cache: yes\n\n- name: Create Moodle data directory\n file:\n path: /var/moodledata\n state: directory\n owner: www-data\n group:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 438, "all_permissive": false }
ansible_role
karbovskii/moodle-vagrant-ansible
b344a43d84bf2635856fcfe2ba87f9ce7fd9a4a5
0
roles/php_memcached
420
[ "no_license" ]
[ { "path": "roles/php_memcached/tasks/main.yml", "content": "---\n- name: Install dependencies for PHP Memcached\n apt:\n name:\n - php-memcached\n - memcached\n state: present\n become: yes\n\n- name: Configure PHP to use Memcached for sessions\n lineinfile:\n path: /etc/php/8.1/apache...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 570, "all_permissive": false }