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
sventurtle/khw-playbook
3d1fe8f3d780b514f803933911f1047e27e64763
1
roles/configs-slave
3,318
[ "no_license" ]
[ { "path": "roles/configs-slave/tasks/gen_services.yaml", "content": "- template:\n src: kube-proxy.service.j2\n dest: /etc/systemd/system/kube-proxy.service\n owner: root\n group: root\n mode: 0644\n\n- template:\n src: kubelet.service.j2\n dest: /etc/systemd/system/kubelet.service\n ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 4637, "all_permissive": false }
ansible_role
sventurtle/khw-playbook
3d1fe8f3d780b514f803933911f1047e27e64763
1
roles/etcd
3,318
[ "no_license" ]
[ { "path": "roles/etcd/tasks/main.yaml", "content": "- name: downlad_etcd\n include: downlad_etcd.yaml\n- name: create_etcd_directories\n include: create_etcd_directories.yaml\n- name: copy_etcd_service\n include: copy_etcd_service.yaml\n- name: start_etcd\n include: start_etcd.yaml\n", "license_type...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 2088, "all_permissive": false }
ansible_role
sventurtle/khw-playbook
3d1fe8f3d780b514f803933911f1047e27e64763
1
roles/kube-configure
3,318
[ "no_license" ]
[ { "path": "roles/kube-configure/tasks/main.yaml", "content": "#############################!!!!!!!!!!!!!!!\n\n- name: rm old config\n command: rm -rfv /root/.kube/config\n ignore_errors: yes\n- name: copy config\n command: cp -rfv /etc/kubernetes/admin.kubeconfig /root/.kube/config\n- command: kubectl de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1608, "all_permissive": false }
ansible_role
sventurtle/khw-playbook
3d1fe8f3d780b514f803933911f1047e27e64763
1
roles/kubectl
3,318
[ "no_license" ]
[ { "path": "roles/kubectl/tasks/main.yaml", "content": "- name: download GO\n unarchive:\n src: https://dl.google.com/go/go{{ GO_VERSION }}.{{ KHW_ARCH }}.tar.gz\n dest: \"{{ KHW_PREFIX }}opt\"\n remote_src: yes\n mode: 0755\n\n- name: export PATH\n shell: export PATH=$PATH:\"{{ KHW_PREFIX }}\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 511, "all_permissive": false }
ansible_role
sventurtle/khw-playbook
3d1fe8f3d780b514f803933911f1047e27e64763
1
roles/kubeinit
3,318
[ "no_license" ]
[ { "path": "roles/kubeinit/tasks/install_packages.yaml", "content": " - name: install packages\n apt:\n name: \"{{ packages }}\"\n state: installed\n vars:\n packages:\n - libseccomp2\n - aufs-dkms\n - socat\n - conntrack\n - ipset\n when: ansible_distribution == 'Debi...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2526, "all_permissive": false }
ansible_role
sventurtle/khw-playbook
3d1fe8f3d780b514f803933911f1047e27e64763
1
roles/kubeslave
3,318
[ "no_license" ]
[ { "path": "roles/kubeslave/tasks/main.yaml", "content": "- name: install dependencies\n include: install_packages.yaml\n- name: download binaries\n include: download_binaries.yaml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 122 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 122, "all_permissive": false }
ansible_role
sventurtle/khw-playbook
3d1fe8f3d780b514f803933911f1047e27e64763
1
roles/prepare
3,318
[ "no_license" ]
[ { "path": "roles/prepare/tasks/main.yaml", "content": "- name: swap off\n shell: swapoff -a\n\n- name: swap off step 2\n shell: sed -i.bak -r 's/(.+ swap .+)/#\\1/' /etc/fstab\n\n- name: modprobe\n shell: modprobe br_netfilter\n\n\n", "license_type": "no_license", "detected_licenses": [], "si...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 169, "all_permissive": false }
ansible_role
hanyhesham/ansible_postgres
e8c2fdf13caa780348ea1f75a673817eefd6c4a3
0
roles/configure
3,318
[ "no_license" ]
[ { "path": "roles/configure/tasks/main.yml", "content": "---\n# tasks file\n\n- name: initialize DB \n command: \"{{ init_path }} initdb\"\n register: var\n failed_when: var.stderr != \"\"\n\n- name: start service\n command: \"systemctl start {{ service_name }}\" \n\n- name: enable service\n command: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 409, "all_permissive": false }
ansible_role
hanyhesham/ansible_postgres
e8c2fdf13caa780348ea1f75a673817eefd6c4a3
0
roles/install
3,318
[ "no_license" ]
[ { "path": "roles/install/tasks/main.yml", "content": "---\n# tasks file\n\n- name: install repository \n yum: \n name: \"{{ download_dest }}/{{ postgres_ver }}\"\n state: present\n\n- name: install server \n yum: \n name: \"{{ item }}\"\n state: latest\n with_items:\n - \"{{ server_ver }}...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 461, "all_permissive": false }
ansible_role
hanyhesham/ansible_postgres
e8c2fdf13caa780348ea1f75a673817eefd6c4a3
0
roles/prepare
3,318
[ "no_license" ]
[ { "path": "roles/prepare/files/main.yml", "content": "---\n# files directory\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 22 }, { "path": "roles/prepare/tasks/main.yml", "content": "---\n# tasks file\n\n- name: update system \n yum: \n name: '*'\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 411, "all_permissive": false }
ansible_role
omqxze/ansible-role-practice
cd4a886141eab094bd5ab94e211a9e6d96b77677
0
roles/httpd
3,318
[ "no_license" ]
[ { "path": "roles/httpd/handlers/main.yml", "content": "---\n# handlers file for roles/httpd\n\n\n- name: restart_apache\n service:\n name: \"{{ __service }}\"\n state: restarted\n loop: \"{{ apache_services }}\"\n loop_control:\n loop_var: __service\n", "license_type": "no_license", "de...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 970, "all_permissive": false }
ansible_role
omqxze/ansible-role-practice
cd4a886141eab094bd5ab94e211a9e6d96b77677
0
roles/mysql
3,318
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n# tasks file for roles/mysql\n\n- name: install mariadb\n yum:\n name: mariadb105-server\n state: latest\n\n- name: start mariadb\n service:\n name: mariadb\n state: started\n\n\n- name: copy file\n copy:\n src: create_db_webtest.sql...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 354, "all_permissive": false }
ansible_role
ethereum/ethereum-buildbot
8a4c75e27da68d00cccb9cceadb3742d3814a1de
32
ansible/roles/buildslave
3,318
[ "no_license" ]
[ { "path": "ansible/roles/buildslave/vars/main.yml", "content": "---\nbasedir: slave\nbuildmaster_url: build.ethdev.com:9989\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 58 }, { "path": "ansible/roles/buildslave/tasks/main.yml", "content": "---\n- name: cre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 340, "all_permissive": false }
ansible_role
ethereum/ethereum-buildbot
8a4c75e27da68d00cccb9cceadb3742d3814a1de
32
ansible/roles/common
3,318
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: install package dependencies\n sudo: true\n apt: name={{ item }} install_recommends=no\n with_items:\n - python-pip\n - python-dev\n - python-apt\n - htop\n\n- name: install buildslave\n sudo: true\n pip: name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 251, "all_permissive": false }
ansible_role
ethereum/ethereum-buildbot
8a4c75e27da68d00cccb9cceadb3742d3814a1de
32
ansible/roles/docker
3,318
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n\n- name: Make sure apt-transport-https is installed\n apt:\n pkg: \"apt-transport-https\"\n state: installed\n\n- name: Add Docker repository key\n apt_key:\n id: \"36A1D7869245C8950F966E92D8576A8BA88D21E9\"\n keyserver: \"hkp:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 800, "all_permissive": false }
ansible_role
ethereum/ethereum-buildbot
8a4c75e27da68d00cccb9cceadb3742d3814a1de
32
ansible/roles/poc-server
3,318
[ "no_license" ]
[ { "path": "ansible/roles/poc-server/vars/mail.yml", "content": "---\nbasedir: slave\nbuildslave_name: poc-server-master\nbuildmaster_url: build.ethdev.com:9989\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 }, { "path": "ansible/roles/poc-server/tasks/main.ym...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 266, "all_permissive": false }
ansible_role
ethereum/ethereum-buildbot
8a4c75e27da68d00cccb9cceadb3742d3814a1de
32
ansible/roles/poc-server-develop
3,318
[ "no_license" ]
[ { "path": "ansible/roles/poc-server-develop/tasks/main.yml", "content": "---\n- name: install ethereum ppa\n sudo: true\n apt_repository: repo=ppa:ethereum/ethereum\n\n- name: install ethereum-dev ppa\n sudo: true\n apt_repository: repo=ppa:ethereum/ethereum-dev\n\n- name: install ethereum\n sudo: true...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 362, "all_permissive": false }
ansible_role
ethereum/ethereum-buildbot
8a4c75e27da68d00cccb9cceadb3742d3814a1de
32
ansible/roles/user
3,318
[ "no_license" ]
[ { "path": "ansible/roles/user/tasks/main.yml", "content": "---\n- name: create default group for buildslave account\n sudo: true \n group: name=buildslave \n\n- name: create dedicated buildslave account\n sudo: true\n user: \n name: buildslave \n # http://docs.ansible.com/faq.html#how-do-i-ge...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 391, "all_permissive": false }
ansible_role
Maiz6/AutoVPN
912954e816f0df4704eb94cf68083fa08aa5875c
0
Principal/Ansible/roles/install-client
3,318
[ "no_license" ]
[ { "path": "Principal/Ansible/roles/install-client/vars/main.yml", "content": "---\nclient_name: \"edouard\"\nworkdir: \"/travail\"\ncert_dir: \"/travail/certificats\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 }, { "path": "Principal/Ansible/roles/install-c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2813, "all_permissive": false }
ansible_role
Maiz6/AutoVPN
912954e816f0df4704eb94cf68083fa08aa5875c
0
Principal/Ansible/roles/install-vpn
3,318
[ "no_license" ]
[ { "path": "Principal/Ansible/roles/install-vpn/tasks/main.yml", "content": "- name: Récupérer OpenVPN\n ansible.builtin.get_url:\n url: https://raw.githubusercontent.com/Angristan/openvpn-install/master/openvpn-install.sh\n dest: /tmp/openvpn-install.sh\n\n- name: Autoriser l'exécution\n ansible.bui...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1759, "all_permissive": false }
ansible_role
davidepolli/rancher
026e4ce3769aead6d287e831fa0a26b0a92fafd4
0
roles/configure_masters
3,318
[ "no_license" ]
[ { "path": "roles/configure_masters/tasks/main.yaml", "content": "---\n\n# used by k8s_info\n#- name: Install Python 3 and pip\n# apt:\n# name: python3-pip\n# state: present # Ensure the package is installed\n#\n#- name: Install kubernetes Python library\n# pip:\n# name: kubernetes\n\n- name: Cop...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2096, "all_permissive": false }
ansible_role
davidepolli/rancher
026e4ce3769aead6d287e831fa0a26b0a92fafd4
0
roles/custom_k8s_cluster
3,318
[ "no_license" ]
[ { "path": "roles/custom_k8s_cluster/tasks/nodes.yaml", "content": "---\n\n- name: Check if the clusterid information exists\n stat:\n path: /tmp/clusterid.txt\n register: clusteridstat\n\n- name: Read clusterid\n slurp:\n src: /tmp/clusterid.txt\n when: clusteridstat.stat.exists\n register: clust...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 15751, "all_permissive": false }
ansible_role
davidepolli/rancher
026e4ce3769aead6d287e831fa0a26b0a92fafd4
0
roles/rke_rancher_clusters
3,318
[ "no_license" ]
[ { "path": "roles/rke_rancher_clusters/tasks/rancher-setup.yml", "content": "---\n\n- name: Check if the file exists\n stat:\n path: /tmp/rancher_api_token.txt\n register: tokenstat\n\n- name: Get Login Token\n uri:\n url: \"https://{{ rancher_hostname }}/v3-public/localProviders/local?action=login\...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3649, "all_permissive": false }
ansible_role
TimGrt/qep
d930f64cbd5262faa6d04f5fed572adc0406e686
0
roles/welcome
3,318
[ "no_license" ]
[ { "path": "roles/welcome/defaults/main.yml", "content": "---\n\nwebserver_owner: Teilnehmer\n\nindex_template: welcome-simple.html.j2\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "roles/welcome/molecule/default/molecule.yml", "content": "--...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1667, "all_permissive": false }
ansible_role
dongci/ansible-redis
d24c87ef79bcff643511ac5e5d14d55a1030ecd3
0
roles/base
3,318
[ "no_license" ]
[ { "path": "roles/base/files/hosts", "content": "127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4\n::1 localhost localhost.localdomain localhost6 localhost6.localdomain6\n\n#ntp\n10.0.0.100 ntpsrv\n\n#galera-cluster\n10.0.0.101 galera1\n10.0.0.102 galera2\n10.0.0.103 ga...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2267, "all_permissive": false }
ansible_role
dongci/ansible-redis
d24c87ef79bcff643511ac5e5d14d55a1030ecd3
0
roles/ntp
3,318
[ "no_license" ]
[ { "path": "roles/ntp/tasks/main.yml", "content": "---\n- name: Install NTP server\n yum: name=chrony state=installed\n when: ansible_os_family == \"RedHat\"\n tags: ntp\n\n- name: Configure controller node NTP server\n template: src=chrony.conf.server.j2 dest=/etc/chrony.conf \n owner=root group=roo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 710, "all_permissive": false }
ansible_role
dongci/ansible-redis
d24c87ef79bcff643511ac5e5d14d55a1030ecd3
0
roles/rediscls
3,318
[ "no_license" ]
[ { "path": "roles/rediscls/files/shutdown6379.sh", "content": "#!/bin/bash\ncat /var/run/redis_6379.pid |xargs /usr/bin/kill -9\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 }, { "path": "roles/rediscls/files/startup6479.sh", "content": "#!/bin/bash\n/usr...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 7831, "all_permissive": false }
ansible_role
TheoDoreW/ansible
104e146b5454e55991c956e897a27a3346846dcb
0
MongoDB/playbooks/roles/install-mongodb-arch
3,318
[ "no_license" ]
[ { "path": "MongoDB/playbooks/roles/install-mongodb-arch/tasks/install.yml", "content": "--- \n- \n name: \"install epel yum repos\"\n yum: \"name=epel-release state=present\"\n- \n group: \"name=mongodb gid=3000 state=present\"\n name: \"add mongodb group\"\n- \n name: \"add mongodb user\"\n user: \"n...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2006, "all_permissive": false }
ansible_role
TheoDoreW/ansible
104e146b5454e55991c956e897a27a3346846dcb
0
MongoDB/playbooks/roles/install-mongodb-configserver
3,318
[ "no_license" ]
[ { "path": "MongoDB/playbooks/roles/install-mongodb-configserver/tasks/install.yml", "content": "--- \n- \n file: \"path={{ mongodb_data_dir }}/configserver owner=mongodb group=mongodb state=directory\"\n name: \"create mongodb configserver directory\"\n- \n file: \"path={{ mongodb_data_dir }}/configserve...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1240, "all_permissive": false }
ansible_role
TheoDoreW/ansible
104e146b5454e55991c956e897a27a3346846dcb
0
MongoDB/playbooks/roles/install-mongodb-mongos
3,318
[ "no_license" ]
[ { "path": "MongoDB/playbooks/roles/install-mongodb-mongos/tasks/config.yml", "content": "--- \n- \n name: \"copy mongos.conf.j2 to mongodb conf directory\"\n template: \"src=mongos.conf.j2 dest={{ mongodb_install_dir }}/mongodb-release/conf/mongos.conf owner=mongodb group=mongodb mode=664\"\n", "licen...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1046, "all_permissive": false }
ansible_role
TheoDoreW/ansible
104e146b5454e55991c956e897a27a3346846dcb
0
MongoDB/playbooks/roles/install-mongodb-opsmanager
3,318
[ "no_license" ]
[ { "path": "MongoDB/playbooks/roles/install-mongodb-opsmanager/tasks/install.yml", "content": "--- \n- \n file: \"path={{ mongodb_data_dir }}/opsmanager owner=mongodb group=mongodb state=directory\"\n name: \"create mongodb opsmanager directory\"\n- \n file: \"path={{ mongodb_data_dir }}/opsmanager/{{ ite...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1414, "all_permissive": false }
ansible_role
TheoDoreW/ansible
104e146b5454e55991c956e897a27a3346846dcb
0
MongoDB/playbooks/roles/install-mongodb-shard
3,318
[ "no_license" ]
[ { "path": "MongoDB/playbooks/roles/install-mongodb-shard/tasks/config.yml", "content": "--- \n- \n name: \"copy shard.conf to mongodb conf directory\"\n template: \"src=shard.conf.j2 dest=/usr/local/mongodb/mongodb-release/conf/shard{{ id }}.conf owner=mongodb group=mongodb mode=664\"\n", "license_typ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1433, "all_permissive": false }
ansible_role
TheoDoreW/ansible
104e146b5454e55991c956e897a27a3346846dcb
0
Redis/playbooks/roles/install-redis-arch
3,318
[ "no_license" ]
[ { "path": "Redis/playbooks/roles/install-redis-arch/templates/redis-overcommit-memory.conf.j2", "content": "vm.overcommit_memory = 1\nnet.core.somaxconn = 65535", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 }, { "path": "Redis/playbooks/roles/install-redis-arc...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2104, "all_permissive": false }
ansible_role
TheoDoreW/ansible
104e146b5454e55991c956e897a27a3346846dcb
0
Redis/playbooks/roles/install-redis-shard
3,318
[ "no_license" ]
[ { "path": "Redis/playbooks/roles/install-redis-shard/tasks/config.yml", "content": "--- \n- \n name: \"copy redis{{ redis_port }}.conf to redis conf directory\"\n template: \"src=redis.conf.j2 dest={{ redis_install_dir }}/redis-release/conf/redis{{ redis_port }}.conf owner=redis group=redis mode=664\"\n",...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 474, "all_permissive": false }
ansible_role
TheoDoreW/ansible
104e146b5454e55991c956e897a27a3346846dcb
0
ZabbixAgent/playbooks/roles/install-zabbixagent
3,318
[ "no_license" ]
[ { "path": "ZabbixAgent/playbooks/roles/install-zabbixagent/templates/check_runtime.sh.j2", "content": "#!/bin/bash\n#\nsudo supervisorctl status $1|grep days >/dev/null 2>&1\nif [ $? -eq 0 ];then\n\t\techo 100;\n\telse\n\t\ttime=`sudo supervisorctl status $1|awk '{print $NF}'`\n\t\tH=`echo $time |awk -F\":\...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 9977, "all_permissive": false }
ansible_role
akakanu/DevOpsFormation
e6ae5ddbf079e725fc429af0f8e879dcc5363a29
0
miniprojet5-ansible/role-webapp/roles/webapp-aka-v1
3,318
[ "no_license" ]
[ { "path": "miniprojet5-ansible/role-webapp/roles/webapp-aka-v1/tasks/install-docker.yml", "content": "---\n- name: Install docker on a Centos 7 machine\n\ngather_facts: false\nhosts: all\nbecome: true\n\ntasks:\n\n- name: Remove docker if installed from CentOS repo\n yum:\n name: \"{{ item }}\"\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2468, "all_permissive": false }
ansible_role
asquarezone/Ansibleroledemo
0267d691aeb9a6fa39bc008ca6cd0cb7853d57c4
1
roles/khaja.tomcat
3,318
[ "no_license" ]
[ { "path": "roles/khaja.tomcat/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - khaja.tomcat", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 }, { "path": "roles/khaja.tomcat/tasks/main.yml", "content": "---\n# tasks f...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 1402, "all_permissive": false }
ansible_role
architrave-de/sre-assignment
3f30952df1ef5b7186c8f9cc1c628d84ca8e3c1a
2
task/roles/db
3,338
[ "no_license" ]
[ { "path": "task/roles/db/templates/mysql/assignment.cnf.j2", "content": "[mysqld]\n{% for item in db_tunables %}\n{{ item }}\n{% endfor %}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 62 }, { "path": "task/roles/db/defaults/main.yml", "content": "---\ndb_roo...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2267, "all_permissive": false }
ansible_role
architrave-de/sre-assignment
3f30952df1ef5b7186c8f9cc1c628d84ca8e3c1a
2
task/roles/locale
3,338
[ "no_license" ]
[ { "path": "task/roles/locale/defaults/main.yml", "content": "---\n\nlocale_env:\n lang: \"en_US.UTF-8\"\n language: \"en_US:en\"\n lc_all: \"en_US.UTF-8\"\n lc_address: ~\n lc_collate: \"C\"\n lc_ctype: ~\n lc_identification: ~\n lc_measurement: ~\n lc_messages: ~\n lc_monetary: ~\n lc_name: ~\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1754, "all_permissive": false }
ansible_role
architrave-de/sre-assignment
3f30952df1ef5b7186c8f9cc1c628d84ca8e3c1a
2
task/roles/web
3,338
[ "no_license" ]
[ { "path": "task/roles/web/templates/php/php-cli.j2", "content": "// Architrave php overrides\n\n{% for item in php_ini_overrides %}\n{{ item }}\n{% endfor %}\n{% for item in php_cli_ini_overrides %}\n{{ item }}\n{% endfor %}", "license_type": "no_license", "detected_licenses": [], "size_bytes": ...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 7341, "all_permissive": false }
ansible_role
HIKO1021024/3tier
1b09432f814f1f62f810be08f7660143f05941bc
0
roles/configuration
3,338
[ "no_license" ]
[ { "path": "roles/configuration/tasks/main.yml", "content": "- name: enable repos\n template:\n src: open_three-tier-app.repo\n dest: /etc/yum.repos.d/open_three-tier-app.repo\n mode: 0644\n\n- name: enable sudo without tty for some ansible commands\n replace:\n path: /etc/sudoers\n regexp: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 316, "all_permissive": false }
ansible_role
bastiancarmy/bitcoin-cash-node-bootstrap
f7310cd70dd28a0c69d13ba2be77c854617d4cb1
0
ansible/roles/bchn_config
3,338
[ "no_license" ]
[ { "path": "ansible/roles/bchn_config/tasks/main.yml", "content": "---\n- name: Ensure Bitcoin config directory exists\n ansible.builtin.file:\n path: \"/etc/bitcoin\"\n state: directory\n owner: \"{{ bchn_user }}\"\n group: \"{{ bchn_user }}\"\n mode: \"0750\"\n\n- name: Ensure Bitcoin data ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3579, "all_permissive": false }
ansible_role
wgonasc/ansible_teste
332193cd66797554da64abea6958410383f045fa
0
ansible/playbook_common/roles/ansible-role-chrony
3,338
[ "no_license" ]
[ { "path": "ansible/playbook_common/roles/ansible-role-chrony/tasks/main.yml", "content": "---\n- name: Install the required packages in Redhat derivatives\n yum: name=chrony state={{ chrony_pkg_state }}\n\n- name: Setar o timezone\n timezone: name=America/Sao_Paulo\n\n- name: Check if ntpd service exists\...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 544, "all_permissive": false }
ansible_role
wgonasc/ansible_teste
332193cd66797554da64abea6958410383f045fa
0
ansible/playbook_common/roles/common
3,338
[ "no_license" ]
[ { "path": "ansible/playbook_common/roles/common/templates/motd-facts.j2", "content": "####################################################################################################\n# Bem vindo ao servidor {{ ansible_fqdn }}\n# Esse servidor e auditado e monitorado conforme todas regras de seguranc...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1116, "all_permissive": false }
ansible_role
wgonasc/ansible_teste
332193cd66797554da64abea6958410383f045fa
0
ansible/playbook_common/roles/ojdbc8
3,338
[ "no_license" ]
[ { "path": "ansible/playbook_common/roles/ojdbc8/tasks/main.yml", "content": "---\n# Logs de comandos\n- name: transferencia ojdbc\n copy: src=ojdbc8-full.tar.gz dest=/docker_storage_bind/jdbc backup=yes force=yes owner=root group=root mode=0644\n\n#Cria diretorio\n- name: cria diretorio /docker_storage_b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 526, "all_permissive": false }
ansible_role
wgonasc/ansible_teste
332193cd66797554da64abea6958410383f045fa
0
ansible/playbook_common/roles/updates
3,338
[ "no_license" ]
[ { "path": "ansible/playbook_common/roles/updates/tasks/main.yml", "content": "---\n\n#Update de pacotes\n- name: update the system\n yum:\n name: \"*\"\n update_cache: yes\n state: latest\n\n#Checagem do repositorio EPEL\n- name: Checagem do repositorio EPEL esta cofigurado\n stat: path={{ epel_r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 651, "all_permissive": false }
ansible_role
emilsh/k8s-monitoring-and-logging
a0fa89b24c6539c4eeb8f3b4644751c401a89176
0
roles/elasticsearch_kibana
3,338
[ "no_license" ]
[ { "path": "roles/elasticsearch_kibana/tasks/main.yml", "content": "---\n# Installing ElasticSearch\n- name: Install apt-transport-https for APT\n ansible.builtin.apt:\n name: apt-transport-https\n state: present\n\n- name: Add ElasticSearch APT key\n ansible.builtin.apt_key:\n url: \"https://arti...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1187, "all_permissive": false }
ansible_role
emilsh/k8s-monitoring-and-logging
a0fa89b24c6539c4eeb8f3b4644751c401a89176
0
roles/fluentbit
3,338
[ "no_license" ]
[ { "path": "roles/fluentbit/tasks/main.yml", "content": "---\n- name: \"Add FluentBit repository GPG key\"\n ansible.builtin.apt_key:\n url: \"https://packages.fluentbit.io/fluentbit.key\"\n state: \"present\"\n\n- name: \"Add FluentBit official repository\"\n ansible.builtin.apt_repository:\n rep...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1325, "all_permissive": false }
ansible_role
emilsh/k8s-monitoring-and-logging
a0fa89b24c6539c4eeb8f3b4644751c401a89176
0
roles/node_exporter
3,338
[ "no_license" ]
[ { "path": "roles/node_exporter/templates/prometheus_static_config.yml.j2", "content": "global:\n scrape_interval: {{ prometheus_scrape_interval | default('15s') }}\n evaluation_interval: {{ prometheus_evaluation_interval | default('15s') }}\n\nscrape_configs:\n - job_name: 'prometheus'\n static_config...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3116, "all_permissive": false }
ansible_role
emilsh/k8s-monitoring-and-logging
a0fa89b24c6539c4eeb8f3b4644751c401a89176
0
roles/prometheus
3,338
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yml", "content": "---\n- name: Ensure prometheus user exists\n ansible.builtin.user:\n name: \"{{ prometheus_user }}\"\n state: present\n shell: /bin/false\n\n- name: Create Prometheus directories\n ansible.builtin.file:\n path: \"{{ item }}\"\n state:...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2897, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/apache-server
3,338
[ "no_license" ]
[ { "path": "roles/apache-server/vars/main.yml", "content": "# Apache Vars\napache_certs_dir: \"/srv/certs\"\napache_www_dir: \"/srv/www\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "roles/apache-server/tasks/main.yml", "content": "---\n# thi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1380, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/autohome
3,338
[ "no_license" ]
[ { "path": "roles/autohome/tasks/main.yml", "content": "---\n# enable pam_mkhomedir\n- name: enable pam_mkhomedir\n lineinfile:\n path: /etc/pam.d/common-session\n regexp: \"^session optional pam_mkhomedir.so\"\n line: \"session optional pam_mkhomedir.so skel=/etc/skel umask=077\"", "license_ty...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 225, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/common
3,338
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "# SSH Server Setup\n- name: (OpenSSH Server) Disable password authentication\n lineinfile:\n path: /etc/ssh/sshd_config\n regexp: \"PasswordAuthentication\"\n line: PasswordAuthentication no\n register: set_disablepwd_auth\n- name: (OpenSSH Ser...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3069, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/compute-node
3,338
[ "no_license" ]
[ { "path": "roles/compute-node/tasks/main.yml", "content": "# enable ptrace support\n\n- name: Enable PTrace\n lineinfile:\n path: /etc/sysctl.d/10-ptrace.conf\n regexp: \"^kernel.yama.ptrace_scope\"\n line: kernel.yama.ptrace_scope = 0\n\n# Enable memory cgroup support\n\n- name: Add kernel parame...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2726, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/default-apps
3,338
[ "no_license" ]
[ { "path": "roles/default-apps/tasks/main.yml", "content": "#- name: Install turbovnc\n# apt:\n# deb: https://cfhcable.dl.sourceforge.net/project/turbovnc/2.2.90%20%283.0%20beta1%29/turbovnc_2.2.90_amd64.deb\n\n- name: Install Applications\n apt:\n pkg:\n - emacs\n - gnuplot\n - csh\n - z...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3144, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/environment-modules
3,338
[ "no_license" ]
[ { "path": "roles/environment-modules/tasks/main.yml", "content": "- name: Mount /modules\n mount:\n path: /modules\n src: \"vast:/modules\"\n fstype: nfs\n state: mounted\n\n# Environment Modules\n- name: Create symlink\n ansible.builtin.file:\n src: \"{{ lmod_location }}/lmod/init/profile\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1380, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/ldap-client
3,338
[ "no_license" ]
[ { "path": "roles/ldap-client/templates/ldap_auth", "content": "#!/bin/sh\n\n# set to 1 to only allow those with a valid PI to return SSH keys (requires slurm utilities to be in the path)\ncheck_associations=0\n\nuser=$1\nldap_uri=\"{{ ldap_uri }}\"\nldap_basedn=\"{{ ldap_basedn }}\"\n\nif [ \"$check_associa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2666, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/ldap-server
3,338
[ "no_license" ]
[ { "path": "roles/ldap-server/templates/phpldapadmin-config.php", "content": "<?php\n$config->custom->appearance['timezone'] = 'America/New_York';\n$config->custom->appearance['hide_template_warning'] = true;\n$config->custom->appearance['friendly_attrs'] = array();\n\n$servers = new Datastore();\n$servers->...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3377, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/login
3,338
[ "no_license" ]
[ { "path": "roles/login/tasks/main.yml", "content": "- name: Enable cpu accounting\n lineinfile:\n path: /etc/systemd/system.conf\n regexp: 'DefaultCPUAccounting='\n line: DefaultCPUAccounting=yes\n\n- name: Enable memory accounting\n lineinfile:\n path: /etc/systemd/system.conf\n regexp: 'D...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3387, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/munge-member
3,338
[ "no_license" ]
[ { "path": "roles/munge-member/tasks/main.yml", "content": "- name: Install Munge\n apt:\n name: munge\n state: present\n\n- name: Copy munge.key\n copy:\n src: munge.key\n dest: /etc/munge/munge.key\n owner: munge\n group: munge\n mode: '0400'\n register: added_munge_key\n\n- name: R...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 351, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/mysql-server
3,338
[ "no_license" ]
[ { "path": "roles/mysql-server/vars/main.yml", "content": "---\nmysql_admin_user: admin\nmysql_admin_pass: <PASSWORD>", "license_type": "no_license", "detected_licenses": [], "size_bytes": 56 }, { "path": "roles/mysql-server/tasks/main.yml", "content": "---\n- name: Install pymysql fo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1685, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/nvidia
3,338
[ "no_license" ]
[ { "path": "roles/nvidia/tasks/main.yml", "content": "---\n- name: Install Nvidia Drivers\n apt:\n name: nvidia-driver-510-server\n install_recommends: no\n ignore_errors: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 125 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 125, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/nvidia-mig
3,338
[ "no_license" ]
[ { "path": "roles/nvidia-mig/tasks/main.yml", "content": "---\n- name: return motd to registered var\n command: nvidia-smi -mig 1\n\n- git:\n repo: https://github.com/NVIDIA/mig-parted.git\n dest: /opt/nvidia-mig\n\n- name: Install mig-parted-tool\n command: ./install.sh\n args:\n chdir: /opt/nvi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 268, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/reboot
3,338
[ "no_license" ]
[ { "path": "roles/reboot/tasks/main.yml", "content": "- name: reboot node\n reboot:\n reboot_timeout: 3600\n when: reboot_prompt == 'Y'", "license_type": "no_license", "detected_licenses": [], "size_bytes": 83 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 83, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/slurm-client
3,338
[ "no_license" ]
[ { "path": "roles/slurm-client/tasks/main.yml", "content": "# Slurm Setup\n- name: Install Slurm-client\n apt:\n name: slurm-client\n state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes": 91 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 91, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/slurmctld
3,338
[ "no_license" ]
[ { "path": "roles/slurmctld/tasks/main.yml", "content": "- name: Install Slurm\n apt:\n name: slurmctld\n state: present\n\n- name: deploy slurm.conf\n copy:\n src: slurm.conf\n dest: /etc/slurm/slurm.conf\n owner: root\n group: root\n tags: update_slurm\n\n- name: deploy cgroup.conf\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1312, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/slurmdbd
3,338
[ "no_license" ]
[ { "path": "roles/slurmdbd/meta/main.yml", "content": "---\ndependencies:\n - role: mysql-server", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "roles/slurmdbd/tasks/main.yml", "content": "---\n# slurmdbd setup\n- name: Create a new database wi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1069, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/ssh_haproxy
3,338
[ "no_license" ]
[ { "path": "roles/ssh_haproxy/tasks/main.yml", "content": "- name: Install HAProxy\n apt:\n pkg:\n - haproxy\n state: present\n update_cache: yes\n install_recommends: no\n\n- name: Update haproxy configuration\n blockinfile:\n path: /etc/haproxy/haproxy.cfg\n block: |\n frontend ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 898, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/user-dirs
3,338
[ "no_license" ]
[ { "path": "roles/user-dirs/tasks/main.yml", "content": "- name: Mount /scratch\n mount:\n path: /scratch\n src: \"vast:/computescratch\"\n fstype: nfs\n opts: defaults,nconnect=16\n state: mounted\n\n- name: Mount /work\n mount:\n path: /work\n src: \"vast:/work\"\n fstype: nfs\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1422, "all_permissive": false }
ansible_role
UMass-RC/unity-ansible
d1fa656468c208e531a31d13aced91bf7b74c6e9
0
roles/web-portal
3,338
[ "no_license" ]
[ { "path": "roles/web-portal/tasks/main.yml", "content": "---\n# Apache2 Setup\n- name: Install PHP dependencies\n apt:\n pkg:\n - php\n - php-ldap\n state: present\n\n- name: enable mod_proxy\n community.general.apache2_module:\n state: present\n name: proxy\n\n- name: enable mod_proxy_w...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3799, "all_permissive": false }
ansible_role
spoonless/wildfly-server
8d1573298ead4337e0e8c4b4cb0a184724db2af4
1
roles/wildfly-server
3,338
[ "no_license" ]
[ { "path": "roles/wildfly-server/vars/main.yml", "content": "wildfly_home: \"/opt/wildfly-11.0.0.Final\"\nwildfly_url: \"http://download.jboss.org/wildfly/11.0.0.Final/wildfly-11.0.0.Final.tar.gz\"\nwildfly_archive: \"/opt/wildfly-11.0.0.Final.tar.gz\"\nwildfly_install_dir: \"/opt\"\n\n", "license_type":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1875, "all_permissive": false }
ansible_role
bharatak/geeknight-oneclickdeploy-playbooks
ccd1a1623c2022a95a80cf0add01cb6f3e7e5183
0
roles/httpd
3,338
[ "no_license" ]
[ { "path": "roles/httpd/defaults/main.yml", "content": "app_port: 8080\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 15 }, { "path": "roles/httpd/tasks/main.yml", "content": "---\n- name: Install httpd\n yum: name=httpd state=present\n tags: httpd\n \n- n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 571, "all_permissive": false }
ansible_role
bharatak/geeknight-oneclickdeploy-playbooks
ccd1a1623c2022a95a80cf0add01cb6f3e7e5183
0
roles/mysql
3,338
[ "no_license" ]
[ { "path": "roles/mysql/defaults/main.yml", "content": "app_db_username: app-user\napp_db_password: <PASSWORD>\nmysql_root_user: root\nmysql_root_password: <PASSWORD>\nmysql_replication_username: replication-user\nmysql_replication_password: <PASSWORD>\nmaster_server_id: 1\nslave_server_id: 2\nmax_binlog_siz...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3352, "all_permissive": false }
ansible_role
bharatak/geeknight-oneclickdeploy-playbooks
ccd1a1623c2022a95a80cf0add01cb6f3e7e5183
0
roles/run
3,338
[ "no_license" ]
[ { "path": "roles/run/tasks/main.yml", "content": "- name: Run the executable jar\n sudo: yes\n command: 'nohup java -jar /opt/oneclickdeploy-0.0.1-SNAPSHOT.jar &'\n tags: start_app\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 131, "all_permissive": false }
ansible_role
mariefdu45/k8s_cluster_thehardway_ansible
a649bcb779acf1438ae52fb3150f8dacc39fc420
0
roles/bootstrap_etcd_cluster
3,298
[ "no_license" ]
[ { "path": "roles/bootstrap_etcd_cluster/tasks/main.yml", "content": "- name: Download and Extract ETCD\n unarchive:\n #src: https://github.com/coreos/etcd/releases/download/{{ ectd_version }}/etcd-{{ ectd_version }}-linux-amd64.tar.gz\n src: https://github.com/etcd-io/etcd/releases/download/{{ etcd_v...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1016, "all_permissive": false }
ansible_role
mariefdu45/k8s_cluster_thehardway_ansible
a649bcb779acf1438ae52fb3150f8dacc39fc420
0
roles/bootstrap_kubernetes_control_plane
3,298
[ "no_license" ]
[ { "path": "roles/bootstrap_kubernetes_control_plane/tasks/main.yml", "content": "- name: Creates config directory /etc/kubernetes/config\n file:\n # path: /etc/kubernetes/config\n path: /var/lib/kubernetes\n state: directory\n\n- name: Copy .pem files to /var/lib/kubernetes/\n command: bash -c 'cp c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2648, "all_permissive": false }
ansible_role
mariefdu45/k8s_cluster_thehardway_ansible
a649bcb779acf1438ae52fb3150f8dacc39fc420
0
roles/distribute_all_certificates_to_all_nodes
3,298
[ "no_license" ]
[ { "path": "roles/distribute_all_certificates_to_all_nodes/tasks/main.yml", "content": "- name: Copy certificates from local to all other nodes\n# delegate_to: 127.0.0.1\n run_once: true\n become: false\n shell: \"scp -r {{ PKI_DIR }} root@{{ item }}:/ \"\n loop:\n - \"{{groups['k8s_masters'][0] }}\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 801, "all_permissive": false }
ansible_role
mariefdu45/k8s_cluster_thehardway_ansible
a649bcb779acf1438ae52fb3150f8dacc39fc420
0
roles/generate_data_encryption_key
3,298
[ "no_license" ]
[ { "path": "roles/generate_data_encryption_key/tasks/main.yml", "content": "- name: Create the TLS Bootstrap Token\n command: bash -c \"head -c 32 /dev/urandom | base64\"\n register: command_output\n\n- set_fact:\n bootstrap_token: \"{{ command_output.stdout }}\"\n\n- name: Copying encryptionkey token fi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 537, "all_permissive": false }
ansible_role
mariefdu45/k8s_cluster_thehardway_ansible
a649bcb779acf1438ae52fb3150f8dacc39fc420
0
roles/generate_kubeconfig
3,298
[ "no_license" ]
[ { "path": "roles/generate_kubeconfig/tasks/main.yml", "content": "- name: Create kubeconfig directory\n file:\n path: '{{ CONF_DIR }}'\n state: directory\n\n- name: Configure kubeconf files for Kubelet\n shell: |\n kubectl config set-cluster {{ CLUSTER_NAME }} \\\n --certificate-authority={{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4602, "all_permissive": false }
ansible_role
mariefdu45/k8s_cluster_thehardway_ansible
a649bcb779acf1438ae52fb3150f8dacc39fc420
0
roles/install_client_tools
3,298
[ "no_license" ]
[ { "path": "roles/install_client_tools/tasks/main.yml", "content": "- name: Download and install kubectl\n get_url:\n url: \"https://storage.googleapis.com/kubernetes-release/release/{{k8s_version}}/bin/linux/amd64/kubectl\"\n dest: /usr/local/bin/kubectl\n mode: '0755'\n", "license_type": "no_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 207, "all_permissive": false }
ansible_role
mariefdu45/k8s_cluster_thehardway_ansible
a649bcb779acf1438ae52fb3150f8dacc39fc420
0
roles/install_haproxy
3,298
[ "no_license" ]
[ { "path": "roles/install_haproxy/tasks/main.yml", "content": "# task file for install_haproxy\n\n- name: Install the latest version of haproxy\n package:\n name: haproxy\n state: present\n\n- name: Configure haproxy\n blockinfile:\n path: /etc/haproxy/haproxy.cfg\n marker: \"# BEGIN Configurin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 794, "all_permissive": false }
ansible_role
mariefdu45/k8s_cluster_thehardway_ansible
a649bcb779acf1438ae52fb3150f8dacc39fc420
0
roles/tls_cert_generation
3,298
[ "no_license" ]
[ { "path": "roles/tls_cert_generation/templates/kubelet-template.j2", "content": "{\n \"CN\": \"system:node:{{ item }}\",\n \"key\": {\n \"algo\": \"rsa\",\n \"size\": 2048\n },\n \"names\": [\n {\n \"C\": \"FR\",\n \"L\": \"Orleans\",\n \"O\": \"system:nodes\",\n \"OU\": \"M...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 5910, "all_permissive": false }
ansible_role
sangitaccount/ansible
510b0a21b7f56f1ada7585be7994dda0e426460f
0
epel/tests/roles/test
3,298
[ "no_license" ]
[ { "path": "epel/tests/roles/test/tasks/main.yml", "content": "---\n- name: Check EPEL Repo installed\n shell: rpm -q epel-release-7-9\n register: result\n ignore_errors: true\n\n- assert:\n that:\n - result.rc == 0\n", "license_type": "no_license", "detected_licenses": [], "size_bytes...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 156, "all_permissive": false }
ansible_role
sangitaccount/ansible
510b0a21b7f56f1ada7585be7994dda0e426460f
0
test/roles/ec2-instance
3,298
[ "no_license" ]
[ { "path": "test/roles/ec2-instance/files/user_data.sh", "content": "#!/bin/bash\nset -e -x\n\niptables -A INPUT -s 0.0.0.0/0 -p tcp -m state --state NEW --dport 22 -j ACCEPT\niptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT\niptables -A INPUT -s 0.0.0.0/0 -p tcp -m state --state NEW --dport ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2401, "all_permissive": false }
ansible_role
sangitaccount/ansible
510b0a21b7f56f1ada7585be7994dda0e426460f
0
test/roles/ec2-sg
3,298
[ "no_license" ]
[ { "path": "test/roles/ec2-sg/tasks/main.yml", "content": "---\n - name: \"Provision AWS ec2 security group {{ inventory_hostname }}\"\n ec2_group:\n aws_access_key: \"{{ aws_access_key_id }}\"\n aws_secret_key: \"{{ aws_secret_access_key }}\"\n name: \"{{ aws_ec2_sg_name }}\"\n descr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 531, "all_permissive": false }
ansible_role
Samehbr21/projectcd
065d90584511e27af47ad8cad721528012e79fd2
0
ansible/roles/build
3,298
[ "no_license" ]
[ { "path": "ansible/roles/build/tasks/main.yml", "content": "---\n# tasks file for build\n- name: build app\n shell: npm run ng build", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 70, "all_permissive": false }
ansible_role
Samehbr21/projectcd
065d90584511e27af47ad8cad721528012e79fd2
0
ansible/roles/docker-registry
3,298
[ "no_license" ]
[ { "path": "ansible/roles/docker-registry/tasks/main.yml", "content": "---\n# tasks file for docker-registry\n- name: Log into DockerHub\n docker_login:\n username: samehbrdocker\n password: <PASSWORD>\n\n- name: Tag and push to docker hub\n docker_image:\n name: devops:latest\n repository: sam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 290, "all_permissive": false }
ansible_role
aramirol/deploy-ocp4-vsphere-role
e4a24730d1620c18a4a1b596b0b32a1a7c8574d8
0
roles/deploy-cluster
3,298
[ "no_license" ]
[ { "path": "roles/deploy-cluster/tasks/patching_registry.yaml", "content": "---\n\n- name: Patching image-registry\n shell: |\n oc patch configs.imageregistry.operator.openshift.io cluster --type merge --patch '{\"spec\":{\"storage\":{\"emptyDir\":{}}}}'\n- pause: seconds=120\n\n- name: Third round appro...
{ "task_files": 9, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 7810, "all_permissive": false }
ansible_role
aramirol/deploy-ocp4-vsphere-role
e4a24730d1620c18a4a1b596b0b32a1a7c8574d8
0
roles/deploy-environment
3,298
[ "no_license" ]
[ { "path": "roles/deploy-environment/tasks/create_vsphere_folder.yaml", "content": "---\n\n- name: Create a VM folder on given datacenter\n vcenter_folder:\n hostname: '{{ secret.vcenter }}'\n username: '{{ secret.username }}'\n password: '{{ <PASSWORD> }}'\n validate_certs: no\n datacenter_n...
{ "task_files": 18, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 21, "total_bytes": 13699, "all_permissive": false }
ansible_role
Michael-F-Bryan/dotfiles
48266776f4a0bb42c6a2f5a08d0fccf70139cb8f
2
roles/developer
3,298
[ "permissive" ]
[ { "path": "roles/developer/tasks/main.yml", "content": "- name: Create Dotfile Parent Directories\n file:\n dest: \"{{ ansible_env.HOME }}/{{ item.to | dirname }}\"\n state: directory\n loop: \"{{ symlinks }}\"\n\n- name: Symlink Dotfiles\n file:\n src: \"{{ inventory_dir }}/{{ item.from }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 963, "all_permissive": true }
ansible_role
Michael-F-Bryan/dotfiles
48266776f4a0bb42c6a2f5a08d0fccf70139cb8f
2
roles/system
3,298
[ "permissive" ]
[ { "path": "roles/system/tasks/main.yml", "content": "- name: Install System Packages\n package:\n name: \"{{ system_packages }}\"\n state: present\n become: true\n\n- name: Check if Yay is installed\n shell: yay --version\n register: yay_installed\n ignore_errors: true\n\n- name: Fetch Bootstrap ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 996, "all_permissive": true }
ansible_role
devopsjourney1/ansible-labs
f369de686b9fa0d8df8c4c862e714646b40c1814
62
ansible-lab5/roles/common
3,298
[ "no_license" ]
[ { "path": "ansible-lab5/roles/common/tasks/install_tools.yml", "content": "- name: \"Install Common packages\"\n apt: name={{ item }} state=latest\n with_items:\n - pydf\n - tree\n - open-vm-tools", "license_type": "no_license", "detected_licenses": [], "size_bytes": 122 }, { "pa...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 256, "all_permissive": false }
ansible_role
devopsjourney1/ansible-labs
f369de686b9fa0d8df8c4c862e714646b40c1814
62
ansible-lab5/roles/nginx
3,298
[ "no_license" ]
[ { "path": "ansible-lab5/roles/nginx/tasks/main.yml", "content": "---\n# tasks file for roles/nginx\n- include: install_packages.yml\n- include: configure_nginx.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 96 }, { "path": "ansible-lab5/roles/nginx/tasks/con...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 389, "all_permissive": false }
ansible_role
devopsjourney1/ansible-labs
f369de686b9fa0d8df8c4c862e714646b40c1814
62
ansible-lab6/roles/nginx
3,298
[ "no_license" ]
[ { "path": "ansible-lab6/roles/nginx/templates/mysite.j2", "content": " upstream webservers {\n server 192.168.56.102:8000;\n server 192.168.56.103:8000;\n }\n\n server {\n listen 80;\n\n location / { \n proxy_pass http://webservers;\n }\n }\n",...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 356, "all_permissive": false }
ansible_role
devopsjourney1/ansible-labs
f369de686b9fa0d8df8c4c862e714646b40c1814
62
ansible-lab7/roles/common
3,298
[ "no_license" ]
[ { "path": "ansible-lab7/roles/common/tasks/install_tools.yml", "content": "- name: \"Install Common packages\"\n apt: name={{ item }} state=latest\n with_items:\n - pydf\n - open-vm-tools\n tags: installation", "license_type": "no_license", "detected_licenses": [], "size_bytes": 133 }, ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 248, "all_permissive": false }
ansible_role
devopsjourney1/ansible-labs
f369de686b9fa0d8df8c4c862e714646b40c1814
62
ansible-lab9/roles/common
3,298
[ "no_license" ]
[ { "path": "ansible-lab9/roles/common/tasks/install_tools.yml", "content": "- name: \"Install Common packages\"\n apt: name={{ item }} state=latest\n with_items:\n - python-pip\n - pydf\n - open-vm-tools\n - libmysqlclient-dev\n tags: installation", "license_type": "no_license", "detected_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 173, "all_permissive": false }
ansible_role
devopsjourney1/ansible-labs
f369de686b9fa0d8df8c4c862e714646b40c1814
62
ansible-lab9/roles/mysql
3,298
[ "no_license" ]
[ { "path": "ansible-lab9/roles/mysql/templates/my.cnf.j2", "content": "[mysql] \nbind-address = 0.0.0.0", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "ansible-lab9/roles/mysql/tasks/setup_mysql.yml", "content": "- name: Create my.cnf configu...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 830, "all_permissive": false }
ansible_role
devopsjourney1/ansible-labs
f369de686b9fa0d8df8c4c862e714646b40c1814
62
lab/roles/apache2
3,298
[ "no_license" ]
[ { "path": "lab/roles/apache2/tasks/main.yml", "content": "---\n# tasks file for roles/apache2\n- include: apache2_install.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 65 }, { "path": "lab/roles/apache2/templates/ports.conf.j2", "content": "Listen {{ http...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 935, "all_permissive": false }
ansible_role
devopsjourney1/ansible-labs
f369de686b9fa0d8df8c4c862e714646b40c1814
62
lab/roles/common
3,298
[ "no_license" ]
[ { "path": "lab/roles/common/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/common", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 }, { "path": "lab/roles/common/tasks/main.yml", "content": "---\n# tasks file ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 338, "all_permissive": false }
ansible_role
devopsjourney1/ansible-labs
f369de686b9fa0d8df8c4c862e714646b40c1814
62
lab/roles/mysql
3,298
[ "no_license" ]
[ { "path": "lab/roles/mysql/tasks/main.yml", "content": "---\n# tasks file for roles/mysql\n\n- include: install_mysql.yml\n- include: setup_mysql.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 }, { "path": "lab/roles/mysql/tests/test.yml", "content": ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 750, "all_permissive": false }