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
raisulisrahat/monitor-tools
7cded95f57f33cf635a1e546c5940068e0f4b913
1
roles/Grafana
7,653
[ "no_license" ]
[ { "path": "roles/Grafana/tasks/main.yml", "content": "---\n# tasks file for Grafana\n\n- name: Install all requemants packages\n ansible.builtin.package:\n name: \"{{ item }}\"\n state: latest\n update_cache: yes\n with_items: \"{{ Package }}\" \n\n- name: Install and upgrade pip\n pip:\n na...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2820, "all_permissive": false }
ansible_role
raisulisrahat/monitor-tools
7cded95f57f33cf635a1e546c5940068e0f4b913
1
roles/Graylog
7,653
[ "no_license" ]
[ { "path": "roles/Graylog/handlers/main.yml", "content": "---\n# handlers file for Graylog\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "roles/Graylog/vars/main.yml", "content": "---\n# vars file for Graylog\nPackage:\n - curl\n - wget\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 6586, "all_permissive": false }
ansible_role
raisulisrahat/monitor-tools
7cded95f57f33cf635a1e546c5940068e0f4b913
1
roles/influxdb
7,653
[ "no_license" ]
[ { "path": "roles/influxdb/tasks/ubuntu.yml", "content": "- name: System Update\r\n ansible.builtin.package:\r\n update_cache: true\r\n cache_valid_time: 3600\r\n\r\n- name: Create user ubuntu\r\n ansible.builtin.user:\r\n name: ubuntu\r\n shell: /bin/bash\r\n groups: sudo, docker\r\n app...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2210, "all_permissive": false }
ansible_role
raisulisrahat/monitor-tools
7cded95f57f33cf635a1e546c5940068e0f4b913
1
roles/telegraf
7,653
[ "no_license" ]
[ { "path": "roles/telegraf/tasks/ubuntu.yml", "content": "---\r\n- name: Download InfluxData GPG key\r\n ansible.builtin.get_url:\r\n url: https://repos.influxdata.com/influxdata-archive.key\r\n dest: /tmp/influxdata-archive.key\r\n mode: '0644'\r\n\r\n- name: Verify GPG key using SHA256 checksum\r...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 7768, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
infrastructure/elasticsearch_cluster/ansible/roles/elasticsearch_setup
7,653
[ "no_license" ]
[ { "path": "infrastructure/elasticsearch_cluster/ansible/roles/elasticsearch_setup/templates/clientnode_elasticsearch.yml.j2", "content": "cluster:\n name: es-cluster\nnode:\n name: {{ inventory_hostname }}\nnode.master: false\nnode.data: false\nnode.ingest: false\nsearch.remote.connect: false\nhttp.cors.e...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1471, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
infrastructure/elasticsearch_cluster/ansible/roles/join_domain
7,653
[ "no_license" ]
[ { "path": "infrastructure/elasticsearch_cluster/ansible/roles/join_domain/tasks/main.yml", "content": "---\n- name: join to domain\n shell: |\n realm leave example.dom\n echo -ne {{ service_user_pass | trim }} | realm join --user {{ service_user }} example.com\n args:\n executable: /bin/bash\n\n-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1169, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
infrastructure/storage/expand_hdd/roles/expand_hdd
7,653
[ "no_license" ]
[ { "path": "infrastructure/storage/expand_hdd/roles/expand_hdd/tasks/main.yml", "content": "---\n- name: Specify vcenter and guest\n vmware_guest:\n hostname: \"{{ vcenter.url }}\"\n username: \"{{ vcenter.username }}\"\n password: \"{{ <PASSWORD> | trim }}\"\n datacenter: \"{{ vcenter.datacente...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 501, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
infrastructure/storage/expand_hdd/roles/get_hdd_facts
7,653
[ "no_license" ]
[ { "path": "infrastructure/storage/expand_hdd/roles/get_hdd_facts/tasks/main.yml", "content": "- name: Gather disk facts from virtual machine using name\n vmware_guest_disk_facts:\n hostname: \"{{ vcenter.url }}\"\n username: \"{{ vcenter.username }}\"\n password: \"{{ <PASSWORD> | trim }}\"\n d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 375, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
infrastructure/storage/lvm/roles/resize_lv
7,653
[ "no_license" ]
[ { "path": "infrastructure/storage/lvm/roles/resize_lv/tasks/main.yml", "content": "---\n- name: resize logical volume\n lvol:\n vg: \"{{ lvm.vg }}\"\n lv: \"{{ lvm.lv }}\"\n pvs: \"{{ device }}\"\n size: \"{{ lvm.size }}\"\n state: present\n shrink: false\n...", "license_type": "no_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 179, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
infrastructure/storage/lvm/roles/resize_vg
7,653
[ "no_license" ]
[ { "path": "infrastructure/storage/lvm/roles/resize_vg/tasks/main.yml", "content": "# resizing volume group \n# vgextend <volumegroupname> /dev/sdX\n---\n- name: resize volume group\n lvg:\n vg: \"{{ lvm.vg }}\"\n pvs: \"{{ device }}\"\n...", "license_type": "no_license", "detected_licenses": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 152, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
infrastructure/vsphere/centos_6/roles/ad_join
7,653
[ "no_license" ]
[ { "path": "infrastructure/vsphere/centos_6/roles/ad_join/templates/krb5.conf.j2", "content": "[logging]\n default = FILE:/var/log/krb5libs.log\n kdc = FILE:/var/log/krb5kdc.log\n admin_server = FILE:/var/log/kadmind.log\n\n[libdefaults]\n default_realm = example.domain.COM\n dns_lookup_realm = true\n dns_lo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2315, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
infrastructure/vsphere/centos_6/roles/ipam
7,653
[ "no_license" ]
[ { "path": "infrastructure/vsphere/centos_6/roles/ipam/tasks/main.yml", "content": "---\n- name: Gathering ipam auth token\n uri:\n validate_certs: false\n url: \"{{ ipam.token_request }}\"\n method: POST\n user: \"{{ ipam.api_user }}\"\n password: \"{{ ipam.api_pass | trim }}\"\n force_ba...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 834, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
infrastructure/vsphere/centos_6/roles/manual_ip_vm
7,653
[ "no_license" ]
[ { "path": "infrastructure/vsphere/centos_6/roles/manual_ip_vm/tasks/main.yml", "content": "---\n- name: Create a virtual machine from a template\n vmware_guest:\n hostname: \"{{ vcenter.url }}\"\n username: \"{{ vcenter.username }}\"\n password: \"{{ <PASSWORD> | trim }}\"\n datacenter: \"{{ vc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 951, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
infrastructure/vsphere/centos_6/roles/spacewalk
7,653
[ "no_license" ]
[ { "path": "infrastructure/vsphere/centos_6/roles/spacewalk/tasks/main.yml", "content": "---\n- name: add dns servers\n template:\n src: resolv.conf.j2\n dest: /etc/resolv.conf\n mode: 0644\n\n- name: join spacewalk\n rhn_register:\n state: present\n activationkey: \"{{ rhn.activationkey }}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 446, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
roles/version-deploy/roles/daemon-run
7,653
[ "no_license" ]
[ { "path": "roles/version-deploy/roles/daemon-run/tasks/main.yml", "content": "---\n- name: find and replace\n replace: \n dest: /home/{{ envoy_user }}/{{ item }}\n regexp: \"{{ branch.old_version }}\"\n replace: \"{{ branch.new_version }}\"\n backup: no\n with_items: \n - daemon_run.sh\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 531, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
roles/version-deploy/roles/f5-pool-done
7,653
[ "no_license" ]
[ { "path": "roles/version-deploy/roles/f5-pool-done/tasks/main.yml", "content": "- name: Remove pool member from pool\n bigip_pool_member:\n server: lb.mydomain.com\n user: admin\n password: <PASSWORD>\n state: absent\n pool: my-pool\n partition: Common\n host: \"{{ ansible_default_ipv4...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 272, "all_permissive": false }
ansible_role
nullconfig/ansible
91d27d4eac976fbe8c8cf1c34f600fa14dd47ff5
1
roles/version-deploy/roles/fresh-run
7,653
[ "no_license" ]
[ { "path": "roles/version-deploy/roles/fresh-run/templates/fresh_run.sh.j2", "content": "#!/bin/bash\n\nBRANCH=\"{{ branch.new_version }}\"\nNODE_ENV=\"{{ node_env.stage_branch }}\"\nCREDS=\"{{ aws_creds }}\"\n\nif [ -z \"$BRANCH\" ]\nthen\n\n echo -e \"Please provide a branch to deploy\\n\"\n echo -e ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2719, "all_permissive": false }
ansible_role
SadeeshaPerera/laravel-ansible-deploy
d1d08bb813ddccbb85fde8aa9e58b9fdbae1f46b
0
ansible/roles/common
7,653
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: Update apt cache\n apt:\n update_cache: yes\n cache_valid_time: 3600\n\n- name: Install common packages\n apt:\n name:\n - git\n - curl\n - unzip\n - acl\n state: present\n", "license_type": "no_l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 205, "all_permissive": false }
ansible_role
SadeeshaPerera/laravel-ansible-deploy
d1d08bb813ddccbb85fde8aa9e58b9fdbae1f46b
0
ansible/roles/laravel
7,653
[ "no_license" ]
[ { "path": "ansible/roles/laravel/templates/env.j2", "content": "APP_NAME={{ app_name }}\nAPP_ENV={{ app_env }}\nAPP_DEBUG={{ app_debug }}\nAPP_URL=http://{{ nginx_server_name }}\n\nLOG_CHANNEL=stack\nLOG_DEPRECATIONS_CHANNEL=null\nLOG_LEVEL=debug\n\nDB_CONNECTION=sqlite\n\nBROADCAST_DRIVER=log\nCACHE_DRIVER...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2084, "all_permissive": false }
ansible_role
SadeeshaPerera/laravel-ansible-deploy
d1d08bb813ddccbb85fde8aa9e58b9fdbae1f46b
0
ansible/roles/nginx
7,653
[ "no_license" ]
[ { "path": "ansible/roles/nginx/templates/nginx.conf.j2", "content": "server {\n listen 80;\n listen [::]:80;\n server_name {{ nginx_server_name }};\n \n # Redirect HTTP to HTTPS\n location / {\n return 301 https://$server_name$request_uri;\n }\n}\n\nserver {\n listen 443 ssl h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2139, "all_permissive": false }
ansible_role
SadeeshaPerera/laravel-ansible-deploy
d1d08bb813ddccbb85fde8aa9e58b9fdbae1f46b
0
ansible/roles/php
7,653
[ "no_license" ]
[ { "path": "ansible/roles/php/tasks/main.yml", "content": "---\n- name: Add PHP repository\n apt_repository:\n repo: ppa:ondrej/php\n state: present\n\n- name: Install PHP and required extensions\n apt:\n name: \"{{ php_packages }}\"\n state: present\n update_cache: yes\n\n- name: Install Co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 434, "all_permissive": false }
ansible_role
yunus-neg/minikube-ansible-auto
408764d5f299de4724f4aa8d3cac6b02a0784cfc
0
ansible/roles/docker
7,653
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n# tasks file for roles/docker\n\n- name: Install docker\n ansible.builtin.include_tasks: install-docker.yml\n when: install_docker\n\n- name: Add insecure registry\n ansible.builtin.include_tasks: insecure-registry.yml\n when: local_regis...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3614, "all_permissive": false }
ansible_role
yunus-neg/minikube-ansible-auto
408764d5f299de4724f4aa8d3cac6b02a0784cfc
0
ansible/roles/minikube
7,653
[ "no_license" ]
[ { "path": "ansible/roles/minikube/tasks/start-minikube.yml", "content": "- name: Start minikube\n ansible.builtin.shell:\n cmd: \"minikube start --driver=docker --insecure-registry='{{ insecure_registry }}'\"\n when: start_minikube\n\n- name: Start minikube tunnel for 600 sec\n ansible.builtin.shell:\...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3425, "all_permissive": false }
ansible_role
laetificat/k8s-ansible
f3841b9c5b92eb092a7912afbfe498b54843ad7d
0
roles/addons
7,653
[ "no_license" ]
[ { "path": "roles/addons/tasks/main.yml", "content": "---\n- name: Install apt-transport-https\n apt:\n name: apt-transport-https\n state: present\n update_cache: yes\n\n- name: Add Helm GPG key\n shell: |\n curl https://baltocdn.com/helm/signing.asc | gpg --dearmor > /usr/share/keyrings/helm.g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1760, "all_permissive": false }
ansible_role
laetificat/k8s-ansible
f3841b9c5b92eb092a7912afbfe498b54843ad7d
0
roles/k3s
7,653
[ "no_license" ]
[ { "path": "roles/k3s/meta/main.yml", "content": "galaxy_info:\n author: example\n description: Install k3s\n min_ansible_version: 2.14\n license: MIT\n\ncollections:\n - kubernetes.core\n - community.kubernetes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 160 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1191, "all_permissive": false }
ansible_role
fdupoux/devops
13bdc6c69ec8b4ebc0f54d9cf4ab84b4247a394a
1
ansible/roles/ansible
7,653
[ "no_license" ]
[ { "path": "ansible/roles/ansible/tasks/installation.yml", "content": "---\n- name: Install Ansible dependencies\n yum:\n name: \"{{ item }}\"\n state: \"installed\"\n with_items: '{{ ansible_packages }}'\n\n- name: Install Ansible-2.x packages\n yum:\n name: \"{{ item }}\"\n state: \"installe...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 687, "all_permissive": false }
ansible_role
fdupoux/devops
13bdc6c69ec8b4ebc0f54d9cf4ab84b4247a394a
1
ansible/roles/aws-eip
7,653
[ "no_license" ]
[ { "path": "ansible/roles/aws-eip/tasks/main.yml", "content": "---\n#- import_tasks: installation.yml\n# tags: ['aws-eip','installation','aws-eip-installation']\n# when: aws_eip_enabled == true\n- import_tasks: configuration.yml\n tags: ['aws-eip','configuration','aws-eip-configuration']\n when: aws_eip_...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 4559, "all_permissive": false }
ansible_role
fdupoux/devops
13bdc6c69ec8b4ebc0f54d9cf4ab84b4247a394a
1
ansible/roles/basepackages
7,653
[ "no_license" ]
[ { "path": "ansible/roles/basepackages/README.adoc", "content": "basepackages\n============\n\nThis role installs all common packages that must be installed on all systems so\nthe system can be configured via Ansible and so it is usable.\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 2596, "all_permissive": false }
ansible_role
fdupoux/devops
13bdc6c69ec8b4ebc0f54d9cf4ab84b4247a394a
1
ansible/roles/generic-ami-bootstrap
7,653
[ "no_license" ]
[ { "path": "ansible/roles/generic-ami-bootstrap/README.adoc", "content": "generic-ami-bootstrap\n=====================\n\nThis role implements the bootstrapping process which needs to run after a new\nEC2 instance has been created in order to apply the right configuration to it.\nThis role need to be applied...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3825, "all_permissive": false }
ansible_role
fdupoux/devops
13bdc6c69ec8b4ebc0f54d9cf4ab84b4247a394a
1
ansible/roles/generic-ami-builder
7,653
[ "no_license" ]
[ { "path": "ansible/roles/generic-ami-builder/tasks/main.yml", "content": "---\n- import_tasks: 01_create_vpc.yml\n tags: ['installation','generic-ami-builder','generic-ami-builder-prepare-vpc']\n when: generic_ami_builder_step == 'generic-ami-builder-prepare-vpc'\n- import_tasks: 02_create_ec2.yml\n tags...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 10, "total_bytes": 15743, "all_permissive": false }
ansible_role
fdupoux/devops
13bdc6c69ec8b4ebc0f54d9cf4ab84b4247a394a
1
ansible/roles/generic-ami-deploy
7,653
[ "no_license" ]
[ { "path": "ansible/roles/generic-ami-deploy/files/01-application-vpc.json", "content": "{\n \"AWSTemplateFormatVersion\" : \"2010-09-09\",\n\n \"Description\" : \"AWS CloudFormation template to create a persistent VPC for the application\",\n\n \"Parameters\" : {\n\n \"StackName\": {\n \"Descript...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 28875, "all_permissive": false }
ansible_role
fdupoux/devops
13bdc6c69ec8b4ebc0f54d9cf4ab84b4247a394a
1
ansible/roles/main-websrv
7,653
[ "no_license" ]
[ { "path": "ansible/roles/main-websrv/meta/main.yml", "content": "---\ndependencies:\n - { role: 'aws-eip', aws_eip_newaddress: '{{ eip_websrv }}' }\n - { role: 'repositories' }\n - { role: 'basepackages' }\n - { role: 'generic-ami-bootstrap' }\n", "license_type": "no_license", "detected_licenses...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 514, "all_permissive": false }
ansible_role
fdupoux/devops
13bdc6c69ec8b4ebc0f54d9cf4ab84b4247a394a
1
ansible/roles/repositories
7,653
[ "no_license" ]
[ { "path": "ansible/roles/repositories/tasks/installation.yml", "content": "---\n- name: Configure access to EPEL repository\n yum: name=epel-release state=installed\n when: ansible_os_family == \"RedHat\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 127 }, { ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 445, "all_permissive": false }
ansible_role
soulmachine/ubuntu-provision
21d1a6c805fd08d3f893a4a2f03ca074465f0549
11
roles/caffe
7,653
[ "no_license" ]
[ { "path": "roles/caffe/meta/main.yml", "content": "---\ndependencies:\n - cudnn\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "roles/caffe/tasks/main.yml", "content": "---\n# Reference:\n# http://caffe.berkeleyvision.org/install_apt.html\n#...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3267, "all_permissive": false }
ansible_role
soulmachine/ubuntu-provision
21d1a6c805fd08d3f893a4a2f03ca074465f0549
11
roles/common
7,653
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n\n- name: Install essential packages\n apt: name={{item}} state=latest\n with_items:\n - openssh-server\n - vim\n - wget\n - curl\n - git\n - python\n - tree\n - colordiff\n - build-essential\n - cmake\n - apt-transport-https\n - ca-cer...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2784, "all_permissive": false }
ansible_role
soulmachine/ubuntu-provision
21d1a6c805fd08d3f893a4a2f03ca074465f0549
11
roles/cuda
7,653
[ "no_license" ]
[ { "path": "roles/cuda/tasks/main.yml", "content": "---\n# Reference:\n# https://github.com/NVIDIA/nvidia-docker/blob/master/ubuntu-16.04/cuda/8.0/runtime/Dockerfile\n# https://developer.nvidia.com/cuda-downloads\n\n- name: Import Nvidia GPG public key\n apt_key: url=http://developer.download.nvidia.com/com...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 892, "all_permissive": false }
ansible_role
soulmachine/ubuntu-provision
21d1a6c805fd08d3f893a4a2f03ca074465f0549
11
roles/cudnn
7,653
[ "no_license" ]
[ { "path": "roles/cudnn/tasks/main.yml", "content": "---\n# Reference:\n# https://github.com/NVIDIA/nvidia-docker/blob/master/ubuntu-16.04/cuda/8.0/runtime/cudnn5/Dockerfile\n\n- name: Check whether cuDNN exists or not\n stat: path=/usr/local/cuda/include/cudnn.h\n register: cudnn_header\n\n- name: Downloa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 762, "all_permissive": false }
ansible_role
soulmachine/ubuntu-provision
21d1a6c805fd08d3f893a4a2f03ca074465f0549
11
roles/youcompleteme
7,653
[ "no_license" ]
[ { "path": "roles/youcompleteme/tasks/main.yml", "content": "---\n\n- name: Install dependencies of YouCompleteMe\n apt: name={{item}} state=latest\n with_items:\n - vim\n - git\n - python-dev\n - python3-dev\n - build-essential\n - cmake\n\n\n# Reference https://github.com/VundleVim/Vundle.vim#quick...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 823, "all_permissive": false }
ansible_role
fabiosakiyama/gce-devops
2ee0635760c76ea8dafab5c9154fd93fd97d1598
1
ansible/roles/puppetagent
7,653
[ "no_license" ]
[ { "path": "ansible/roles/puppetagent/tasks/main.yml", "content": "- name: CentOS Puppet package\n yum:\n name: https://yum.puppet.com/puppet5/puppet5-release-el-7.noarch.rpm\n\n- name: Install puppet-agent\n become: yes\n yum:\n name: puppet-agent\n\n- name: Start puppet\n become: yes\n shell: /o...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 446, "all_permissive": false }
ansible_role
fabiosakiyama/gce-devops
2ee0635760c76ea8dafab5c9154fd93fd97d1598
1
ansible/roles/puppetserver
7,653
[ "no_license" ]
[ { "path": "ansible/roles/puppetserver/defaults/main.yml", "content": "---\n# defaults file for puppetserver", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "ansible/roles/puppetserver/vars/main.yml", "content": "---\n# vars file for puppetserver...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1056, "all_permissive": false }
ansible_role
Keeper-of-the-Keys/ansible-collection-servers
08675912d6f165099014abbf79fffdb59980463a
0
roles/acme_certs_with_tlsa
7,651
[ "no_license" ]
[ { "path": "roles/acme_certs_with_tlsa/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - acme-certs-with-tlsa\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 }, { "path": "roles/acme_certs_with_tlsa/handlers/main.yml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 5935, "all_permissive": false }
ansible_role
Keeper-of-the-Keys/ansible-collection-servers
08675912d6f165099014abbf79fffdb59980463a
0
roles/mailserver
7,651
[ "no_license" ]
[ { "path": "roles/mailserver/files/mailserver.schema.20250216.sql", "content": "-- MariaDB dump 10.19 Distrib 10.11.6-MariaDB, for debian-linux-gnu (x86_64)\n--\n-- Host: localhost Database: mailserver\n-- ------------------------------------------------------\n-- Server version\t10.11.6-MariaDB-0+deb12u...
{ "task_files": 20, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 36, "total_bytes": 113301, "all_permissive": false }
ansible_role
Keeper-of-the-Keys/ansible-collection-servers
08675912d6f165099014abbf79fffdb59980463a
0
roles/provisioning_and_maintenance
7,651
[ "no_license" ]
[ { "path": "roles/provisioning_and_maintenance/tasks/apt_update.yaml", "content": "- name: apt-get update\n become: yes\n ansible.builtin.apt:\n update_cache: yes\n cache_valid_time: 3600\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 109 }, { "path": "ro...
{ "task_files": 15, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 20, "total_bytes": 10844, "all_permissive": false }
ansible_role
ashish-rane/devops-demo
e0998b916017f1d3ec724b842ee0d3694f63c7a4
0
Ansible-demo/project_3/roles/webserver
7,651
[ "no_license" ]
[ { "path": "Ansible-demo/project_3/roles/webserver/vars/main.yml", "content": "---\nmyvar1: test1\nmyvar2: test2", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "Ansible-demo/project_3/roles/webserver/tasks/main.yml", "content": "---\n- name: ins...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 284, "all_permissive": false }
ansible_role
myzlo/test-ansible
7ff8b75cf248ce8844306ee440e43935d56ae672
0
roles/cloudwatch_exporter
7,651
[ "no_license" ]
[ { "path": "roles/cloudwatch_exporter/tasks/main.yml", "content": "- name: Gather EC2 metadata\n ec2_metadata_facts:\n\n- name: Copy CloudWatch Exporter config file with dynamic region\n template:\n src: cloudwatch-exporter.yaml.j2\n dest: /home/ec2-user/cloudwatch-exporter.yaml\n\n- name: Run CloudW...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2375, "all_permissive": false }
ansible_role
myzlo/test-ansible
7ff8b75cf248ce8844306ee440e43935d56ae672
0
roles/docker
7,651
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Install dependencies\n yum:\n name: \"{{ item }}\"\n state: present\n loop:\n - git\n - docker\n\n- name: Enable Docker service\n service:\n name: docker\n state: started\n enabled: yes\n\n- name: Get latest Docker Compose ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1007, "all_permissive": false }
ansible_role
myzlo/test-ansible
7ff8b75cf248ce8844306ee440e43935d56ae672
0
roles/ecs_task_exporter
7,651
[ "no_license" ]
[ { "path": "roles/ecs_task_exporter/tasks/main.yml", "content": "- name: Gather EC2 metadata\n ec2_metadata_facts:\n\n- name: Run ECS task counter\n docker_container:\n name: ecs_task_exporter\n image: myzlo/ecs-task-counter\n ports:\n - \"8000:8000\"\n state: started\n restart_policy: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 302, "all_permissive": false }
ansible_role
lisandrodv27/ansible-project
2c2c276b0ad15e31391078a2bd61a4a7ebc4364c
0
roles/nginx
7,651
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yaml", "content": "- hosts: nginx\n become: true\n tasks:\n - name: \"Install NGINX\"\n apt:\n name: nginx\n state: latest\n update_cache: true\n - name: \"Start NGINX\"\n service:\n name: nginx\n state: started\n - name: \"Update package...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 302, "all_permissive": false }
ansible_role
arptra/roger-skyline-1
bfef229c7772b438ce60f6f0c101849ea1d130cf
0
roles/cron
7,651
[ "no_license" ]
[ { "path": "roles/cron/files/check_changes/update.sh", "content": "#!/bin/bash\n\nif [ -e /var/log/update_script.log ]\nthen\necho -e \"File exist\\n\"\nelse\ntouch /var/log/update_script.log\necho -e \"File create\\n\"\nfi\n\ndate >> /var/log/update_script.log\napt-get update >> /var/log/update_script.log...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1651, "all_permissive": false }
ansible_role
arptra/roger-skyline-1
bfef229c7772b438ce60f6f0c101849ea1d130cf
0
roles/deploy
7,651
[ "no_license" ]
[ { "path": "roles/deploy/files/restart.sh", "content": "#!/bin/bash\n\nsudo systemctl daemon-reload\nsudo systemctl restart webApp.service\nsudo systemctl restart nginx.service\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 }, { "path": "roles/deploy/vars/mai...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1888, "all_permissive": false }
ansible_role
arptra/roger-skyline-1
bfef229c7772b438ce60f6f0c101849ea1d130cf
0
roles/mail
7,651
[ "no_license" ]
[ { "path": "roles/mail/tasks/main.yml", "content": "---\n- name: Initialising Postfix\n command: \"{{ item }}\"\n with_items:\n - debconf-set-selections <<< \"postfix postfix/main_mailer_type string 'Local only\"\n - debconf-set-selections <<< \"postfix postfix/mailname string debian\"\n # when: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 506, "all_permissive": false }
ansible_role
arptra/roger-skyline-1
bfef229c7772b438ce60f6f0c101849ea1d130cf
0
roles/nginx
7,651
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Installing Nginx\n apt:\n name=nginx\n state=latest\n notify:\n - nginx systemd\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
arptra/roger-skyline-1
bfef229c7772b438ce60f6f0c101849ea1d130cf
0
roles/python
7,651
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "---\n- name: Install Python\n apt: name={{ item }} update_cache=yes state=installed\n with_items:\n - git\n - python3\n - python3-pip\n - python3-dev\n - build-essential\n - libssl-dev\n - libffi-dev\n - python3-setuptools\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 257, "all_permissive": false }
ansible_role
arptra/roger-skyline-1
bfef229c7772b438ce60f6f0c101849ea1d130cf
0
roles/tools
7,651
[ "no_license" ]
[ { "path": "roles/tools/files/webApp_tools/show_status.sh", "content": "#!/bin/bash\n\necho -e \"Status of webApp.service \\n\"\nsudo systemctl status webApp.service\necho -e \"Nginx -t\\n\"\nsudo nginx -t\necho -e \"Status of nginx.service\\n\"\nsudo systemctl status nginx.service\n\n", "license_type": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 927, "all_permissive": false }
ansible_role
bpshoe/sim-to-motec-ansible
001f96591350d3cd7a773e98da6544fe93500fa7
0
roles/common
7,651
[ "no_license" ]
[ { "path": "roles/common/templates/status.sh.j2", "content": "#!/bin/bash\n# This script provides a comprehensive health check for the MoTeC Automator services.\n\n# Define Colors\nGREEN='\\033[0;32m'\nYELLOW='\\033[1;33m'\nRED='\\033[0;31m'\nCYAN='\\033[0;36m'\nNC='\\033[0m' # No Color\n\necho -e \"${CYAN}-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3362, "all_permissive": false }
ansible_role
bpshoe/sim-to-motec-ansible
001f96591350d3cd7a773e98da6544fe93500fa7
0
roles/samba
7,651
[ "no_license" ]
[ { "path": "roles/samba/handlers/main.yml", "content": "---\n- name: Restart samba services\n ansible.builtin.service:\n name: \"{{ item }}\"\n state: restarted\n loop:\n - smbd\n - nmbd\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 136 }, { "path"...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1250, "all_permissive": false }
ansible_role
bpshoe/sim-to-motec-ansible
001f96591350d3cd7a773e98da6544fe93500fa7
0
roles/sim_to_motec
7,651
[ "no_license" ]
[ { "path": "roles/sim_to_motec/defaults/main.yml", "content": "---\nrepo_path: /opt/motec_webapp\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 33 }, { "path": "roles/sim_to_motec/vars/main.yml", "content": "---\napp_repo: https://github.com/GeekyDeaks/sim-to...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3839, "all_permissive": false }
ansible_role
bpshoe/sim-to-motec-ansible
001f96591350d3cd7a773e98da6544fe93500fa7
0
roles/verify
7,651
[ "no_license" ]
[ { "path": "roles/verify/tasks/main.yml", "content": "---\n- name: VERIFY | Pause for services to fully start\n ansible.builtin.pause:\n seconds: 10\n- name: VERIFY | Check if webapp is responding\n ansible.builtin.uri:\n url: http://{{ target_ip }}:{{ webapp_port }}/\n method: GET\n register: we...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1096, "all_permissive": false }
ansible_role
bpshoe/sim-to-motec-ansible
001f96591350d3cd7a773e98da6544fe93500fa7
0
roles/webapp
7,651
[ "no_license" ]
[ { "path": "roles/webapp/templates/service_settings.json.j2", "content": "{\n \"sim_type\": \"{{ sim_type }}\",\n \"playstation_ip\": \"{{ playstation_ip }}\",\n \"replay\": {{ replay | lower }},\n \"save_raw_telemetry\": {{ save_raw_telemetry | lower }},\n \"driver\": \"{{ driver }}\",\n \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 27924, "all_permissive": false }
ansible_role
rancherfederal/rke2-ansible
22716648e36923c9ad0358bee7894a32704acc33
279
roles/rke2
7,651
[ "permissive" ]
[ { "path": "roles/rke2/tasks/iptables_rules.yml", "content": "---\n\n- name: Allow 9345\n ansible.builtin.iptables:\n action: insert\n chain: INPUT\n protocol: tcp\n destination_port: \"9345\"\n ctstate: NEW\n jump: ACCEPT\n when: inventory_hostname in groups['rke2_servers']\n\n- name: Al...
{ "task_files": 21, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 31, "total_bytes": 66512, "all_permissive": true }
ansible_role
rancherfederal/rke2-ansible
22716648e36923c9ad0358bee7894a32704acc33
279
roles/testing
7,651
[ "permissive" ]
[ { "path": "roles/testing/files/basic-deployment.yaml", "content": "---\n\napiVersion: v1\nkind: Pod\nmetadata:\n name: automated-testing-pod\n namespace: default\n labels:\n app: testing\nspec:\n containers:\n - name: automated-testing-pod\n image: nginx:alpine\n ports:\n - name: ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 4312, "all_permissive": true }
ansible_role
omgnetwork/goban
838474c3fd49cea2ab9f03eeea4ab05fad1aab6e
4
provisioning/roles/commons
7,651
[ "no_license" ]
[ { "path": "provisioning/roles/commons/tasks/chrony.yml", "content": "---\n- name: install chrony\n become: yes\n apt:\n name: chrony\n state: latest\n\n- name: enable chrony\n become: yes\n service:\n name: chrony\n enabled: yes\n state: started\n", "license_type": "no_license", "...
{ "task_files": 8, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 2873, "all_permissive": false }
ansible_role
omgnetwork/goban
838474c3fd49cea2ab9f03eeea4ab05fad1aab6e
4
provisioning/roles/ewallet
7,651
[ "no_license" ]
[ { "path": "provisioning/roles/ewallet/tasks/packages/erlang.yml", "content": "---\n- name: install erlang-solutions gpg key\n become: yes\n apt_key:\n url: https://packages.erlang-solutions.com/debian/erlang_solutions.asc\n state: present\n\n- name: install erlang-solutions repository\n become: yes...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 2319, "all_permissive": false }
ansible_role
omgnetwork/goban
838474c3fd49cea2ab9f03eeea4ab05fad1aab6e
4
provisioning/roles/postgres
7,651
[ "no_license" ]
[ { "path": "provisioning/roles/postgres/templates/01_init_hba.sh.j2", "content": "#!/bin/bash\nset -e\n\ncat <<-EOF > /var/lib/postgresql/data/pg_hba.conf\n# TYPE DATABASE USER ADDRESS METHOD\nlocal all all trust\nhost al...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1702, "all_permissive": false }
ansible_role
pavan-chithari/github-actions-hello-world
ef4c9b1dbed726b830a14cf15e600809321d8b80
0
ansible/roles/gosysrs_deploy
7,651
[ "no_license" ]
[ { "path": "ansible/roles/gosysrs_deploy/vars/main.yml", "content": "dir: \"D:\"\ngosysrsURL: \"https://tr1.jfrog.io/artifactory/generic-local/CTT/GST/GoSysRS/\"\nArtifact_Location: '{{ dir }}\\\\Artifacts\\\\'\nGoSysRs_DeploymentPath: '{{ dir }}\\\\Inetpub\\\\wwwroot\\\\{{ GoSysRs_SITENAME }}\\\\'\nGoSysRss...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4226, "all_permissive": false }
ansible_role
ergosteur/ergo-ansible-playbooks
f22e3cfb5879748ad339fc8d21c0cf6e5d647aae
0
wordpress-nginx_debian/roles/mariadb
7,651
[ "no_license" ]
[ { "path": "wordpress-nginx_debian/roles/mariadb/tasks/main.yml", "content": "---\n# This playbook will install MariaDB and create db user and give permissions.\n\n- name: Install MariaDB package\n apt: name={{ item }} state=installed\n with_items:\n - mariadb-server\n - python-mysqldb\n - python-sel...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 946, "all_permissive": false }
ansible_role
ergosteur/ergo-ansible-playbooks
f22e3cfb5879748ad339fc8d21c0cf6e5d647aae
0
wordpress-nginx_debian/roles/nginx
7,651
[ "no_license" ]
[ { "path": "wordpress-nginx_debian/roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx\n apt: pkg=nginx state=installed\n\n#- name: Copy nginx configuration for wordpress\n# template: src=default.conf dest=/etc/nginx/conf.d/default.conf\n# notify: restart nginx\n\n# Need to switch this to...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 432, "all_permissive": false }
ansible_role
ergosteur/ergo-ansible-playbooks
f22e3cfb5879748ad339fc8d21c0cf6e5d647aae
0
wordpress-nginx_debian/roles/php-fpm
7,651
[ "no_license" ]
[ { "path": "wordpress-nginx_debian/roles/php-fpm/tasks/main.yml", "content": "---\n- name: Install php-fpm and deps\n apt: name={{ item }} state=present\n with_items:\n - php5\n - php5-fpm\n - php5-gd\n - php5-ldap\n - php5-enchant\n# - php-IDNA_Convert\n# - php-mbstring\n - php5-my...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 770, "all_permissive": false }
ansible_role
Charly86/CasoPractico2-UNIR
9b2c02d1e2af7cd101126ba30767fe52f00bc585
0
Ansible/roles/app
7,651
[ "no_license" ]
[ { "path": "Ansible/roles/app/files/ingress.yml", "content": "apiVersion: networking.k8s.io/v1\nkind: Ingress\nmetadata:\n name: game-ingress\n namespace: game\n labels:\n app: game\n annotations:\n haproxy.org/path-rewrite: \"/\"\nspec:\n rules:\n - host: cvillar.unir.cp2\n http:\n pat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1954, "all_permissive": false }
ansible_role
Charly86/CasoPractico2-UNIR
9b2c02d1e2af7cd101126ba30767fe52f00bc585
0
Ansible/roles/common
7,651
[ "no_license" ]
[ { "path": "Ansible/roles/common/tasks/main.yml", "content": "---\n# tasks file for common\n\n- name: \"Installing Required Packages\"\n package:\n name:\n - iproute-tc\n - net-tools\n - wget\n - nfs-utils\n - rpcbind\n - chrony\n - python3\n - nfs4-acl-tools\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3171, "all_permissive": false }
ansible_role
Charly86/CasoPractico2-UNIR
9b2c02d1e2af7cd101126ba30767fe52f00bc585
0
Ansible/roles/kubemaster
7,651
[ "no_license" ]
[ { "path": "Ansible/roles/kubemaster/vars/main.yml", "content": "---\n# vars file for kubemaster\ncidrPodNetwork: 10.244.0.0/16\nFirewall_ports_master:\n - 6443\n - 2379-2380\n - 10250\n - 10251\n - 10252\n - 10255\n - 80\n - 8080", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2689, "all_permissive": false }
ansible_role
Charly86/CasoPractico2-UNIR
9b2c02d1e2af7cd101126ba30767fe52f00bc585
0
Ansible/roles/kubenodes
7,651
[ "no_license" ]
[ { "path": "Ansible/roles/kubenodes/handlers/main.yml", "content": "---\n# handlers file for kubenodes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "Ansible/roles/kubenodes/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user:...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 804, "all_permissive": false }
ansible_role
Charly86/CasoPractico2-UNIR
9b2c02d1e2af7cd101126ba30767fe52f00bc585
0
Ansible/roles/nfs
7,651
[ "no_license" ]
[ { "path": "Ansible/roles/nfs/tasks/main.yml", "content": "---\n# tasks file for nfs\n- name: Create directory for NFS\n file:\n path: /srv/nfs\n state: directory\n\n- name: Enable and start NFS service\n systemd:\n name: nfs-server\n state: started\n enabled: yes\n masked: no\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1234, "all_permissive": false }
ansible_role
seabornlee/macos-provisioning
24a9dcf92ffedc3171db643d3d28c6f17bcfeba5
0
playbooks/roles/android-developer
7,651
[ "no_license" ]
[ { "path": "playbooks/roles/android-developer/tasks/main.yml", "content": "---\n- name: Install Fastlane\n community.general.homebrew:\n name: fastlane\n state: upgraded\n\n- name: Install SDKMAN\n ansible.builtin.shell: |\n curl -s \"https://get.sdkman.io\" | bash\n source \"$HOME/.sdkman/bin/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 269, "all_permissive": false }
ansible_role
seabornlee/macos-provisioning
24a9dcf92ffedc3171db643d3d28c6f17bcfeba5
0
playbooks/roles/any-developer
7,651
[ "no_license" ]
[ { "path": "playbooks/roles/any-developer/tasks/main.yml", "content": "---\n- name: Config Git user\n git_config:\n name: user.name\n scope: global \n value: \"{{ git_user }}\"\n\n- name: Config Git Email\n git_config:\n name: user.email\n scope: global \n value: \"{{ git_email }}\"\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1300, "all_permissive": false }
ansible_role
seabornlee/macos-provisioning
24a9dcf92ffedc3171db643d3d28c6f17bcfeba5
0
playbooks/roles/cli
7,651
[ "no_license" ]
[ { "path": "playbooks/roles/cli/tasks/main.yml", "content": "---\n- name: Install OCR\n community.general.homebrew:\n name: schappim/ocr/ocr\n state: upgraded\n\n- name: Install 1Password CLI\n community.general.homebrew:\n name: 1password/tap/1password-cli\n state: upgraded\n\n- name: Install ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 847, "all_permissive": false }
ansible_role
seabornlee/macos-provisioning
24a9dcf92ffedc3171db643d3d28c6f17bcfeba5
0
playbooks/roles/daily
7,651
[ "no_license" ]
[ { "path": "playbooks/roles/daily/tasks/main.yml", "content": "---\n\n- name: Install Camtasia\n community.general.homebrew_cask:\n name: camtasia\n state: upgraded\n\n- name: Install Session messenger\n community.general.homebrew_cask:\n name: session\n state: upgraded\n\n- name: Install Monit...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2573, "all_permissive": false }
ansible_role
seabornlee/macos-provisioning
24a9dcf92ffedc3171db643d3d28c6f17bcfeba5
0
playbooks/roles/dotfiles
7,651
[ "no_license" ]
[ { "path": "playbooks/roles/dotfiles/tasks/main.yml", "content": "---\n- name: Install yadm\n community.general.homebrew:\n name: yadm\n state: present \n\n- name: Clone configuration\n command: \"yadm clone -f https://github.com/{{ dotfiles_repo }}.git\"\n", "license_type": "no_license", "d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 190, "all_permissive": false }
ansible_role
seabornlee/macos-provisioning
24a9dcf92ffedc3171db643d3d28c6f17bcfeba5
0
playbooks/roles/poweruser
7,651
[ "no_license" ]
[ { "path": "playbooks/roles/poweruser/tasks/main.yml", "content": "---\n- name: Install htop\n community.general.homebrew:\n name: htop\n state: present\n\n- name: Install jq\n community.general.homebrew:\n name: jq\n state: present\n", "license_type": "no_license", "detected_licenses":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 171, "all_permissive": false }
ansible_role
lahsivjar/kube-arm
829b7649f3c5290e0c3184773d309abdb419fecd
10
roles/get-ca-cert-hash
7,651
[ "no_license" ]
[ { "path": "roles/get-ca-cert-hash/tasks/main.yaml", "content": "---\n- name: Get CA certificate hash\n shell: openssl x509 -pubkey -in /etc/kubernetes/pki/ca.crt | \\\n openssl rsa -pubin -outform der 2>/dev/null | \\\n openssl dgst -sha256 -hex | \\\n sed 's/^.* //'\n register: local_cert_has...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 461, "all_permissive": false }
ansible_role
lahsivjar/kube-arm
829b7649f3c5290e0c3184773d309abdb419fecd
10
roles/install-kube
7,651
[ "no_license" ]
[ { "path": "roles/install-kube/tasks/main.yaml", "content": "---\n- name: Add GPG key for official kube\n apt_key:\n url: \"https://packages.cloud.google.com/apt/doc/apt-key.gpg\"\n state: present\n- name: Add the kube package to sources\n apt_repository:\n repo: \"deb http://apt.kubernetes.io/ ku...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 422, "all_permissive": false }
ansible_role
lahsivjar/kube-arm
829b7649f3c5290e0c3184773d309abdb419fecd
10
roles/iptables-patch
7,651
[ "no_license" ]
[ { "path": "roles/iptables-patch/tasks/main.yaml", "content": "---\n# @see https://github.com/kubernetes/kubernetes/issues/45022\n- name: Update sysctl file to accept forward ruleset in iptables\n sysctl:\n name: \"net.ipv4.ip_forward\"\n value: 1\n state: present\n", "license_type": "no_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 204, "all_permissive": false }
ansible_role
lahsivjar/kube-arm
829b7649f3c5290e0c3184773d309abdb419fecd
10
roles/kube-objects
7,651
[ "no_license" ]
[ { "path": "roles/kube-objects/tasks/main.yaml", "content": "- fail:\n msg: Target module is not defined\n when: target_module is not defined\n\n- name: Register target module folder stat\n local_action: stat path={{ role_path }}/files/{{ target_module }}\n register: test_module_config\n\n- fail:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3847, "all_permissive": false }
ansible_role
lahsivjar/kube-arm
829b7649f3c5290e0c3184773d309abdb419fecd
10
roles/reboot
7,651
[ "no_license" ]
[ { "path": "roles/reboot/tasks/main.yaml", "content": "---\n- name: Rebooting\n shell: sleep 1 && /sbin/shutdown -r now\n async: 1\n poll: 0\n\n- name: Wait for reboot\n pause:\n seconds: 2\n\n- name: Wait for server to resurrect\n become: false\n local_action: wait_for\n args:\n host: \"{{ ansi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 331, "all_permissive": false }
ansible_role
lahsivjar/kube-arm
829b7649f3c5290e0c3184773d309abdb419fecd
10
roles/set-fact-master-address
7,651
[ "no_license" ]
[ { "path": "roles/set-fact-master-address/tasks/main.yaml", "content": "---\n- name: Find cluster server address\n command: kubectl config view -o jsonpath='{.clusters[?(@.name == \"kubernetes\")].cluster.server}'\n register: cluster_server_address\n- name: Register master apiserver address\n set_fact:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 411, "all_permissive": false }
ansible_role
lahsivjar/kube-arm
829b7649f3c5290e0c3184773d309abdb419fecd
10
roles/shutdown
7,651
[ "no_license" ]
[ { "path": "roles/shutdown/tasks/main.yaml", "content": "---\n- name: \"Halt after 1 minute\"\n command: shutdown -h +1 \"Server shutdown initiated, will shutdown in 60 seconds\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 117, "all_permissive": false }
ansible_role
oatakan/ansible-windows-hardening-example
49791bbba3174fd56ce5e4f179e3dcf67fd2610c
5
roles/deploy-to-aap
7,651
[ "no_license" ]
[ { "path": "roles/deploy-to-aap/tasks/credential.yml", "content": "---\n\n- name: ensure sendgrid credential exists\n awx.awx.credential:\n name: sendgrid\n description: sendgrid api credential\n credential_type: sendgrid\n organization: Default\n inputs:\n sendgrid_user: \"{{ sendgrid_u...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 15944, "all_permissive": false }
ansible_role
oatakan/ansible-windows-hardening-example
49791bbba3174fd56ce5e4f179e3dcf67fd2610c
5
roles/generate-scan-report
7,651
[ "no_license" ]
[ { "path": "roles/generate-scan-report/tasks/main.yml", "content": "---\n\n- name: send email via sendgrid\n sendgrid:\n api_key: \"{{ sendgrid_api_key | default(omit) }}\"\n from_address: \"{{ sendgrid_from_email_address }}\"\n to_addresses: \"{{ sendgrid_to_email_addresses }}\"\n subject: \"[A...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1065, "all_permissive": false }
ansible_role
oatakan/ansible-windows-hardening-example
49791bbba3174fd56ce5e4f179e3dcf67fd2610c
5
roles/openscap-install-windows
7,651
[ "no_license" ]
[ { "path": "roles/openscap-install-windows/defaults/main.yml", "content": "---\ntemp_dir: '{{ ansible_env.TEMP }}'\nopenscap_version: 1.3.4\nopenscap_download_url: https://github.com/OpenSCAP/openscap/releases/download/{{ openscap_version }}/OpenSCAP-{{ openscap_version }}-win32.msi\nopenscap_prereq_download...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1055, "all_permissive": false }
ansible_role
oatakan/ansible-windows-hardening-example
49791bbba3174fd56ce5e4f179e3dcf67fd2610c
5
roles/openscap-scan
7,651
[ "no_license" ]
[ { "path": "roles/openscap-scan/tasks/download.yml", "content": "---\n\n- block:\n - name: download benchmark content\n win_get_url:\n url: \"{{ scap_benchmark_content_download_url }}\"\n dest: '{{ temp_dir }}\\{{ scap_benchmark_content_file_name }}'\n\n - name: extract benchmark content\...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 4818, "all_permissive": false }
ansible_role
rupalisatote/ansible-akka
224fc45fa7191a556ef23007af44c898e5f761dc
0
roles/copy-file
7,654
[ "no_license" ]
[ { "path": "roles/copy-file/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - copy-file", "license_type": "no_license", "detected_licenses": [], "size_bytes": 67 }, { "path": "roles/copy-file/tasks/main.yml", "content": "---\n- name: copy file\...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 546, "all_permissive": false }
ansible_role
rupalisatote/ansible-akka
224fc45fa7191a556ef23007af44c898e5f761dc
0
roles/create-directory
7,654
[ "no_license" ]
[ { "path": "roles/create-directory/tasks/main.yml", "content": "---\n- name: create directory\n file:\n path: /usr/share/myapp\n state: directory\n owner: root\n group: root\n mode: '0755'\n\n# tasks file for create-directory\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 169, "all_permissive": false }
ansible_role
rupalisatote/ansible-akka
224fc45fa7191a556ef23007af44c898e5f761dc
0
roles/create-file
7,654
[ "no_license" ]
[ { "path": "roles/create-file/tasks/main.yml", "content": "---\n- name:\n file:\n path: /usr/share/myapp/foo.conf\n state: touch\n mode: u+rw,g-wx,o-rwx\n# tasks file for create-file\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 128 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 128, "all_permissive": false }
ansible_role
rupalisatote/ansible-akka
224fc45fa7191a556ef23007af44c898e5f761dc
0
web-deploy/roles/web-client
7,654
[ "no_license" ]
[ { "path": "web-deploy/roles/web-client/defaults/main.yml", "content": "---\n# defaults file for web-client", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "web-deploy/roles/web-client/handlers/main.yml", "content": "---\n- name: remove build and...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 783, "all_permissive": false }
ansible_role
copdips/ansible_training
af4b229c67ee01290912fc7dc55705158141479a
0
roles/base
7,654
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "- name: Add repository \n yum_repository: \n name: rpmfusion \n description: rpmfusion YUM repo \n baseurl: https://download1.rpmfusion.org/free/el/updates/7/x86_64\n- name: Install base packages\n yum: \n name: [ansible, python-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 750, "all_permissive": false }
ansible_role
copdips/ansible_training
af4b229c67ee01290912fc7dc55705158141479a
0
roles/galera_bootstrap
7,654
[ "no_license" ]
[ { "path": "roles/galera_bootstrap/handlers/main.yml", "content": "---\n# handlers file for roles/galera_bootstrap", "license_type": "no_license", "detected_licenses": [], "size_bytes": 46 }, { "path": "roles/galera_bootstrap/defaults/main.yml", "content": "---\n# defaults file for ro...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 705, "all_permissive": false }
ansible_role
copdips/ansible_training
af4b229c67ee01290912fc7dc55705158141479a
0
roles/galera_packages
7,654
[ "no_license" ]
[ { "path": "roles/galera_packages/defaults/main.yml", "content": "---\n# defaults file for roles/galera_packages", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 }, { "path": "roles/galera_packages/vars/main.yml", "content": "---\n# vars file for roles/galera_...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 927, "all_permissive": false }
ansible_role
SergSha/lab-07
c3e4540ddac42b2dc0cbd1002298d4495b527535
0
roles/backend-servers
7,654
[ "no_license" ]
[ { "path": "roles/backend-servers/tasks/pcs_setup.yml", "content": "---\n#- name: Set hostname\n# ansible.builtin.hostname:\n# name: \"{{ inventory_hostname }}.{{ domain }}\"\n\n#- name: Add my own IP address to /etc/hosts instead localhost\n# ansible.builtin.replace:\n# path: \"/etc/hosts\"\n# re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1402, "all_permissive": false }
ansible_role
SergSha/lab-07
c3e4540ddac42b2dc0cbd1002298d4495b527535
0
roles/filebeats
7,654
[ "no_license" ]
[ { "path": "roles/filebeats/templates/filebeat.yml.j2", "content": "filebeat.inputs:\n- type: filestream\n id: {{ inventory_hostname }}-logs\n enabled: true\n paths:\n{% if inventory_hostname in groups['nginx_servers'] %}\n - /var/log/nginx/*.log\n{% elif inventory_hostname in groups['backend_servers']...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1675, "all_permissive": false }
ansible_role
SergSha/lab-07
c3e4540ddac42b2dc0cbd1002298d4495b527535
0
roles/opensearch
7,654
[ "no_license" ]
[ { "path": "roles/opensearch/templates/logstash.conf.j2", "content": "input {\n beats {\n port => 5044\n }\n}\n\noutput {\n opensearch {\n hosts => [\n{%- for item in groups['os-cluster'] %}\n\"https://{{ hostvars[item].ansible_host }}:9200\"{% if not loop.last %},{% endif %}\n{%- endfor %}\n]\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3215, "all_permissive": false }