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
nagarajurahul/ansible-vm-automation
d34d50522f2085879b8b622ddbe6814959d1f781
0
roles/helm
7,691
[ "no_license" ]
[ { "path": "roles/helm/tasks/main.yml", "content": "---\n- name: Install prerequisites for Helm\n ansible.builtin.package:\n name:\n - ca-certificates\n - curl\n - gnupg\n state: present\n update_cache: yes\n\n# Specific to Ubuntu\n- name: Ensure /etc/apt/keyrings directory exists\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1058, "all_permissive": false }
ansible_role
nagarajurahul/ansible-vm-automation
d34d50522f2085879b8b622ddbe6814959d1f781
0
roles/k8s
7,691
[ "no_license" ]
[ { "path": "roles/k8s/tasks/main.yml", "content": "---\n- name: Install prerequisites for kubernetes\n ansible.builtin.package:\n name:\n - ca-certificates\n - curl\n - gnupg\n state: present\n update_cache: yes\n\n# Specific to Ubuntu\n- name: Ensure /etc/apt/keyrings directory exis...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 7725, "all_permissive": false }
ansible_role
nagarajurahul/ansible-vm-automation
d34d50522f2085879b8b622ddbe6814959d1f781
0
roles/k8s-aliases
7,691
[ "no_license" ]
[ { "path": "roles/k8s-aliases/files/k8s_aliases.sh", "content": "#!/bin/sh\n\n# General Aliases:\nalias k='kubectl'\nalias ks='kubectl -n kube-system'\nalias kdesc='kubectl describe'\nalias kn='kubectl -n'\n\n# Create Resources:\nalias kcf='kubectl create -f'\nalias kaf='kubectl apply -f'\nalias kdf='kubectl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1733, "all_permissive": false }
ansible_role
nagarajurahul/ansible-vm-automation
d34d50522f2085879b8b622ddbe6814959d1f781
0
roles/metallb
7,691
[ "no_license" ]
[ { "path": "roles/metallb/files/metallb-config.yaml", "content": "# metallb-config.yaml\napiVersion: metallb.io/v1beta1\nkind: IPAddressPool\nmetadata:\n name: default-pool\n namespace: metallb-system\nspec:\n addresses:\n - 192.168.0.140-192.168.0.150\n---\napiVersion: metallb.io/v1beta1\nkind: L2Advert...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2034, "all_permissive": false }
ansible_role
nagarajurahul/ansible-vm-automation
d34d50522f2085879b8b622ddbe6814959d1f781
0
roles/prechecks
7,691
[ "no_license" ]
[ { "path": "roles/prechecks/files/check_kernel_lts.sh", "content": "#!/bin/bash\n\n# Get current kernel version (major.minor only)\ncurrent_version=$(uname -r | cut -d'.' -f1,2)\necho \"Current kernel version: $current_version\"\n\n# Fetch LTS versions from kernel.org\nlts_versions=$(curl -s https://www.kern...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 5245, "all_permissive": false }
ansible_role
nagarajurahul/ansible-vm-automation
d34d50522f2085879b8b622ddbe6814959d1f781
0
roles/python-k8s-client
7,691
[ "no_license" ]
[ { "path": "roles/python-k8s-client/tasks/main.yml", "content": "---\n# Note: Error saying externally managed package\n# Belo commented lines dont work\n\n# - name: Install pip for Python 3\n# ansible.builtin.package:\n# name: python3-pip\n# state: present\n\n# - name: Install kubernetes python pac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 405, "all_permissive": false }
ansible_role
nagarajurahul/ansible-vm-automation
d34d50522f2085879b8b622ddbe6814959d1f781
0
roles/secrets
7,691
[ "no_license" ]
[ { "path": "roles/secrets/tasks/main.yml", "content": "---\n- name: Copy K8s secrets for GoFLights\n ansible.builtin.copy:\n src: /home/rahul/ansible-vm-automation/vars/k8s-goflights-secrets.yml\n dest: /tmp/k8s-goflights-secrets.yml\n owner: root\n group: root\n mode: '0600'\n\n- name: Apply...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 913, "all_permissive": false }
ansible_role
nagarajurahul/ansible-vm-automation
d34d50522f2085879b8b622ddbe6814959d1f781
0
roles/terraform_apply
7,691
[ "no_license" ]
[ { "path": "roles/terraform_apply/tasks/main.yml", "content": "- name: Create terraform.tfvars.json from template\n template:\n src: tfvars.json.j2\n dest: ../terraform-vmware-esxi-multiple-vm/terraform.tfvars.json\n\n- name: Run terraform init\n command: terraform init\n args:\n chdir: ../terraf...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 706, "all_permissive": false }
ansible_role
nagarajurahul/ansible-vm-automation
d34d50522f2085879b8b622ddbe6814959d1f781
0
roles/traefik
7,691
[ "no_license" ]
[ { "path": "roles/traefik/tasks/main.yml", "content": "---\n# https://docs.ansible.com/ansible/latest/collections/kubernetes/core/index.html\n\n# helm repo add traefik https://traefik.github.io/charts\n- name: Add Traefik Helm repository\n kubernetes.core.helm_repository:\n name: traefik\n repo_url: h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 783, "all_permissive": false }
ansible_role
opennetworkinglab/aether-oai
983e7062280cf621a2fc6a417bb2608fd10bd3b5
1
roles/docker
7,691
[ "no_license" ]
[ { "path": "roles/docker/tasks/uninstall.yml", "content": "---\n\n\n#### TODO: Uninstall Docker\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "roles/docker/tasks/main.yml", "content": "---\n\n- name: install oai/docker\n import_tasks: roles/...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3886, "all_permissive": false }
ansible_role
opennetworkinglab/aether-oai
983e7062280cf621a2fc6a417bb2608fd10bd3b5
1
roles/gNb
7,691
[ "no_license" ]
[ { "path": "roles/gNb/tasks/main.yml", "content": "---\n\n- name: start oai/gNb\n import_tasks: roles/gNb/tasks/start.yml\n tags: start\n\n- name: stop oai/gNb\n import_tasks: roles/gNb/tasks/stop.yml\n tags: stop\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 159 ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2449, "all_permissive": false }
ansible_role
opennetworkinglab/aether-oai
983e7062280cf621a2fc6a417bb2608fd10bd3b5
1
roles/router
7,691
[ "no_license" ]
[ { "path": "roles/router/tasks/main.yml", "content": "---\n\n- name: install oai/router\n import_tasks: roles/router/tasks/install.yml\n tags: install\n\n- name: uninstall oai/router\n import_tasks: roles/router/tasks/uninstall.yml\n tags: uninstall\n", "license_type": "no_license", "detected_lic...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 8383, "all_permissive": false }
ansible_role
opennetworkinglab/aether-oai
983e7062280cf621a2fc6a417bb2608fd10bd3b5
1
roles/uEsimulator
7,691
[ "no_license" ]
[ { "path": "roles/uEsimulator/tasks/start.yml", "content": "---\n\n- name: check if simluation is enabled else abort\n fail:\n msg: \"Simulation is not enabled\"\n when: oai.simulation == false\n\n- name: pull {{ oai.docker.container.ue_image }} image\n community.docker.docker_image:\n name: \"{{ oa...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2929, "all_permissive": false }
ansible_role
rhoboro/local.ansible.palybook
dedcbd357541962ed725c93f52fd273f9684f0f5
0
roles/common
7,691
[ "no_license" ]
[ { "path": "roles/common/files/vimrc", "content": "\"環境設定\n:set statusline=%F%m%r%h%w\\ [FORMAT=%{&ff}]\\ [TYPE=%Y]\\ [ASCII=\\%03.3b]\\ [HEX=\\%02.2B]\\ [POS=%04l,%04v][%p%%]\\ [LEN=%L]\n:set laststatus=2\n\"色の設定\n:set background=dark\n:syntax on\n\"syntax onはカラースキームを使うのに必要\n:colorscheme monokai\n\":colorsc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 4361, "all_permissive": false }
ansible_role
rhoboro/local.ansible.palybook
dedcbd357541962ed725c93f52fd273f9684f0f5
0
roles/homebrew
7,691
[ "no_license" ]
[ { "path": "roles/homebrew/vars/main.yml", "content": "homebrew_packages:\n - readline\n - openssl\n - { name: openssl, state: linked, install_options: force }\n - ansible\n - git\n - tig\n - bash_completion\n - vim\n - python\n - nkf\n - pyenv-virtualen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 904, "all_permissive": false }
ansible_role
rhoboro/local.ansible.palybook
dedcbd357541962ed725c93f52fd273f9684f0f5
0
roles/homebrew-cask
7,691
[ "no_license" ]
[ { "path": "roles/homebrew-cask/vars/main.yml", "content": "homebrew_cask_packages:\n - google-chrome\n - dropbox\n - virtualbox\n - vagrant\n - sublime-text\n - macports\n - eclipse-ide\n - android-studio\n - bettertouchtool\n - java\n - qlmarkdown\n - wireshark\n - dockertoolbox\n\n", "lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 599, "all_permissive": false }
ansible_role
hvad/ansible-prometheus
f45f08fbfbbec2bcf7919d4db1b2da7165d8ba93
0
roles/alertmanager
7,691
[ "no_license" ]
[ { "path": "roles/alertmanager/tasks/main.yml", "content": "---\n\n- name: Create alertmanager user.\n user:\n name: alertmanager\n shell: /bin/false \n comment: \"Alertmanager User\" \n createhome: no \n system: yes \n\n- name: Create alertmanager data directory.\n file:\n path: /var/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1651, "all_permissive": false }
ansible_role
hvad/ansible-prometheus
f45f08fbfbbec2bcf7919d4db1b2da7165d8ba93
0
roles/node_exporter
7,691
[ "no_license" ]
[ { "path": "roles/node_exporter/tasks/main.yml", "content": "---\n\n- name: Create node_expoter user.\n user:\n name: node_exporter\n shell: /bin/false \n comment: \"Node_exporter User\" \n createhome: no \n system: yes \n\n- name: Download node_exporter archive with checksum url (sha256)....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1289, "all_permissive": false }
ansible_role
hvad/ansible-prometheus
f45f08fbfbbec2bcf7919d4db1b2da7165d8ba93
0
roles/prometheus
7,691
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yml", "content": "---\n\n- name: Create prometheus user.\n user:\n name: prometheus\n shell: /bin/false \n comment: \"Prometheus User\" \n createhome: no \n system: yes \n\n- name: Create prometheus data directory.\n file:\n path: /var/lib/promet...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1595, "all_permissive": false }
ansible_role
ijavierdesouza/estudios
99e842398230d158b68d8030c289843c985d4033
0
provisioner/roles/community_grid
7,691
[ "no_license" ]
[ { "path": "provisioner/roles/community_grid/tasks/main.yml", "content": "---\n- name: Install EPEL\n dnf:\n name: \"https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm\"\n state: present\n\n- package:\n name:\n - boinc-client\n state: present\n\n- name: enable and start ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 602, "all_permissive": false }
ansible_role
EnzoWintz/Projets
42f702c611c3f5ba08610aa22d0d72aaca77ac48
2
Ansible/roles/Apache
7,691
[ "no_license" ]
[ { "path": "Ansible/roles/Apache/tasks/apache.yml", "content": "- name: Installation apache \n # become_user: apache\n become_user: apache\n apt:\n name: apache2\n package: 2.4.29\n state: present\n register: res_apache\n when: ansible_distribution_version == \"18.04\"\n- deb...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 691, "all_permissive": false }
ansible_role
EnzoWintz/Projets
42f702c611c3f5ba08610aa22d0d72aaca77ac48
2
Ansible/roles/Php
7,691
[ "no_license" ]
[ { "path": "Ansible/roles/Php/templates/index.php.j2", "content": "<? phpinfo\n>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 13 }, { "path": "Ansible/roles/Php/tasks/main.yml", "content": "- name: Installation de Php sur host_web\n import_tasks: php.yml\n...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 430, "all_permissive": false }
ansible_role
EnzoWintz/Projets
42f702c611c3f5ba08610aa22d0d72aaca77ac48
2
Ansible/roles/comptes_service
7,691
[ "no_license" ]
[ { "path": "Ansible/roles/comptes_service/tasks/main.yml", "content": "- name: Creation de user apache et mysql\n user:\n name: \"{{item.name}}\"\n password: \"{{ <PASSWORD> }}\"\n system: yes\n groups: sudo\n append: no\n create_home: no\n loop:\n - name: \"{{user}}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 394, "all_permissive": false }
ansible_role
BriceMichalski/mbcaas
c15fabfd9c5b2a62b6d63059bd211e56f9790297
8
infrastructure/bare-metal/roles/hardening
7,691
[ "no_license" ]
[ { "path": "infrastructure/bare-metal/roles/hardening/templates/sudoer_user.j2", "content": "# ANSIBLE MANAGED FILE\n{{ user.key }} ALL=(ALL) NOPASSWD: ALL\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 62 }, { "path": "infrastructure/bare-metal/roles/hardening/t...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 5561, "all_permissive": false }
ansible_role
Santo33310/Mspr-IAC
a6d5b234396ecd6f5c70810611fd76351e5e00c4
0
ansible/roles/k3s_master
7,691
[ "no_license" ]
[ { "path": "ansible/roles/k3s_master/defaults/main.yml", "content": "---\nk3s_master_ip: \"192.168.1.100\"\nk3s_extra_server_args: \"--disable traefik\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 77 }, { "path": "ansible/roles/k3s_master/tasks/main.yml", "c...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1659, "all_permissive": false }
ansible_role
Santo33310/Mspr-IAC
a6d5b234396ecd6f5c70810611fd76351e5e00c4
0
ansible/roles/k3s_worker
7,691
[ "no_license" ]
[ { "path": "ansible/roles/k3s_worker/tasks/main.yml", "content": "---\n- name: Install required packages\n apt:\n name: \"{{ system_packages }}\"\n state: present\n update_cache: true\n\n- name: Disable swap\n command: swapoff -a\n changed_when: false\n\n- name: Remove swap from fstab\n replace:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2216, "all_permissive": false }
ansible_role
Santo33310/Mspr-IAC
a6d5b234396ecd6f5c70810611fd76351e5e00c4
0
ansible/roles/k8s_addons
7,691
[ "no_license" ]
[ { "path": "ansible/roles/k8s_addons/tasks/main.yml", "content": "---\n- name: Ensure .kube directory exists for ubuntu\n file:\n path: /home/ubuntu/.kube\n state: directory\n owner: ubuntu\n group: ubuntu\n mode: '0700'\n\n- name: Copy k3s kubeconfig to /home/ubuntu/.kube/config\n copy :\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4272, "all_permissive": false }
ansible_role
Santo33310/Mspr-IAC
a6d5b234396ecd6f5c70810611fd76351e5e00c4
0
ansible/roles/nfs_server
7,691
[ "no_license" ]
[ { "path": "ansible/roles/nfs_server/defaults/main.yml", "content": "---\n# Chemin du répertoire d'export NFS\nnfs_export_dir: /srv/nfs\n\n# Réseau autorisé pour NFS\nnfs_allowed_network: 192.168.1.0/24 ", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 }, { "path...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1136, "all_permissive": false }
ansible_role
bhuancaAGETIC/cephadm-ansible
3999a571667da22c99743eadff8f85c141e2357e
0
roles/ceph
7,691
[ "no_license" ]
[ { "path": "roles/ceph/tasks/main.yml", "content": "---\n- name: Descargar cephadm\n shell: \"curl --silent --remote-name --location {{ cephadm_download_url }}\"\n\n- name: Hacer cephadm ejecutable\n shell: \"chmod +x cephadm\"\n\n- name: Añadir repositorio\n shell: \"./cephadm add-repo --release {{ ceph_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 332, "all_permissive": false }
ansible_role
bhuancaAGETIC/cephadm-ansible
3999a571667da22c99743eadff8f85c141e2357e
0
roles/chrony
7,691
[ "no_license" ]
[ { "path": "roles/chrony/templates/chrony.conf.j2", "content": "pool 192.168.24.50 iburst\nallow 192.168.24.0/26\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 48 }, { "path": "roles/chrony/tasks/main.yml", "content": "---\n- name: Install chrony\n apt:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 588, "all_permissive": false }
ansible_role
bhuancaAGETIC/cephadm-ansible
3999a571667da22c99743eadff8f85c141e2357e
0
roles/docker
7,691
[ "no_license" ]
[ { "path": "roles/docker/templates/docker.list.j2", "content": "# Managed by Ansible\ndeb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] {{ docker_repo_url }} $(lsb_release -cs) stable\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 143 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1186, "all_permissive": false }
ansible_role
smpavlenko/notejam-aws-infrastructure
9cf793a1ab16300ea88ad9d72c53822e60688f64
0
additional/ami/packer/ansible/roles/bootstrap
7,691
[ "no_license" ]
[ { "path": "additional/ami/packer/ansible/roles/bootstrap/tasks/main.yaml", "content": "- name: Install applications\n apt: name={{item}} state=latest update_cache=yes force=yes\n with_items:\n - python-pip\n\n- name: Install cfn bootstrap\n pip:\n name: https://s3.amazonaws.com/cloudformation-examp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 249, "all_permissive": false }
ansible_role
smpavlenko/notejam-aws-infrastructure
9cf793a1ab16300ea88ad9d72c53822e60688f64
0
additional/ami/packer/ansible/roles/notejam
7,691
[ "no_license" ]
[ { "path": "additional/ami/packer/ansible/roles/notejam/tasks/main.yaml", "content": "- name: Install Notejam\n become: yes\n apt: name={{item}} state=latest update_cache=yes force=yes\n with_items:\n - python-pip\n\n- name: Download Notejam\n git:\n repo: https://github.com/komarserjio/notejam\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 522, "all_permissive": false }
ansible_role
xgarcias/daemontools-dyndns
9d055795985e2ed5e278d5d58dfbbbc48d5724db
0
roles/inadyn
7,691
[ "no_license" ]
[ { "path": "roles/inadyn/templates/svscan_script.j2", "content": "#!/bin/sh\n\nexec 2>&1\nexec setuidgid nobody /usr/local/bin/inadyn --input_file ./inadyn.conf\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 }, { "path": "roles/inadyn/tasks/packages.yml", ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 1248, "all_permissive": false }
ansible_role
kirikova-k/Inception_of_things
dc139ce15839f81ce7c2f5f9a8a1a28bb4f1db89
1
bonus/scripts/ansible/roles/docker-install
7,691
[ "no_license" ]
[ { "path": "bonus/scripts/ansible/roles/docker-install/tasks/main.yaml", "content": "- hosts: all\n become: true\n\n tasks:\n - name: Ensure repository key is installed\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n - name: Ensure docker registr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 747, "all_permissive": false }
ansible_role
kirikova-k/Inception_of_things
dc139ce15839f81ce7c2f5f9a8a1a28bb4f1db89
1
p3/scripts/ansible/roles/docker-install
7,691
[ "no_license" ]
[ { "path": "p3/scripts/ansible/roles/docker-install/tasks/main.yaml", "content": "- name: Add Docker GPG apt Key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n become: true\n\n- name: Add Docker Repository\n apt_repository:\n repo: deb https://download.docker.co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 578, "all_permissive": false }
ansible_role
kirikova-k/Inception_of_things
dc139ce15839f81ce7c2f5f9a8a1a28bb4f1db89
1
p3/scripts/ansible/roles/k3d-config
7,691
[ "no_license" ]
[ { "path": "p3/scripts/ansible/roles/k3d-config/tasks/main.yaml", "content": "---\n- name: Create k3d cluster\n shell: k3d cluster create cluster --k3s-arg \"--disable=traefik@server:0\" -p \"80:80@loadbalancer\" -p \"443:443@loadbalancer\"", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 419, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
projeto/roles/dotcms
7,686
[ "no_license" ]
[ { "path": "projeto/roles/dotcms/defaults/main.yaml", "content": "---\ndotcms_path: /opt/dotcms\ndotcms_user: dotcms\ndotcms_group: dotcms\ndotcms_db_name: dotcms\ndotcms_db_user: dotcmsuser\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 120 }, { "path": "projeto...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 8979, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
projeto/roles/haproxy
7,686
[ "no_license" ]
[ { "path": "projeto/roles/haproxy/templates/haproxy.base.cfg", "content": "global\n log /dev/log local0\n log /dev/log local1 notice\n chroot /var/lib/haproxy\n stats socket /run/haproxy/admin.sock mode 660 level admin\n stats timeout 30s\n user haproxy\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4240, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
projeto/roles/java
7,686
[ "no_license" ]
[ { "path": "projeto/roles/java/tasks/main.yaml", "content": "---\n- name: install jre\n package: name=openjdk-8-jre state=installed\n\n- name: configure java home\n template:\n src: java.sh\n dest: /etc/profile.d/java.sh\n owner: root\n group: root\n mode: 0644\n", "license_type": "no_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 208, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
projeto/roles/nfs
7,686
[ "no_license" ]
[ { "path": "projeto/roles/nfs/defaults/main.yaml", "content": "---\nnfs_packages:\n - nfs-kernel-server\n - nfs-common\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 55 }, { "path": "projeto/roles/nfs/tasks/main.yaml", "content": "---\n- name: install\n pa...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 267, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
projeto/roles/pip
7,686
[ "no_license" ]
[ { "path": "projeto/roles/pip/tasks/main.yaml", "content": "---\n- name: install pip\n package: name=python-pip state=installed\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 67 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 67, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
projeto/roles/postgresql
7,686
[ "no_license" ]
[ { "path": "projeto/roles/postgresql/defaults/main.yaml", "content": "---\npostgresql_version: 9.5\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "projeto/roles/postgresql/tasks/main.yaml", "content": "---\n- name: install\n package: name={{ ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1207, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
projeto/roles/volume
7,686
[ "no_license" ]
[ { "path": "projeto/roles/volume/tasks/main.yaml", "content": "---\n- name: check volume_path\n stat:\n path: \"{{ volume_path }}\"\n register: vp\n- debug: msg=\"{{ vp }}\"\n\n- name: partition\n parted:\n device: \"{{ volume_path }}\"\n number: 1\n state: present\n when: vp.stat.isblk is de...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 815, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
projeto/waypoints/section-5/conditional-tasks/roles/java
7,686
[ "no_license" ]
[ { "path": "projeto/waypoints/section-5/conditional-tasks/roles/java/tasks/main.yaml", "content": "---\n- name: install jre (Debian)\n package: name=openjdk-8-jre state=installed\n when: ansible_os_family == 'Debian'\n\n- name: install jre (RHEL)\n package: name=java-1.8.0-openjdk state=installed\n when:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 234, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
projeto/waypoints/section-5/template-with-dict/roles/tools
7,686
[ "no_license" ]
[ { "path": "projeto/waypoints/section-5/template-with-dict/roles/tools/templates/profile.sh", "content": "#!/bin/sh\nexport {{ item.value.envar }}={{ item.value.dir }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 61 }, { "path": "projeto/waypoints/section-5/tem...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 249, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
projeto/waypoints/section-8/vagrant/roles/java
7,686
[ "no_license" ]
[ { "path": "projeto/waypoints/section-8/vagrant/roles/java/defaults/main.yaml", "content": "---\njava_package: openjdk-8-jre\njava_home: /usr/lib/jvm/java-8-openjdk-amd64/jre\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 }, { "path": "projeto/waypoints/sectio...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 294, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
win/roles/Linux
7,686
[ "no_license" ]
[ { "path": "win/roles/Linux/defaults/main.yml", "content": "---\n# defaults file for Linux", "license_type": "no_license", "detected_licenses": [], "size_bytes": 29 }, { "path": "win/roles/Linux/handlers/main.yml", "content": "---\n# handlers file for Linux", "license_type": "no_l...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1641, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
win/roles/common
7,686
[ "no_license" ]
[ { "path": "win/roles/common/tasks/main.yml", "content": "---\n- name: Install the Visual C thingy\n win_package:\n path: http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe\n product_id: '{CF2BEA3C-26EA-32F8-AA9B-331F7E34BA97}'\n arguments: /ins...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2297, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
win/roles/k8_master
7,686
[ "no_license" ]
[ { "path": "win/roles/k8_master/tasks/main.yml", "content": "---\n# tasks file for k8s-master\n\n- name: \"Changing driver in docker\"\n copy:\n content: |\n {\n \"exec-opts\": [\"native.cgroupdriver=systemd\"]\n }\n dest: /etc/docker/daemon.json\n register: x\n\n-...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1673, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
win/roles/k8_master_node
7,686
[ "no_license" ]
[ { "path": "win/roles/k8_master_node/tasks/main.yml", "content": "---\n# tasks file for k8s-slave\n\n- name: \"Installing docker\"\n package:\n name: docker\n state: present\n\n- name: \"Starting docker services\"\n service:\n name: docker\n state: started\n enabled: yes\n\n- name: \"Configu...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 932, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
win/roles/k8s_node
7,686
[ "no_license" ]
[ { "path": "win/roles/k8s_node/tasks/main.yml", "content": "---\n# tasks for k8\n- name: \"Changing driver in docker\"\n copy:\n content: |\n {\n \"exec-opts\": [\"native.cgroupdriver=systemd\"]\n }\n dest: /etc/docker/daemon.json\n register: z\n\n- name: \"Restart...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 803, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
win/roles/openshift
7,686
[ "no_license" ]
[ { "path": "win/roles/openshift/tasks/main.yml", "content": "---\n# tasks file for common_setup\n- name: Remove docker if installed from CentOS repo\n yum:\n name:\n - docker\n - docker-client\n - docker-client-latest\n - docker-common\n - docker-latest\n - docker-latest-log...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 10271, "all_permissive": false }
ansible_role
Josemyr1993/Ansible
de7869223da750c947c3368e308b19a5f98ac6b3
1
win/roles/zabbix_cliente
7,686
[ "no_license" ]
[ { "path": "win/roles/zabbix_cliente/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - zabbix_cliente", "license_type": "no_license", "detected_licenses": [], "size_bytes": 72 }, { "path": "win/roles/zabbix_cliente/vars/main.yml", "content": "-...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 756, "all_permissive": false }
ansible_role
madiedinro/drminer-playbook
c5f42f546e3999987f994640340dfb490e1592f3
0
roles/drminer-base
7,686
[ "no_license" ]
[ { "path": "roles/drminer-base/tasks/main.yml", "content": "---\n- shell: apt-get clean\n become: yes\n tags: ['requirements']\n\n- shell: apt-get update\n become: yes\n tags: ['requirements']\n\n- name: Dependencies\n apt: name={{ item }} state=present\n with_items:\n - python-dev\n - git\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1379, "all_permissive": false }
ansible_role
madiedinro/drminer-playbook
c5f42f546e3999987f994640340dfb490e1592f3
0
roles/drminer-docker
7,686
[ "no_license" ]
[ { "path": "roles/drminer-docker/tasks/main.yml", "content": "---\n- name: Adding Docker key\n command: apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys <KEY>\n become: yes\n\n- name: Adding Docker repo\n command: apt-add-repository 'deb https://apt.dockerproject.org/repo ubuntu-xe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 907, "all_permissive": false }
ansible_role
madiedinro/drminer-playbook
c5f42f546e3999987f994640340dfb490e1592f3
0
roles/drminer-services
7,686
[ "no_license" ]
[ { "path": "roles/drminer-services/tasks/main.yml", "content": "---\n- name: Cloning Dockerfile repo\n git:\n repo: https://github.com/madiedinro/drminer-docker.git\n dest: ./drminer-docker\n tags:\n - xmrig\n\n- name: Building XMRig image\n docker_image:\n path: ./drminer-docker\n name: dr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 622, "all_permissive": false }
ansible_role
tpaulus/ansible
cd4f4e2b0cc0d962641c913cc8e33356558fd091
0
provision/roles/cadvisor
7,686
[ "no_license" ]
[ { "path": "provision/roles/cadvisor/vars/main.yml", "content": "cadvisor_bin_path: \"/usr/local/bin/cadvisor\"\ncadvisor_service_name: \"cadvisor\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 }, { "path": "provision/roles/cadvisor/tasks/main.yml", "con...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1594, "all_permissive": false }
ansible_role
tpaulus/ansible
cd4f4e2b0cc0d962641c913cc8e33356558fd091
0
provision/roles/docker
7,686
[ "no_license" ]
[ { "path": "provision/roles/docker/tasks/main.yml", "content": "- name: Install dependencies\n become: true\n ansible.builtin.apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg-agent\n - software-properties-common\n - lsb-release\n state: present...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2314, "all_permissive": false }
ansible_role
ffxxe/slave-ansible
cb0c417eacf49acc7683fde6a544a8ff0def0c37
0
roles/install_docker
7,686
[ "no_license" ]
[ { "path": "roles/install_docker/handlers/main.yml", "content": "- name: Up Docker\r\n service:\r\n name: docker\r\n state: started\r\n enabled: yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 }, { "path": "roles/install_docker/defaults/main.yml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1079, "all_permissive": false }
ansible_role
ffxxe/slave-ansible
cb0c417eacf49acc7683fde6a544a8ff0def0c37
0
roles/install_flask
7,686
[ "no_license" ]
[ { "path": "roles/install_flask/defaults/main.yml", "content": "---\r\ncontainer: \r\n - 'nginx'\r\n - 'flask1'\r\n - 'flask2'\r\n - 'flask3'", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "roles/install_flask/tasks/main.yml", "content": "- ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 695, "all_permissive": false }
ansible_role
TempestSource/ansible_scripts
dd53cba6b2f88a48bcb2cb7d23f5fc3ac5822db9
0
linux/playbooks/roles/debserver
7,686
[ "no_license" ]
[ { "path": "linux/playbooks/roles/debserver/tasks/main.yaml", "content": "- name: Install base programs for debian servers\n apt:\n name:\n - vim\n - tree\n - ufw\n state: present\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
TempestSource/ansible_scripts
dd53cba6b2f88a48bcb2cb7d23f5fc3ac5822db9
0
linux/playbooks/roles/mint
7,686
[ "no_license" ]
[ { "path": "linux/playbooks/roles/mint/tasks/main.yaml", "content": "- name: Install base programs for Linux Mint systems\n apt:\n name:\n - neovim\n - tree\n - ranger\n state: present\n- name: Uninstall nano\n apt:\n name:\n - nano\n state: absent\n", "license_type": "n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 203, "all_permissive": false }
ansible_role
TempestSource/ansible_scripts
dd53cba6b2f88a48bcb2cb7d23f5fc3ac5822db9
0
windows/playbooks/roles/windesk_base
7,686
[ "no_license" ]
[ { "path": "windows/playbooks/roles/windesk_base/tasks/main.yaml", "content": "- name: Install Default Software\n win_chocolatey:\n name:\n - firefox\n - notepadplusplus\n - powertoys\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 1...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 138, "all_permissive": false }
ansible_role
TempestSource/ansible_scripts
dd53cba6b2f88a48bcb2cb7d23f5fc3ac5822db9
0
windows/playbooks/roles/windesk_create
7,686
[ "no_license" ]
[ { "path": "windows/playbooks/roles/windesk_create/tasks/main.yaml", "content": "- name: Install Creative Software\n win_chocolatey:\n name:\n - firealpaca\n - reaper\n - audacity\n - obs-studio\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": 151, "all_permissive": false }
ansible_role
TempestSource/ansible_scripts
dd53cba6b2f88a48bcb2cb7d23f5fc3ac5822db9
0
windows/playbooks/roles/windesk_dev
7,686
[ "no_license" ]
[ { "path": "windows/playbooks/roles/windesk_dev/tasks/main.yaml", "content": "- name: Install Development Software\n win_chocolatey:\n name:\n - vscode\n - putty\n - winscp\n - virtualbox\n - git\n - vnc-viewer\n state: present\n", "license_type": "no_license", "d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 178, "all_permissive": false }
ansible_role
TempestSource/ansible_scripts
dd53cba6b2f88a48bcb2cb7d23f5fc3ac5822db9
0
windows/playbooks/roles/windesk_game
7,686
[ "no_license" ]
[ { "path": "windows/playbooks/roles/windesk_game/tasks/main.yaml", "content": "- name: Install Gaming Software\n win_chocolatey:\n name:\n - steam\n - discord\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 109 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 109, "all_permissive": false }
ansible_role
TempestSource/ansible_scripts
dd53cba6b2f88a48bcb2cb7d23f5fc3ac5822db9
0
windows/playbooks/roles/windesk_media
7,686
[ "no_license" ]
[ { "path": "windows/playbooks/roles/windesk_media/tasks/main.yaml", "content": "- name: Install Media Software\n win_chocolatey:\n name:\n - vlc\n - plex\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 103 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 103, "all_permissive": false }
ansible_role
PedroAndrade89/infra-devops
49fc3e9f8c4e9b73b1ef3a009ba5f590a086e9c6
0
ansible/roles/example_role1
7,686
[ "no_license" ]
[ { "path": "ansible/roles/example_role1/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/example_role1\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "ansible/roles/example_role1/vars/main.yml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 632, "all_permissive": false }
ansible_role
lukyhenry/hashmicro-test
859be7fcc0289a4969164df08d2da3cda7136380
0
roles/haproxy
7,686
[ "no_license" ]
[ { "path": "roles/haproxy/tasks/main.yml", "content": "---\n\n# This should possibly be a module that just check whether python 2.7 is there before doing anything\n\n- name : install build-essential\n apt:\n name: build-essential\n\n- name: Download Python27 source\n get_url: url=http://python.org/ftp/p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1395, "all_permissive": false }
ansible_role
lukyhenry/hashmicro-test
859be7fcc0289a4969164df08d2da3cda7136380
0
roles/hashmicro-sys
7,686
[ "no_license" ]
[ { "path": "roles/hashmicro-sys/tasks/main.yml", "content": "---\n\n# This should possibly be a module that just check whether python 2.7 is there before doing anything\n\n- name : install build-essential\n apt:\n name: build-essential\n\n- name: Download Python27 source\n get_url: url=http://python.org...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2295, "all_permissive": false }
ansible_role
lukyhenry/hashmicro-test
859be7fcc0289a4969164df08d2da3cda7136380
0
roles/postgresql
7,686
[ "no_license" ]
[ { "path": "roles/postgresql/tasks/main.yml", "content": "---\n\n# This should possibly be a module that just check whether python 2.7 is there before doing anything\n\n- name : install build-essential\n apt:\n name: build-essential\n\n- name: Download Python27 source\n get_url: url=http://python.org/ft...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2455, "all_permissive": false }
ansible_role
Jackvillian/devops-test-task
3263a0bed4d8e836055ba5b7d6736044cf17aa70
0
roles/django
7,686
[ "no_license" ]
[ { "path": "roles/django/tasks/main.yml", "content": "---\n - include_vars: ../../../example_app_vault.yml\n - name: pull base image ubuntu\n docker_image: name=ubuntu state=present tag=16.04\n - name: create work dir\n action: file path=/var/repos/ state=directory mode=0770\n - name: download app\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3223, "all_permissive": false }
ansible_role
Jackvillian/devops-test-task
3263a0bed4d8e836055ba5b7d6736044cf17aa70
0
roles/docker
7,686
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n - name: apt_get update\n apt: update_cache=yes\n - name: install dependecy\n apt: name={{item}} state=present\n with_items:\n - apt-transport-https\n - ca-certificates\n - curl\n - software-properties-common\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 762, "all_permissive": false }
ansible_role
Jackvillian/devops-test-task
3263a0bed4d8e836055ba5b7d6736044cf17aa70
0
roles/postgres
7,686
[ "no_license" ]
[ { "path": "roles/postgres/tasks/main.yml", "content": "---\n - include_vars: ../../../example_app_vault.yml\n - name: pull postgres image\n docker_image: name=postgres state=present tag=latest\n\n\n - name: Create a volume\n action: shell docker volume create pgdata\n\n\n - name: create docker sec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1166, "all_permissive": false }
ansible_role
bridgecrew-perf4/Windows-deploy-terraform-gitlab
888c403ea67f98abbc5fb97596938b2dc8a2a13f
0
roles/LGPO
7,686
[ "no_license" ]
[ { "path": "roles/LGPO/vars/main.yml", "content": "---\n# vars file for LGPO", "license_type": "no_license", "detected_licenses": [], "size_bytes": 24 }, { "path": "roles/LGPO/handlers/main.yml", "content": "---\n# handlers file for LGPO", "license_type": "no_license", "detect...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 237, "all_permissive": false }
ansible_role
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/apache-config
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/apache-config/tasks/main.yml", "content": "---\n- include: apache-security.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "doppler-image-factory/ansible/roles/apache-config/tasks/apache-security....
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 444, "all_permissive": false }
ansible_role
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/awscli
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/awscli/tasks/main.yml", "content": "---\n- name: Aseguramos que python esta isntalado\n apt: name=python3-pip state=present update_cache=yes\n tags:\n - awscli\n\n- name: Instalamos awscli\n shell: pip install -U awscli\n tags:\n - awscli\n", "lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 204, "all_permissive": false }
ansible_role
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/boto
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/boto/tasks/main.yml", "content": "---\n- name: Aseguramos que python esta isntalado\n apt: name=python3-pip state=present update_cache=yes\n tags:\n - boto\n\n- name: Instalamos boyo\n shell: pip install -U boto3\n tags:\n - boto\n", "license_type...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 197, "all_permissive": false }
ansible_role
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/cleanup
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/cleanup/tasks/main.yml", "content": "---\n- name: Removemos cloud-init logs\n file:\n state: absent\n path: \"/var/log/cloud-init.log\"\n ignore_errors: true\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
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/common
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/common/defaults/main.yml", "content": "---\n# Packages to install\n\nbasic_packages:\n - zip\n - unzip\n - links\n - htop\n - python3-urllib3\n - python3-mysqldb\n - s3cmd\n - python3-boto\n - mailutils\n - python3-magic\n - sysstat\n - mc\n - subv...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 2382, "all_permissive": false }
ansible_role
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/deployer
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/deployer/files/80-ansiblecfg-deployer.j2", "content": "# deployer user is default user to deploy apps\n# It needs passwordless sudo functionality.\ndeployer ALL=(ALL) NOPASSWD:ALL", "license_type": "no_license", "detected_licenses": [], "size_bytes"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2054, "all_permissive": false }
ansible_role
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/logrotate
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/logrotate/tasks/main.yml", "content": "---\n- name: Asegurar que el directorio logrotate.d exista\n file:\n path: /etc/logrotate.d\n state: directory\n owner: root\n group: root\n mode: '0755'\n become: yes\n\n- name: Crear el archivo de config...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 994, "all_permissive": false }
ansible_role
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/php-config
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/php-config/tasks/main.yml", "content": "---\n- include: php-config.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "doppler-image-factory/ansible/roles/php-config/tasks/php-config.yml", "conte...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 301, "all_permissive": false }
ansible_role
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/redis
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/redis/tasks/main.yml", "content": "---\n- name: Aseguramos que Redis está instalado\n apt: name=redis-server state=present update_cache=yes\n tags:\n - redis\n\n- name: Instalamos Redis Server\n shell: apt-get install redis-server\n tags:\n - redis\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 362, "all_permissive": false }
ansible_role
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/supervisor
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/supervisor/tasks/main.yml", "content": "---\n- name: Install Supervisor\n apt:\n name: supervisor\n state: present\n become: yes\n tags:\n - supervisor\n\n- name: Copy Supervisor configuration file\n copy:\n src: files/laravel-worker.conf\n d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 296, "all_permissive": false }
ansible_role
FromDoppler/doppler-shopify-devops
6486bc306fc89e2635e0ea837a7c6d5274aa2b23
0
doppler-image-factory/ansible/roles/swapfile
7,686
[ "no_license" ]
[ { "path": "doppler-image-factory/ansible/roles/swapfile/tasks/main.yml", "content": "---\n- name: Create swap file\n shell: |\n fallocate -l 2G /swapfile\n chmod 600 /swapfile\n mkswap /swapfile\n swapon /swapfile\n\n- name: Add swap file to fstab\n shell: |\n cp /etc/fstab /etc/fstab.bak\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 270, "all_permissive": false }
ansible_role
SWMando/DevOpsBeginner
6359d6f9456656c138d461f0cc387513e5abc5e9
0
somesite/roles/init
7,686
[ "no_license" ]
[ { "path": "somesite/roles/init/tasks/main.yaml", "content": "- name: Updating repo\n apt:\n cache_valid_time: 86400\n \n- name: Create directory for the script\n file:\n path: /opt/stats\n state: directory\n\n- name: Copy server-stats script\n copy:\n src: server-stats.sh\n dest: /opt/s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 893, "all_permissive": false }
ansible_role
rakeshtraining/ansible-practice
c94fe331a7e5b63e0042ffe6447a429a66020888
0
roles/lb
7,686
[ "no_license" ]
[ { "path": "roles/lb/tasks/main.yml", "content": "---\n- name: install haproxy and socat\n apt: pkg={{ item }} state=latest\n with_items:\n - haproxy\n - socat\n\n- name: enable haproxy\n lineinfile: dest=/etc/default/haproxy regexp=\"^ENABLED\" line=\"ENABLED=1\"\n notify: restart haproxy \n\n", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 236, "all_permissive": false }
ansible_role
ekoi/b2share-dtap
ea0083dc3dbe7d35169e9dee536dd78f919a450b
0
provisioning/roles/add-archive-module
7,686
[ "no_license" ]
[ { "path": "provisioning/roles/add-archive-module/tasks/main.yml", "content": "# add archive module tasks.\n#\n---\n- set_fact:\n archiving_module_dir: $HOME/b2share/b2share/modules/apiarchive\n\n- name: Create archiving api dir\n become_user: vagrant\n file:\n path: \"{{ archiving_module_dir }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 10464, "all_permissive": false }
ansible_role
ekoi/b2share-dtap
ea0083dc3dbe7d35169e9dee536dd78f919a450b
0
provisioning/roles/add-archiving
7,686
[ "no_license" ]
[ { "path": "provisioning/roles/add-archiving/tasks/main.yml", "content": "# add archiving tasks.\n#\n---\n\n- name: Copy 'archive.jsx' for archiving purposes\n become_user: vagrant\n copy:\n src: archive.jsx\n dest: $HOME/b2share/webui/src/components\n\n- name: Copy 'record.jsx' for archiving purpose...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 23339, "all_permissive": false }
ansible_role
ekoi/b2share-dtap
ea0083dc3dbe7d35169e9dee536dd78f919a450b
0
provisioning/roles/b2share-setup
7,686
[ "no_license" ]
[ { "path": "provisioning/roles/b2share-setup/tasks/main.yml", "content": "# installation tasks.\n#\n---\n- set_fact:\n install_dir: \"/home/vagrant/Devel\"\n\n- name: Create install dir\n file:\n path: \"{{ install_dir }}\"\n state: directory\n mode: 0755\n\n- name: Create syslink python3.5 to p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 9632, "all_permissive": false }
ansible_role
ekoi/b2share-dtap
ea0083dc3dbe7d35169e9dee536dd78f919a450b
0
provisioning/roles/create-dans-community
7,686
[ "no_license" ]
[ { "path": "provisioning/roles/create-dans-community/tasks/main.yml", "content": "# installation tasks.\n#\n---\n\n- name: Copy dans logo file\n become_user: vagrant\n copy:\n src: dans-logo.png\n dest: $HOME/b2share/webui/app/img/communities\n\n- name: Create DANS Community\n become_user: vagrant\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1155, "all_permissive": false }
ansible_role
ekoi/b2share-dtap
ea0083dc3dbe7d35169e9dee536dd78f919a450b
0
provisioning/roles/requirements
7,686
[ "no_license" ]
[ { "path": "provisioning/roles/requirements/tasks/main.yml", "content": "# installation tasks.\n#\n---\n- name: EPEL repository\n yum: name=epel-release state=latest\n\n- name: Add docker yum repository\n command: yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 962, "all_permissive": false }
ansible_role
openshift-labs/terminals-apb
f8e0b9198cfdf1224ec414e1c430a8a362f1ef93
0
roles/common-definitions
7,686
[ "no_license" ]
[ { "path": "roles/common-definitions/defaults/main.yml", "content": "---\nmaster_url: \"kubernetes.default\"\n#namespace: ocp-workshop\n#create_projects: true", "license_type": "no_license", "detected_licenses": [], "size_bytes": 84 }, { "path": "roles/common-definitions/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1062, "all_permissive": false }
ansible_role
openshift-labs/terminals-apb
f8e0b9198cfdf1224ec414e1c430a8a362f1ef93
0
roles/provision-terminals-apb
7,686
[ "no_license" ]
[ { "path": "roles/provision-terminals-apb/defaults/main.yml", "content": "---\nterminal_image: \"quay.io/osevg/terminal-workspace:1.1.2\"\njupyterhub_image: \"quay.io/osevg/terminal-jupyterhub:1.1.2\"\ninfrasvcs_adm_user: opentlc-mgr", "license_type": "no_license", "detected_licenses": [], "size_...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1706, "all_permissive": false }
ansible_role
saiakhil46/ansible_repo
aa8f3d486a045a2ce16963c593e13ba1bbd95fca
0
roles/web_servers
7,686
[ "no_license" ]
[ { "path": "roles/web_servers/handlers/main.yml", "content": "- name: restart_apache\n tags: centos,apache,httpd\n service: \n name: \"{{ apache_service }}\"\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 }, { "path": "roles/web_ser...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 860, "all_permissive": false }
ansible_role
seyowo/ansible_123
c9c863176848559cf50000902a9ed85783fce580
0
roles/base
7,698
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "- name: add ssh key for simone\n authorized_key:\n user: simone\n key: \"<KEY>\"\n\n- name: generate_sshd_config file from template\n tags: ssh\n template:\n src: \"{{ ssh_template_file }}\"\n dest: /etc/ssh/sshd_config\n owner: root\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 292, "all_permissive": false }
ansible_role
naresh-nk/ansible-wp
02c4ea070cd394816ae2d6faba4b682111a2b179
0
roles/aws
7,698
[ "no_license" ]
[ { "path": "roles/aws/tasks/main.yml", "content": " - name: Provisioning EC2 instances\n ec2:\n region: us-east-1 \n key_name: demowebservers\n instance_type: t2.micro\n image: ami-467ca739\n wait: yes\n group: webservers\n count: 1\n vpc_subnet_id: subnet-8fa56cd2...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 724, "all_permissive": false }
ansible_role
naresh-nk/ansible-wp
02c4ea070cd394816ae2d6faba4b682111a2b179
0
roles/server
7,698
[ "no_license" ]
[ { "path": "roles/server/tasks/main.yml", "content": "- name: Update all package to latest\n yum: name=* state=latest\n\n- name: Install LAMP packages\n yum: name={{ item }} state=present\n with_items:\n - httpd24\n - php70\n - mysql56-server\n - php70-mysqlnd\n\n- name: Add user into apache g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 579, "all_permissive": false }