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
shey/osr-infra
2e93d9d0ce15b71e9e013f9cbc88c9f74121b821
0
roles/nodejs
74
[ "no_license" ]
[ { "path": "roles/nodejs/tasks/main.yml", "content": "- name: \"Add nodejs apt key\"\n apt_key:\n url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key\n state: present\n\n- name: Add NodeSource repository\n apt_repository:\n repo: \"deb https://deb.nodesource.com/node_18.x {{ ansible_distribu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 632, "all_permissive": false }
ansible_role
shey/osr-infra
2e93d9d0ce15b71e9e013f9cbc88c9f74121b821
0
roles/postgresql
74
[ "no_license" ]
[ { "path": "roles/postgresql/tasks/install.yml", "content": "- name: add apt key\n apt_key:\n url: https://www.postgresql.org/media/keys/ACCC4CF8.asc\n state: present\n\n- name: add repo\n apt_repository:\n repo: deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main\n state: present\n\n-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 541, "all_permissive": false }
ansible_role
shey/osr-infra
2e93d9d0ce15b71e9e013f9cbc88c9f74121b821
0
roles/rails-app
74
[ "no_license" ]
[ { "path": "roles/rails-app/templates/puma.rb.j2", "content": "# {{ ansible_managed }}\n\npp \"Gemfile context: #{ENV[\"BUNDLE_GEMFILE\"]}\"\n\nmax_threads_count = ENV.fetch(\"RAILS_MAX_THREADS\", 2)\nmin_threads_count = ENV.fetch(\"RAILS_MIN_THREADS\", max_threads_count)\nthreads min_threads_count, max_thre...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 13, "total_bytes": 11956, "all_permissive": false }
ansible_role
shey/osr-infra
2e93d9d0ce15b71e9e013f9cbc88c9f74121b821
0
roles/redis-server
74
[ "no_license" ]
[ { "path": "roles/redis-server/tasks/configure.yml", "content": "- name: configure redis\n template:\n src: redis.conf.j2\n dest: /etc/redis/redis.conf\n owner: redis\n group: redis\n mode: 0644\n tags: ['redis-config']\n\n- name: restart redis\n ansible.builtin.systemd:\n name: redis-se...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 302, "all_permissive": false }
ansible_role
HailsonJunior/ansible-examples
b76b706156470495b8cb86f0248fb8ba910a6236
0
Clamav - CentOS7/roles/install-clamav
74
[ "no_license" ]
[ { "path": "Clamav - CentOS7/roles/install-clamav/tasks/selinux-after.yml", "content": "--- # Configure Selinux\n- name: Enable selinux\n shell: setenforce 1\n tags: enable-selinux\n\n- name: Configure selinux audit\n shell: grep \"clamd\" /var/log/audit.log | audit2allow -M clamd\n tags: selinux\n\n- na...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 4132, "all_permissive": false }
ansible_role
HailsonJunior/ansible-examples
b76b706156470495b8cb86f0248fb8ba910a6236
0
zabbix-agent - Ubuntu/roles/install-zabbix-agent
74
[ "no_license" ]
[ { "path": "zabbix-agent - Ubuntu/roles/install-zabbix-agent/tasks/restart-agent.yml", "content": "- name: Restart and enable Zabbix agent2\n service:\n name: zabbix-agent2\n state: restarted\n enabled: yes\n tags: restart-zabbix-agent\n", "license_type": "no_license", "detected_licenses":...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 1380, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/base
74
[ "no_license" ]
[ { "path": "roles/base/tasks/bash-history.yml", "content": "---\n- name: enable bash history\n lineinfile:\n dest: /etc/profile\n line: \"export HISTTIMEFORMAT=\\\"%F %T \\\"\"\n regexp: \"HISTTIMEFORMAT\"\n insertafter: EOF\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 1900, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/beanstalkd
74
[ "no_license" ]
[ { "path": "roles/beanstalkd/templates/beanstalkd.conf.j2", "content": "[program:beanstalkd]\ncommand=beanstalkd -V -z {{ beanstalkd_job_size }} -b /var/lib/beanstalkd/\nuser=root\npriority={{ beanstalkd_supervisor_priority }}\nstdout_logfile=/var/log/supervisor/beanstalkd-out.log\nstderr_logfile=/var/log/su...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 2949, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/consul
74
[ "no_license" ]
[ { "path": "roles/consul/templates/check_ec2_load.py.j2", "content": "#!/usr/bin/python\n\nfrom sys import exit\nfrom argparse import ArgumentParser\nfrom datetime import datetime, timedelta\nfrom operator import itemgetter\nfrom requests import get\nfrom boto3.session import Session\n\n\nparser = ArgumentPa...
{ "task_files": 11, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 22, "total_bytes": 9955, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/fast_apt
74
[ "no_license" ]
[ { "path": "roles/fast_apt/tasks/main.yml", "content": "---\n- name: ensures sources.list is configured\n copy:\n src: sources.list\n dest: /etc/apt/sources.list\n owner: root\n group: root\n mode: 0644\n- name: update apt cache\n apt:\n update_cache: yes\n", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 210, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/java
74
[ "no_license" ]
[ { "path": "roles/java/tasks/main.yml", "content": "---\n- name: add webupd8team repo\n apt_repository:\n repo: \"ppa:webupd8team/java\"\n update-cache: yes\n- name: automatically agree to the oracle license terms\n shell: echo debconf shared/accepted-oracle-license-v1-1 select true | debconf-set-sel...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 344, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/miniconda
74
[ "no_license" ]
[ { "path": "roles/miniconda/tasks/main.yml", "content": "---\n- name: download miniconda\n become: yes\n become_user: \"{{ deploy_user }}\"\n get_url:\n url: http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh\n dest: /tmp/miniconda.sh\n mode: 0755\n- name: install miniconda\n b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 906, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/naked
74
[ "no_license" ]
[ { "path": "roles/naked/tasks/main.yml", "content": "---\n- include: users.yml\n- include: ufw.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 44 }, { "path": "roles/naked/tasks/ufw.yml", "content": "---\n- name: install ufw\n apt:\n name: ufw\n- name:...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1058, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/nginx
74
[ "no_license" ]
[ { "path": "roles/nginx/files/nginx.conf", "content": "user www-data;\n\nworker_processes auto;\nworker_rlimit_nofile 8192;\n\nevents {\n worker_connections 8000;\n}\n\nerror_log /var/log/nginx/error.log warn;\npid /var/run/nginx.pid;\n\nhttp {\n server_tokens off;\n\n include /etc/n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2846, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/postgresql
74
[ "no_license" ]
[ { "path": "roles/postgresql/templates/postgresql.json.j2", "content": "{\n \"service\": {\n \"id\": \"postgresql\",\n \"name\": \"postgresql\",\n \"tags\": [\"postgresql\"],\n \"port\": 5432\n },\n \"checks\": [\n {\n \"id\": \"postgresql-running\",\n \"name\": \"PostgreSQL runni...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 2348, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/prometheus
74
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yml", "content": "---\n- include: structure.yml\n- include: install.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 52 }, { "path": "roles/prometheus/meta/main.yml", "content": "---\ndependencies:\n - { role: superv...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 2183, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/python
74
[ "no_license" ]
[ { "path": "roles/python/tasks/pyenv.yml", "content": "---\n- name: install pyenv\n git:\n repo: git://github.com/yyuu/pyenv.git\n dest: ~/.pyenv\n accept_hostkey: true\n- name: create plugin directory\n file:\n path: ~/.pyenv/plugins/\n owner: \"{{ deploy_user }}\"\n group: \"{{ deploy_u...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1795, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/rabbitmq
74
[ "no_license" ]
[ { "path": "roles/rabbitmq/tasks/main.yml", "content": "---\n- name: install apt key\n apt_key:\n url: \"https://www.rabbitmq.com/rabbitmq-signing-key-public.asc\"\n state: present\n- name: add repository\n apt_repository:\n repo: 'deb http://www.rabbitmq.com/debian/ testing main'\n state: pres...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 353, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/redis
74
[ "no_license" ]
[ { "path": "roles/redis/tasks/required-packages.yml", "content": "---\n- name: install required packages\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - gcc\n - make\n - libc6-dev\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 138 }, ...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 3459, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/ruby
74
[ "no_license" ]
[ { "path": "roles/ruby/tasks/main.yml", "content": "---\n- include: required-packages.yml\n- include: rbenv.yml\n become: yes\n become_user: \"{{ deploy_user }}\"\n- include: ruby.yml\n become: yes\n become_user: \"{{ deploy_user }}\"\n\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1875, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/smokeping
74
[ "no_license" ]
[ { "path": "roles/smokeping/tasks/main.yml", "content": "---\n- include: rrdtool.yml\n- include: structure.yml\n- include: install.yml\n- include: configure.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "path": "roles/smokeping/files/smokeping.vhost...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 8179, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/solr
74
[ "no_license" ]
[ { "path": "roles/solr/tasks/collection.yml", "content": "---\n- name: create collection\n become: yes\n become_user: solr\n command: \"/opt/solr/bin/solr create -c {{ item }} -n data_driven_schema_configs\"\n args:\n creates: \"/var/solr/data/{{ item }}\"\n with_items: \"{{ solr_collections }}\"\n ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 921, "all_permissive": false }
ansible_role
mediar-solutions/cameos
5fcbde702fad2bc27e250acfccac83fb2c817b56
5
roles/supervisor
74
[ "no_license" ]
[ { "path": "roles/supervisor/tasks/install.yml", "content": "---\n- name: install python-setuptools\n apt:\n name: python-setuptools\n state: present\n- name: install supervisor\n easy_install:\n name: supervisor\n- name: create configuration directory\n file:\n path: /etc/supervisord.d\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 634, "all_permissive": false }
ansible_role
krillavilla/Give-Your-Application-Auto-Deploy-Superpowers
bdc19a2066506db95b1b465fab4029dc3a45c5fe
0
.circleci/ansible/roles/deploy
74
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "---\n- name: \"update apt packages.\"\n become: true\n apt:\n update_cache: yes\n\n- name: \"upgrade packages\"\n become: true\n apt:\n upgrade: yes\n\n- name: \"install dependencies.\"\n become: true\n apt:\n name: [\"nod...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 947, "all_permissive": false }
ansible_role
tnalpgge/solid-broccoli
709db6167314287463f504da4269c0565f3ef232
0
openshift-origin-fedora/provisioning/roles/common
74
[ "no_license" ]
[ { "path": "openshift-origin-fedora/provisioning/roles/common/tasks/main.yml", "content": "---\n- name: Ensure Python is installed to support Ansible\n yum:\n name: python27\n state: installed\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 105, "all_permissive": false }
ansible_role
tnalpgge/solid-broccoli
709db6167314287463f504da4269c0565f3ef232
0
openshift-origin-fedora/provisioning/roles/osho
74
[ "no_license" ]
[ { "path": "openshift-origin-fedora/provisioning/roles/osho/tasks/main.yml", "content": "---\n# https://github.com/openshift/origin/blob/master/docs/cluster_up_down.md\n\n- name: Permit IPv4 forwarding\n sysctl:\n name: net.ipv4.ip_forward\n value: 1\n state: present\n\n- name: Ensure Docker is ins...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1866, "all_permissive": false }
ansible_role
tnalpgge/solid-broccoli
709db6167314287463f504da4269c0565f3ef232
0
openshift-origin-fedora/provisioning/roles/osho-master
74
[ "no_license" ]
[ { "path": "openshift-origin-fedora/provisioning/roles/osho-master/tasks/main.yml", "content": "---\n- name: Start OpenShift Origin Cluster\n command: /usr/bin/oc cluster up\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 77 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 77, "all_permissive": false }
ansible_role
manukoli1986/ansible-adhoc
986a8528e18393a645d0e769354bf2936a197772
0
roles/check_domain_availability
74
[ "no_license" ]
[ { "path": "roles/check_domain_availability/tasks/main.yml", "content": "---\n- name: Check if adcli is installed\n command: which adcli\n register: adcli_check\n ignore_errors: true\n\n- name: Install adcli if not present\n yum:\n name: adcli\n state: present\n update_cache: true\n become: tru...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1104, "all_permissive": false }
ansible_role
manukoli1986/ansible-adhoc
986a8528e18393a645d0e769354bf2936a197772
0
roles/k8s-cert-sync
74
[ "no_license" ]
[ { "path": "roles/k8s-cert-sync/README.md", "content": "Role Name\n=========\n\nCopying the KUBECONFIG file to remote server so that they can communicate with Kube-API.\n\n\nDependencies\n------------\n\nThe renew script should be run before executing role \"k8s-cert-sync\".\n\n \nUsage\n-----\n\nDefine your...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 2976, "all_permissive": false }
ansible_role
manukoli1986/ansible-adhoc
986a8528e18393a645d0e769354bf2936a197772
0
roles/test_db
74
[ "no_license" ]
[ { "path": "roles/test_db/tasks/main.yml", "content": "---\n- name: Loop over MariaDB DBs with each host\n include_tasks: loop.yml\n loop: \"{{ db_list }}\"\n loop_control:\n loop_var: db_info\n vars:\n db_list: \"{{ db_servers_info }}\"\n\n", "license_type": "no_license", "detected_license...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 5181, "all_permissive": false }
ansible_role
manukoli1986/ansible-adhoc
986a8528e18393a645d0e769354bf2936a197772
0
roles/test_db_gg
74
[ "no_license" ]
[ { "path": "roles/test_db_gg/tasks/loop.yml", "content": "- block:\r\n - name: Create a Test Database\r\n community.mysql.mysql_db:\r\n name: \"{{ db_name }}\"\r\n state: present\r\n\r\n - name: Create an test table in the database\r\n community.mysql.mysql_query:\r\n que...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1570, "all_permissive": false }
ansible_role
nitishvu/MeanStackDockerAwsApp
239d003dd0d3c2e760bbbe542c927ea53fff1076
0
infra/roles/createEc2Instnace
74
[ "no_license" ]
[ { "path": "infra/roles/createEc2Instnace/tasks/main.yml", "content": "- name: Create security group\n ec2_group:\n name: \"{{ project_name }}_security_group\"\n description: \"{{ project_name }} security group\"\n region: \"{{ region }}\"\n rules:\n - proto: tcp # ssh\n from_port: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2301, "all_permissive": false }
ansible_role
nitishvu/MeanStackDockerAwsApp
239d003dd0d3c2e760bbbe542c927ea53fff1076
0
infra/roles/setupAppServer
74
[ "no_license" ]
[ { "path": "infra/roles/setupAppServer/scripts/config.sh", "content": "sudo apt update\n\nsudo apt install docker.io\nsudo usermod -aG docker ubuntu\nsudo service docker start\nsudo apt install git\ncd MeanStackDockerAwsApp/app\ndocker-compose up -d", "license_type": "no_license", "detected_licenses...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1037, "all_permissive": false }
ansible_role
fiorix/freegeoip
4693d60f740b9e68083dbc7541ec0abe9dabe936
4,934
cmd/freegeoip/ansible-playbook/roles/base
74
[ "no_license" ]
[ { "path": "cmd/freegeoip/ansible-playbook/roles/base/tasks/main.yml", "content": "- include: packages.yml\n- include: settings.yml\n- include: iptables.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 72 }, { "path": "cmd/freegeoip/ansible-playbook/roles/base/...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1882, "all_permissive": false }
ansible_role
fiorix/freegeoip
4693d60f740b9e68083dbc7541ec0abe9dabe936
4,934
cmd/freegeoip/ansible-playbook/roles/freegeoip
74
[ "no_license" ]
[ { "path": "cmd/freegeoip/ansible-playbook/roles/freegeoip/tasks/main.yml", "content": "- name: Download freegeoip\n get_url: url={{ freegeoip_url }}\n dest=/var/tmp/freegeoip.tgz\n owner=root\n group=root\n mode=0600\n register: freegeoip_download\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1388, "all_permissive": false }
ansible_role
fiorix/freegeoip
4693d60f740b9e68083dbc7541ec0abe9dabe936
4,934
cmd/freegeoip/ansible-playbook/roles/memcached
74
[ "no_license" ]
[ { "path": "cmd/freegeoip/ansible-playbook/roles/memcached/tasks/main.yml", "content": "- name: Install memcached\n apt: name=memcached state=installed\n\n- name: Write custom memcached.conf\n copy: src=memcached.conf\n dest=/etc/memcached.conf\n owner=root\n group=root\n mode=0...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 329, "all_permissive": false }
ansible_role
fiorix/freegeoip
4693d60f740b9e68083dbc7541ec0abe9dabe936
4,934
cmd/freegeoip/ansible-playbook/roles/nodeexporter
74
[ "no_license" ]
[ { "path": "cmd/freegeoip/ansible-playbook/roles/nodeexporter/tasks/main.yml", "content": "- name: Download node exporter\n get_url: url={{ nodeexporter_url }}\n dest=/var/tmp/nodeexporter.tgz\n owner=root\n group=root\n mode=0600\n register: nodeexporter_dow...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 945, "all_permissive": false }
ansible_role
fiorix/freegeoip
4693d60f740b9e68083dbc7541ec0abe9dabe936
4,934
cmd/freegeoip/ansible-playbook/roles/prometheus
74
[ "no_license" ]
[ { "path": "cmd/freegeoip/ansible-playbook/roles/prometheus/handlers/main.yml", "content": "- name: restart-nginx\n service: name=nginx state=restarted\n\n- name: restart-prometheus\n service: name=prometheus state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 3922, "all_permissive": false }
ansible_role
fiorix/freegeoip
4693d60f740b9e68083dbc7541ec0abe9dabe936
4,934
cmd/freegeoip/ansible-playbook/roles/redis
74
[ "no_license" ]
[ { "path": "cmd/freegeoip/ansible-playbook/roles/redis/handlers/main.yml", "content": "- name: restart redis\n service: name=redis-server state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 67 }, { "path": "cmd/freegeoip/ansible-playbook/roles/redis/t...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 517, "all_permissive": false }
ansible_role
ggnanasekaran77/ansible
932e526f37945cbb5eebdd509e56628c41ec9c84
0
roles/java_docker_deploy
74
[ "no_license" ]
[ { "path": "roles/java_docker_deploy/tasks/do.yml", "content": "--- # java_docker_deploy\n- name: Deploy Java App\n docker_container:\n name: \"{{ app.container.name }}\"\n image: \"{{ app.container.image }}\"\n pull: yes\n recreate: yes\n stop_timeout: \"{{ app.container.stop_timeout }}\"\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 781, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/aws-ansible/playbooks/roles/cloudformation-infra
66
[ "no_license" ]
[ { "path": "reference-architecture/aws-ansible/playbooks/roles/cloudformation-infra/tasks/main.yaml", "content": "---\n- name: Create Greenfield Infrastructure\n cloudformation:\n stack_name: \"{{ stack_name }}\"\n state: \"present\"\n region: \"{{ region }}\"\n template: \"roles/cloudformation-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 8593, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/aws-ansible/playbooks/roles/infra-node-scaleup
66
[ "no_license" ]
[ { "path": "reference-architecture/aws-ansible/playbooks/roles/infra-node-scaleup/tasks/main.yaml", "content": "---\n- name: Gather facts\n openshift_facts:\n role: common\n\n- name: use the default project\n shell: \"{{ openshift.common.client_binary }} project default\"\n\n- name: Count the infrastruc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 653, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/aws-ansible/playbooks/roles/instance-groups
66
[ "no_license" ]
[ { "path": "reference-architecture/aws-ansible/playbooks/roles/instance-groups/tasks/main.yaml", "content": "---\n- name: Add bastion to group\n add_host:\n name: \"bastion.{{ public_hosted_zone }}\"\n groups: bastion\n when:\n - byo_bastion == \"no\"\n\n- name: Add masters to requisite groups\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1972, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/aws-ansible/playbooks/roles/pre-install-check
66
[ "no_license" ]
[ { "path": "reference-architecture/aws-ansible/playbooks/roles/pre-install-check/tasks/main.yaml", "content": "---\n- name: Get current Ansible version on local host\n command: command ansible --version\n register: local_ansible_version\n- assert:\n that:\n - \"'ansible 2.2' in local_ansible_versio...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 244, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/aws-ansible/playbooks/roles/terminate-all
66
[ "no_license" ]
[ { "path": "reference-architecture/aws-ansible/playbooks/roles/terminate-all/tasks/main.yaml", "content": "---\n- name: Force remove s3 bucket\n s3_bucket:\n name: \"{{ s3_bucket_name }}\"\n state: absent\n force: yes\n- name: Remove Cloudformation\n cloudformation:\n stack_name: \"{{ stack_nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 596, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/gce-ansible/playbooks/roles/bastion-prerequisites
66
[ "no_license" ]
[ { "path": "reference-architecture/gce-ansible/playbooks/roles/bastion-prerequisites/tasks/main.yaml", "content": "---\n- name: Gather facts\n openshift_facts:\n role: common\n\n- block:\n - name: Clear yum cache\n command: \"yum clean all\"\n ignore_errors: true\n\n - name: Install the required ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 358, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/gce-ansible/playbooks/roles/gce-cloudconfig
66
[ "no_license" ]
[ { "path": "reference-architecture/gce-ansible/playbooks/roles/gce-cloudconfig/tasks/main.yaml", "content": "---\n- name: ensure the /etc/origin/cloudprovider folder exists\n file:\n name: \"{{ openshift.common.config_base }}cloudprovider\"\n state: directory\n recurse: yes\n\n- name: configure gce...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 657, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/gce-ansible/playbooks/roles/instance-groups
66
[ "no_license" ]
[ { "path": "reference-architecture/gce-ansible/playbooks/roles/instance-groups/tasks/main.yaml", "content": "---\n- name: Add masters to requisite groups\n add_host:\n name: \"{{ hostvars[item].gce_name }}\"\n groups: masters, etcd, nodes, cluster_hosts\n openshift_node_labels:\n role: master\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 968, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/gce-ansible/playbooks/roles/inventory-file-creation
66
[ "no_license" ]
[ { "path": "reference-architecture/gce-ansible/playbooks/roles/inventory-file-creation/tasks/main.yaml", "content": "---\n- name: create a new file\n file:\n path: ../static-inventory\n state: absent\n\n- name: Create base file\n copy:\n src: inventory\n dest: ../static-inventory\n remote_sr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1260, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/gce-ansible/playbooks/roles/master-http-proxy
66
[ "no_license" ]
[ { "path": "reference-architecture/gce-ansible/playbooks/roles/master-http-proxy/tasks/main.yaml", "content": "---\n- name: install haproxy\n package: name=haproxy state=present\n\n- name: configure haproxy\n template: src=haproxy.cfg.j2 dest=/etc/haproxy/haproxy.cfg\n\n- name: start and enable haproxy ser...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 246, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/gce-ansible/playbooks/roles/openshift-registry
66
[ "no_license" ]
[ { "path": "reference-architecture/gce-ansible/playbooks/roles/openshift-registry/templates/registry.j2", "content": "version: 0.1\nlog:\n level: debug\nhttp:\n addr: :5000\nstorage:\n cache:\n layerinfo: inmemory\n gcs:\n bucket: \"{{ gcs_registry_bucket }}\"\n rootdirectory: /registry\nauth:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 4214, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/gce-ansible/playbooks/roles/restrict-gce-metadata
66
[ "no_license" ]
[ { "path": "reference-architecture/gce-ansible/playbooks/roles/restrict-gce-metadata/tasks/main.yaml", "content": "---\n- name: block access to the GCE metadata server\n iptables:\n state: present\n action: insert\n chain: OUTPUT\n destination: 169.254.169.254\n reject_with: icmp-host-prohibi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1264, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/gce-ansible/playbooks/roles/validate-app
66
[ "no_license" ]
[ { "path": "reference-architecture/gce-ansible/playbooks/roles/validate-app/tasks/main.yaml", "content": "---\n- block:\n - name: Gather facts\n openshift_facts:\n role: common\n\n - name: Create the validation project\n command: \"{{ openshift.common.client_binary }} new-project valid...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1290, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/vmware-ansible/playbooks/roles/create-vm-haproxy
66
[ "no_license" ]
[ { "path": "reference-architecture/vmware-ansible/playbooks/roles/create-vm-haproxy/tasks/main.yaml", "content": "---\n- name: Create haproxy VM on vCenter\n vmware_guest:\n hostname: \"{{ vcenter_host }}\"\n username: \"{{ vcenter_username }}\"\n password: \"{{ <PASSWORD> }}\"\n name: \"{{ item...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1541, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/vmware-ansible/playbooks/roles/create-vm-nfs
66
[ "no_license" ]
[ { "path": "reference-architecture/vmware-ansible/playbooks/roles/create-vm-nfs/tasks/main.yaml", "content": "---\n- name: Create NFS VM on vCenter\n vmware_guest:\n hostname: \"{{ vcenter_host }}\"\n username: \"{{ vcenter_username }}\"\n password: \"{{ <PASSWORD> }}\"\n name: \"{{ item.value.g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1507, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/vmware-ansible/playbooks/roles/create-vm-prod-ose
66
[ "no_license" ]
[ { "path": "reference-architecture/vmware-ansible/playbooks/roles/create-vm-prod-ose/tasks/main.yaml", "content": "---\n- name: Create production VMs on vCenter\n vmware_guest:\n hostname: \"{{ vcenter_host }}\"\n username: \"{{ vcenter_username }}\"\n password: \"{{ <PASSWORD> }}\"\n name: \"{{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1810, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/vmware-ansible/playbooks/roles/haproxy-server
66
[ "no_license" ]
[ { "path": "reference-architecture/vmware-ansible/playbooks/roles/haproxy-server/tasks/main.yaml", "content": "---\n- name: Adding updated VM to inventory with hostname\n add_host: hostname=\"{{host_inventory[inventory_hostname].guestname}}\" ansible_ssh_host=\"{{host_inventory[inventory_hostname].guestname...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1172, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/vmware-ansible/playbooks/roles/instance-groups
66
[ "no_license" ]
[ { "path": "reference-architecture/vmware-ansible/playbooks/roles/instance-groups/tasks/main.yaml", "content": "---\n- name: Add masters to requisite groups\n add_host:\n name: \"{{ hostvars[item].inventory_hostname }}\"\n groups: masters, etcd, nodes, cluster_hosts\n openshift_node_labels:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 946, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/vmware-ansible/playbooks/roles/nfs-server
66
[ "no_license" ]
[ { "path": "reference-architecture/vmware-ansible/playbooks/roles/nfs-server/tasks/main.yaml", "content": "---\n- name: Adding updated VM to inventory with hostname\n add_host: hostname=\"{{host_inventory[inventory_hostname].guestname}}\" ansible_ssh_host=\"{{host_inventory[inventory_hostname].guestname}}.{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2728, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
reference-architecture/vmware-ansible/playbooks/roles/openshift-registry
66
[ "no_license" ]
[ { "path": "reference-architecture/vmware-ansible/playbooks/roles/openshift-registry/tasks/main.yaml", "content": "---\n- name: Switch to default project\n command: oc project default\n\n- name: set the selector for the default namespace\n command: oc annotate namespace default openshift.io/node-selector=r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2512, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
roles/exclude
66
[ "no_license" ]
[ { "path": "roles/exclude/tasks/main.yaml", "content": "---\n- name: Gather facts\n openshift_facts:\n role: common\n\n- block:\n - name: Determine if excluder packages are installed\n rpm_q:\n name: \"atomic-openshift-excluder\"\n state: present\n register: openshift_excluder_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 714, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
roles/prerequisites
66
[ "no_license" ]
[ { "path": "roles/prerequisites/tasks/main.yaml", "content": "---\n- name: Gather facts\n openshift_facts:\n role: common\n\n- block:\n - name: Clear yum cache\n command: \"yum clean all\"\n ignore_errors: true\n\n - name: Install the required rpms\n package:\n name: NetworkManager\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 910, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
roles/rhsm-subscription
66
[ "no_license" ]
[ { "path": "roles/rhsm-subscription/tasks/main.yaml", "content": "---\n- block:\n - name: Check for sat config file\n stat: path=/etc/rhsm/rhsm.conf.kat-backup\n register: sat_cfg\n\n - name: Remove satellite configuration if using RH CDN\n command: \"mv -f /etc/rhsm/rhsm.conf.kat-backup...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1185, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
roles/unexclude
66
[ "no_license" ]
[ { "path": "roles/unexclude/tasks/main.yaml", "content": "---\n- name: Gather facts\n openshift_facts:\n role: common\n\n- block:\n - name: Determine if excluder packages are installed\n rpm_q:\n name: \"atomic-openshift-excluder\"\n state: present\n register: openshift_exclude...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 722, "all_permissive": false }
ansible_role
oscpgluster/openshift-ansible-contrib-new
b196aec48aa38c1b0c6a387122a0e45361dc4d90
0
roles/validate-app
66
[ "no_license" ]
[ { "path": "roles/validate-app/tasks/main.yaml", "content": "---\n- block:\n - name: Gather facts\n openshift_facts:\n role: common\n\n - name: Create the validation project\n command: \"{{ openshift.common.client_binary }} new-project validate\"\n\n - name: Create Hello world app\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1397, "all_permissive": false }
ansible_role
ameer-sk1401/Ansible_handbooks_hands-on
f7ef05a18bb11f5cd17f399c349b78d603282702
0
ansible/roles/python
66
[ "no_license" ]
[ { "path": "ansible/roles/python/tasks/main.yml", "content": "---\n- name: Install apache2 package\n ansible.builtin.apt:\n name: apache2\n state: present\n- name: Ensure apache2 is running\n ansible.builtin.service:\n name: apache2\n state: started\n enabled: true\n- name: Create a sample i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 408, "all_permissive": false }
ansible_role
mano1233/rancher-deploy
d396a0f93baff3e123e2a2f6ed3d9c8c57727c46
0
playbook/roles/configure-system
66
[ "no_license" ]
[ { "path": "playbook/roles/configure-system/templates/tokencreate_request.json.j2", "content": "{\n\"clusterId\": \"{{clusterid}}\",\n\"name\": \"\",\n\"namespaceId\": \"\"\n}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 }, { "path": "playbook/roles/configur...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 14, "total_bytes": 16559, "all_permissive": false }
ansible_role
AVBaranov93/semaphore
e939ef156e35f731d1dc56c316cb6e0de6988ea3
0
roles/create_oas_users
66
[ "no_license" ]
[ { "path": "roles/create_oas_users/tasks/main.yml", "content": "---\n- include_tasks: 10_create_oas_users.yml\n- include_tasks: 20_create_ssh_dir.yml\n- include_tasks: 30_install_ssh_keys.yml\n- include_tasks: 40_make_correct_rights_authorized_keys.yml\n", "license_type": "no_license", "detected_lice...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1076, "all_permissive": false }
ansible_role
AVBaranov93/semaphore
e939ef156e35f731d1dc56c316cb6e0de6988ea3
0
roles/create_sshd_config
66
[ "no_license" ]
[ { "path": "roles/create_sshd_config/tasks/main.yml", "content": "- name: generate sshd_config file from template\n template:\n src: \"{{ ssh_template_file }}\"\n dest: /etc/ssh/sshd_config\n owner: root\n group: root\n mode: 0644\n notify: restart_sshd\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 196, "all_permissive": false }
ansible_role
AVBaranov93/semaphore
e939ef156e35f731d1dc56c316cb6e0de6988ea3
0
roles/install_ssh_key
66
[ "no_license" ]
[ { "path": "roles/install_ssh_key/tasks/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n - include_tasks: create_ssh_dir.yml\n - include_tasks: install_ssh_key.yml\n - name: Set correct rights for authorized_keys\n include_tasks: set_rights.yml\n", "license_type": "no_license", "detect...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 912, "all_permissive": false }
ansible_role
AVBaranov93/semaphore
e939ef156e35f731d1dc56c316cb6e0de6988ea3
0
roles/iptables
66
[ "no_license" ]
[ { "path": "roles/iptables/tasks/main.yml", "content": "---\n- block:\n\n - name: Ensure iptables-persistent is installed\n apt:\n name: iptables-persistent\n state: latest\n update_cache: yes\n\n - name: Allow Related and Established Connections\n iptables:\n chai...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1302, "all_permissive": false }
ansible_role
AVBaranov93/semaphore
e939ef156e35f731d1dc56c316cb6e0de6988ea3
0
roles/zabbix-agent-install
66
[ "no_license" ]
[ { "path": "roles/zabbix-agent-install/tasks/configure.yml", "content": "- name: Configure agent\n template:\n src: \"zabbix_agentd.conf.j2\"\n dest: \"/etc/zabbix/zabbix_agentd.conf\"\n notify: Restart Zabbix-Agent\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": ...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1416, "all_permissive": false }
ansible_role
DudeCalledBro/pihole
f99a5c7dedf728f63aed9d26756abe642e85bd53
1
roles/nginx
66
[ "no_license" ]
[ { "path": "roles/nginx/templates/default.conf.j2", "content": "{{ ansible_managed | comment }}\n\nserver {\n listen 80;\n listen [::]:80;\n\n location / {\n set $upstream_app 127.0.0.1;\n set $upstream_port 8080;\n set $upstream_proto http;\n proxy_pass $upstream_proto:/...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 2392, "all_permissive": false }
ansible_role
DudeCalledBro/pihole
f99a5c7dedf728f63aed9d26756abe642e85bd53
1
roles/pihole
66
[ "no_license" ]
[ { "path": "roles/pihole/tasks/main.yml", "content": "- name: Create pi-hole directory\n ansible.builtin.file:\n path: \"{{ pihole_docker_path }}\"\n owner: \"{{ pihole_docker_file_owner }}\"\n group: \"{{ pihole_docker_file_group }}\"\n state: directory\n mode: 0755\n\n- name: Create pi-hole...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3630, "all_permissive": false }
ansible_role
DudeCalledBro/pihole
f99a5c7dedf728f63aed9d26756abe642e85bd53
1
roles/pihole-exporter
66
[ "no_license" ]
[ { "path": "roles/pihole-exporter/handlers/main.yml", "content": "- name: Restart Container\n ansible.builtin.command: >-\n docker compose --ansi never --progress plain restart\n args:\n chdir: \"{{ pihole_exporter_docker_path }}\"\n changed_when: true\n listen: restart pihole exporter\n", "lic...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2312, "all_permissive": false }
ansible_role
DudeCalledBro/pihole
f99a5c7dedf728f63aed9d26756abe642e85bd53
1
roles/resolvconf
66
[ "no_license" ]
[ { "path": "roles/resolvconf/handlers/main.yml", "content": "- name: Regenerate Resolvconf\n ansible.builtin.command: resolvconf -u\n changed_when: true\n listen: regenerate resolvconf\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { "path": "roles/reso...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 591, "all_permissive": false }
ansible_role
DVSR/FirstProject
993e5c7726dfa45666f8307e8d45bd9f651ece64
0
Roles/roles/webservers
66
[ "no_license" ]
[ { "path": "Roles/roles/webservers/tasks/main.yml", "content": "# tasks file for webservers\n- name: installation of the webserver in centos\n yum: name=httpd state=latest\n #async: 200\n poll: 3\n when: ansible_os_family==\"RedHat\"\n notify: restart httpd\n\n- name: installation of webserver in Ubuntu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 411, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/certbot
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/certbot/tasks/debian_jessie.yml", "content": "- name: Install certbot\n apt: >\n name={{ item }}\n state=latest\n default_release=jessie-backports\n update_cache=yes\n with_items:\n - certbot\n become: yes\n become_user: root\n tags: certbot_debian\n\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 861, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/docker_compose_up
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/docker_compose_up/tasks/main.yml", "content": "---\n\n- name: Stop nginx\n service:\n name: nginx\n state: stopped\n become: yes\n become_user: root\n tags: docker_compose_up\n\n- name: Deregister nginx from init scripts\n systemd:\n name: nginx\n enabled: n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2020, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/docker_install
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/docker_install/templates/rsyslog.j2", "content": "# Log Docker container logs to file per tag\n$template DockerLogs, \"{{project_base_dir}}/log/docker/%syslogtag:R,ERE,1,ZERO:.*docker/([^\\[]+)--end%.log\"\nif $programname == 'docker' then -?DockerLogs\n& stop\n", "licen...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3732, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/filebeat
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/filebeat/templates/filebeat.j2", "content": "filebeat.inputs:\n\n- type: log\n enabled: true\n paths:\n - /var/log/*.log\n - /var/log/messages\n exclude_files: ['\\.gz$']\n tail_files: true\n\n- type: log\n enabled: true\n paths:\n - /var/log/nginx/*\n - /h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 4037, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/git_ssh
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/git_ssh/tasks/main.yml", "content": "---\n\n- name: add gitlab ssh key\n copy: >\n src=~/.ssh/id_rsa.web3vn_deployment\n dest=~/.ssh/id_rsa_deloyment\n owner=admin\n mode=0600\n\n- name: configure ssh to use ansible key for gitlab.com\n template: >\n src=\"{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 487, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/node_exporter
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/node_exporter/tasks/main.yml", "content": "---\n\n- name: Check node-exporter\n stat: path=/usr/local/bin/node-exporter\n register: bin_exporter\n tags: node-exporter\n\n- name: Download and unpack node-exporter\n unarchive: >\n src=https://github.com/prometheus/node_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2995, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/postgis
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/postgis/tasks/main.yml", "content": "---\n\n- name: Debian\n include: debian.yml \n when: \"ansible_distribution == 'Debian'\"\n\n- name: Ubuntu\n include: ubuntu.yml \n when: \"ansible_distribution == 'Ubuntu'\"\n", "license_type": "no_license", "detected_licens...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 711, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/postgres_install
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/postgres_install/tasks/main.yml", "content": "---\n\n- name: Add apt key for postgresql\n apt_key: >\n url=\"https://www.postgresql.org/media/keys/ACCC4CF8.asc\"\n state=present\n become: yes\n become_user: root\n tags: postgres_install\n\n- name: Add apt_repositor...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1087, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/process_exporter
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/process_exporter/templates/config.yml.j2", "content": "process_names:\n - name: \"{{'{{'}}.Comm{{'}}'}}\" \n cmdline:\n - '.+' ", "license_type": "no_license", "detected_licenses": [], "size_bytes": 75 }, { "path": "backend/ansible/roles/process_e...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2378, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/slack
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/slack/tasks/main.yml", "content": "---\n\n- name: get updater name\n local_action: command git config user.name\n register: updater\n tags: slack\n\n- name: send notification via Slack\n local_action:\n module: slack\n token: \"{{ slack_notify.url }}\"\n# channe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 380, "all_permissive": false }
ansible_role
huannguyen4404/ansible
86fc02a961d555c0777d79d1b1332129c5559706
0
backend/ansible/roles/system
66
[ "no_license" ]
[ { "path": "backend/ansible/roles/system/tasks/debian_stretch.yml", "content": "---\n\n- name: Install base packages\n apt: >\n update_cache=yes\n name={{ item }} state=present\n with_items:\n - bash \n - build-essential\n - curl \n - git\n - htop \n - libffi-dev \n - libfreetyp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 729, "all_permissive": false }
ansible_role
AndreyAgafonov/DevOps
4299ee42ac7749ac5ac456d0cb596b3b1d961fe6
0
gitlab-docker/ansible/roles/gitlab
66
[ "no_license" ]
[ { "path": "gitlab-docker/ansible/roles/gitlab/tasks/main.yml", "content": "---\n# tasks file for gitlab\n- name: Install dependices\n pip:\n name: docker-py\n\n- name: run GitLab server\n docker_container:\n name: gitlab-ce\n image: gitlab/gitlab-ee\n volumes:\n - /data\n ports:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 583, "all_permissive": false }
ansible_role
pakyrs/ansible
1fe0c269efb3e02975e09b3df3c6461d423702d4
0
roles/pac
66
[ "no_license" ]
[ { "path": "roles/pac/tasks/flatpaks.yml", "content": "---\n- name: \"Include Flatpaks specific vars\"\n include_vars: flatpaks.yml\n tags: flatpak\n\n- name: Installing Flatpaks\n package:\n name: flatpak\n tags: flatpak\n become: yes\n\n- name: Add the flathub flatpak repository remote to the user ...
{ "task_files": 18, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 26, "total_bytes": 23237, "all_permissive": false }
ansible_role
b-harvest/iac
41b58919ba511dbb0cb14d54a5846e2af26c75b5
0
roles/pruning
66
[ "no_license" ]
[ { "path": "roles/pruning/tasks/cosmprund.yml", "content": "---\n- name: Clone the repository\n git:\n repo: '{{ cosmprund_repo }}'\n dest: '/home/ubuntu/cosmprund'\n version: master\n update: yes\n force: yes\n recursive: no\n\n- name: Run make build\n command: 'make build'\n args:\n ...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 7333, "all_permissive": false }
ansible_role
kyucumber/devops-practice-sample-codes
305c191da48df5c1649ab023f6929eb8e50cb607
0
ansible/playbook/roles/java
66
[ "no_license" ]
[ { "path": "ansible/playbook/roles/java/tasks/main.yml", "content": "- name: install OpenJDK 8\n become: yes\n yum:\n name: java-1.8.0-openjdk-devel\n state: latest\n lock_timeout: 180\n\n- name: correct java version selected\n become: yes\n alternatives:\n name: java\n path: /usr/lib/jvm/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 284, "all_permissive": false }
ansible_role
jacum/hz2-cluster-provisioning
02a35e6d007777d5b43e9b8f7300dc4496d48bac
0
roles/mesos-kafka
66
[ "no_license" ]
[ { "path": "roles/mesos-kafka/tasks/main.yml", "content": "- name: Ensure kafka system user exists\n user:\n name: kafka\n system: yes\n shell: /sbin/nologin\n\n- name: Ensure kafka data directory exists and is owned by kafka\n file:\n path: /data/kafka\n state: directory\n owner: kafka\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 256, "all_permissive": false }
ansible_role
jacum/hz2-cluster-provisioning
02a35e6d007777d5b43e9b8f7300dc4496d48bac
0
roles/metric-host
66
[ "no_license" ]
[ { "path": "roles/metric-host/handlers/main.yml", "content": "---\n- name: Restart prometheus\n service: name=prometheus state=restarted enabled=yes\n\n- name: Restart grafana\n service: name=grafana-server state=restarted enabled=yes\n\n- name: Restart cron\n service: name=cron state=restarted enabled=ye...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 5169, "all_permissive": false }
ansible_role
jacum/hz2-cluster-provisioning
02a35e6d007777d5b43e9b8f7300dc4496d48bac
0
roles/postgresql-node
66
[ "no_license" ]
[ { "path": "roles/postgresql-node/templates/security/limits.conf.j2", "content": "# /etc/security/limits.conf\n* soft nofile 1024000\n* hard nofile 1024000\n* soft noproc 1024000\n* hard noproc 1024000\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 116 }, { "path...
{ "task_files": 10, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 18, "total_bytes": 12659, "all_permissive": false }
ansible_role
jacum/hz2-cluster-provisioning
02a35e6d007777d5b43e9b8f7300dc4496d48bac
0
roles/prometheus-jmx-exporter
66
[ "no_license" ]
[ { "path": "roles/prometheus-jmx-exporter/templates/logrotate.j2", "content": "{{ jmx_exporter_log_path }} {\n daily\n sharedscripts\n notifempty\n missingok\n rotate 7\n size 500M\n compress\n delaycompress\n create 664 {{ jmx_exporter_user }} {{ jmx_exporter_group }}\n postrotate\n [ ! -f ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 11076, "all_permissive": false }
ansible_role
jacum/hz2-cluster-provisioning
02a35e6d007777d5b43e9b8f7300dc4496d48bac
0
roles/prometheus-metric-proxy
66
[ "no_license" ]
[ { "path": "roles/prometheus-metric-proxy/files/opt/prometheus/refresh_nginx_config.sh", "content": "#!/bin/sh\n\nexisting_config=/etc/nginx/default.d/metrics.conf\nnew_config=/tmp/metrics.conf\n\nupdate_and_restart()\n{\ncp $new_config $existing_config\n/sbin/service nginx restart\necho \"config updated and...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 4933, "all_permissive": false }
ansible_role
jacum/hz2-cluster-provisioning
02a35e6d007777d5b43e9b8f7300dc4496d48bac
0
roles/rsyslog-source
66
[ "no_license" ]
[ { "path": "roles/rsyslog-source/tasks/main.yml", "content": "---\n#\n# RSyslog tasks\n#\n- name: Configure rsyslog\n template: src=etc/rsyslog.conf.j2 dest=/etc/rsyslog.conf mode=644\n notify: Restart rsyslog\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 145 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 145, "all_permissive": false }
ansible_role
porrupatata/postgresql_cloud_cluster
6182fc22cb9cc55bfb137868d93327b12959db02
0
roles/aws_create
76
[ "no_license" ]
[ { "path": "roles/aws_create/handlers/main.yml", "content": "---\n# handlers file for aws_create\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/aws_create/vars/main.yml", "content": "---\n# vars file for aws_create\n", "license_type...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1555, "all_permissive": false }
ansible_role
porrupatata/postgresql_cloud_cluster
6182fc22cb9cc55bfb137868d93327b12959db02
0
roles/aws_destroy
76
[ "no_license" ]
[ { "path": "roles/aws_destroy/vars/main.yml", "content": "---\n# vars file for aws_destroy\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "roles/aws_destroy/tasks/main.yml", "content": " - name: terrafrom AWS DELETION \n delegate_to: loc...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1014, "all_permissive": false }