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 | squishykid/k3s-the-dumb-way | 9ad509d1285a84caf4466a0902581565e288bbd0 | 1 | ansible/roles/dependencies | 7,935 | [
"no_license"
] | [
{
"path": "ansible/roles/dependencies/tasks/main.yml",
"content": "---\n- name: install apparmor dependencies\n apt:\n pkg:\n - apparmor \n - apparmor-utils\n - open-iscsi\n update_cache: yes",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 133
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 133,
"all_permissive": false
} |
ansible_role | squishykid/k3s-the-dumb-way | 9ad509d1285a84caf4466a0902581565e288bbd0 | 1 | ansible/roles/nvme | 7,935 | [
"no_license"
] | [
{
"path": "ansible/roles/nvme/tasks/main.yml",
"content": "---\n- name: create partition on nvme\n parted:\n device: /dev/nvme0n1\n label: gpt\n number: 1\n state: present\n- name: format partition on nvme\n filesystem:\n fstype: ext4\n dev: /dev/nvme0n1p1\n- name: mount the nvme fs\n m... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 420,
"all_permissive": false
} |
ansible_role | squishykid/k3s-the-dumb-way | 9ad509d1285a84caf4466a0902581565e288bbd0 | 1 | ansible/roles/sshkey | 7,935 | [
"no_license"
] | [
{
"path": "ansible/roles/sshkey/tasks/main.yml",
"content": "- name: Deploy SSH Key\n authorized_key:\n user: root\n key: \"{{ lookup('file', '~/.ssh/id_ed25519.pub') }}\"\n state: present\n when: ansible_password is defined\n- name: Disable password auth\n lineinfile:\n path: \"/etc/ssh/sshd... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 358,
"all_permissive": false
} |
ansible_role | linuxpedi/ansible101 | cf2bd140d00bd9b80d24b1270de113cf320c6435 | 0 | roles/nginx | 7,935 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n- name: Add Nginx GPG Key\n apt_key:\n url: https://nginx.org/keys/nginx_signing.key\n state: present\n\n- name: Add official Nginx repository\n apt_repository:\n repo: \"deb http://nginx.org/packages/ubuntu/ jammy nginx\"\n state: prese... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 447,
"all_permissive": false
} |
ansible_role | Julianorsti/linux-ansible | e0dfb6803dcc6f45f2304d3f367fbb605a8e2e7c | 0 | roles/common | 7,935 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n# Tarefas a serem executadas na Common\n\n- name: Instalar programas\n include: install.yml\n\n- name: Adicionar usuario\n include: configure.yml\n ",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 148
},
{
... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 940,
"all_permissive": false
} |
ansible_role | Julianorsti/linux-ansible | e0dfb6803dcc6f45f2304d3f367fbb605a8e2e7c | 0 | roles/nginx | 7,935 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n# tasks file for nginx\n- name: Atualizar SO\n ansible.builtin.apt:\n update_cache: yes\n\n- name: Instalar Nginx\n ansible.builtin.apt:\n pkg:\n - nginx\n \n- name: Copiar Html\n copy:\n src: index.html\n dest: /var/www/html\n\n\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 240,
"all_permissive": false
} |
ansible_role | herculan0/server-monitoring | 315dd81d87ab3f6763093a1e36c64127eadb26f8 | 0 | ansible/roles/grafana | 7,935 | [
"no_license"
] | [
{
"path": "ansible/roles/grafana/tasks/main.yml",
"content": "---\n# tasks file for grafana\n- name: Grafana\n tags:\n - grafana\n # docker_compose:\n # project_src: ../../../../\n # state: present\n docker_compose:\n project_name: grafana\n definition:\n version: '2'\n services:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 792,
"all_permissive": false
} |
ansible_role | herculan0/server-monitoring | 315dd81d87ab3f6763093a1e36c64127eadb26f8 | 0 | ansible/roles/jenkins | 7,935 | [
"no_license"
] | [
{
"path": "ansible/roles/jenkins/tasks/main.yml",
"content": "---\n# tasks file for jenkins\n- name: Import Jenkins GPG key\n tags:\n - jenkins\n apt_key:\n state: present\n url: https://pkg.jenkins.io/debian-stable/jenkins.io.key\n\n- name: Add Jenkins repository\n tags:\n - jenkins\n apt_r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 643,
"all_permissive": false
} |
ansible_role | herculan0/server-monitoring | 315dd81d87ab3f6763093a1e36c64127eadb26f8 | 0 | ansible/roles/nginx | 7,935 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx/tasks/main.yml",
"content": "---\n# tasks file for nginx\n- name: Nginx\n tags:\n - nginx\n docker_compose:\n project_name: nginx\n definition:\n version: '2'\n services:\n nginx:\n image: nginx\n restart: always\n ports:\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 281,
"all_permissive": false
} |
ansible_role | hariram43/CFG_Terraform | 17c7f5ab44afa311209aa21b5d8085082b93e446 | 0 | ansible-playbooks/roles/bitbucket | 7,935 | [
"no_license"
] | [
{
"path": "ansible-playbooks/roles/bitbucket/templates/bitbucket.j2",
"content": "#!/bin/bash\n\n# \n\n### BEGIN INIT INFO\n# Provides: bitbucket\n# Required-Start: $remote_fs $syslog\n# Required-Stop: $remote_fs $syslog\n# Default-Start: 2 3 4 5\n# Default-Stop: 0 1 6\n# Short-Desc... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 5522,
"all_permissive": false
} |
ansible_role | hariram43/CFG_Terraform | 17c7f5ab44afa311209aa21b5d8085082b93e446 | 0 | ansible-playbooks/roles/crowd | 7,935 | [
"no_license"
] | [
{
"path": "ansible-playbooks/roles/crowd/templates/crowd.service.j2",
"content": "# {{ ansible_managed }}\n\n[Unit]\nDescription=Atlassian Crowd\nAfter=syslog.target network.target\n\n[Service]\nType=forking\nUser={{ atlassian_crowd_user }}\nGroup={{ atlassian_crowd_group }}\nExecStart={{ atlassian_crowd_di... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 11168,
"all_permissive": false
} |
ansible_role | hariram43/CFG_Terraform | 17c7f5ab44afa311209aa21b5d8085082b93e446 | 0 | ansible-playbooks/roles/java | 7,935 | [
"no_license"
] | [
{
"path": "ansible-playbooks/roles/java/defaults/main.yml",
"content": "---\n\njava_version: \"java-1.8.0-openjdk-devel\"\njava_name: \"/usr/lib/jvm/java\"\njava_env_file: \"/etc/profile.d/java.sh\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 117
},
{
"path":... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 485,
"all_permissive": false
} |
ansible_role | hariram43/CFG_Terraform | 17c7f5ab44afa311209aa21b5d8085082b93e446 | 0 | ansible-playbooks/roles/jenkins-full | 7,935 | [
"no_license"
] | [
{
"path": "ansible-playbooks/roles/jenkins-full/defaults/main.yml",
"content": "---\n# Optional method of pinning a specific version of Jenkins and/or overriding the\n# default Jenkins packaging URL.\njenkins_version: \"2.195\"\nansible_os_family: \"RedHat\"\n# jenkins_pkg_url: \"https://www.example.com\"\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 6014,
"all_permissive": false
} |
ansible_role | hariram43/CFG_Terraform | 17c7f5ab44afa311209aa21b5d8085082b93e446 | 0 | ansible-playbooks/roles/jira | 7,935 | [
"no_license"
] | [
{
"path": "ansible-playbooks/roles/jira/templates/jira-application.properties.j2",
"content": "jira.home = {{ jira_home_dir }}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 32
},
{
"path": "ansible-playbooks/roles/jira/tasks/main.yml",
"content": "---\n\n- ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2575,
"all_permissive": false
} |
ansible_role | hariram43/CFG_Terraform | 17c7f5ab44afa311209aa21b5d8085082b93e446 | 0 | ansible-playbooks/roles/nexus | 7,935 | [
"no_license"
] | [
{
"path": "ansible-playbooks/roles/nexus/tasks/main.yml",
"content": "---\n \n- name: download nexus.repo\n get_url:\n url: \"{{ download_url }}\"\n dest: \"{{ download_archive }}\"\n register: nexus_download\n\n- name: nexus.tar.gz\n unarchive:\n src: \"{{ download_archive }}\"\n dest: \"{{b... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1890,
"all_permissive": false
} |
ansible_role | hariram43/CFG_Terraform | 17c7f5ab44afa311209aa21b5d8085082b93e446 | 0 | ansible-playbooks/roles/oracle-java | 7,935 | [
"no_license"
] | [
{
"path": "ansible-playbooks/roles/oracle-java/defaults/main.yml",
"content": "---\n#Role Java vars\n\ndownload_folder: /tmp\njava_archive: \"{{download_folder}}/jdk-8u111-linux-x64.tar.gz\"\njava_env_file: \"/etc/profile.d/java.sh\"\njava_home: \"/usr/lib/java/jre1.8.0_221\"\njava_install: \"/usr/lib/java/... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1383,
"all_permissive": false
} |
ansible_role | hariram43/CFG_Terraform | 17c7f5ab44afa311209aa21b5d8085082b93e446 | 0 | ansible-playbooks/roles/sonarqube | 7,935 | [
"no_license"
] | [
{
"path": "ansible-playbooks/roles/sonarqube/tasks/setup_sonarqube.yml",
"content": "---\n\n- name: Install unzip\n yum: \n name: \"unzip\" \n state: present\n\n- name: \"Download SonarQube binaries\"\n get_url:\n url: \"{{ sonar_download_url }}\"\n dest: \"/tmp/{{ sonar_archive }}\"\n retrie... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2574,
"all_permissive": false
} |
ansible_role | djaustin/mastering-ansible | 31df0b9923cb45aa7c80743da300ab84d67839f8 | 0 | roles/control | 7,935 | [
"no_license"
] | [
{
"path": "roles/control/tasks/main.yml",
"content": "---\n# tasks file for control\n- name: Ensure cURL installed\n become: yes\n apt: \n name: curl\n state: present",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 114
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 114,
"all_permissive": false
} |
ansible_role | djaustin/mastering-ansible | 31df0b9923cb45aa7c80743da300ab84d67839f8 | 0 | roles/demo-app | 7,935 | [
"no_license"
] | [
{
"path": "roles/demo-app/tasks/main.yml",
"content": "---\n# tasks file for demo-app\n- name: Ensure webserver packages installed\n become: yes\n package: \n name: \"{{ item }}\"\n state: present\n with_items:\n - python-virtualenv\n - python-pip\n - MySQL-python\n\n- name: Ensure applica... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 997,
"all_permissive": false
} |
ansible_role | djaustin/mastering-ansible | 31df0b9923cb45aa7c80743da300ab84d67839f8 | 0 | roles/httpd | 7,935 | [
"no_license"
] | [
{
"path": "roles/httpd/handlers/main.yml",
"content": "---\n# handlers file for httpd\n- name: restart httpd\n become: yes\n service:\n name: httpd\n state: restarted ",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 116
},
{
"path": "roles/httpd/tasks/mai... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 722,
"all_permissive": false
} |
ansible_role | djaustin/mastering-ansible | 31df0b9923cb45aa7c80743da300ab84d67839f8 | 0 | roles/mariadb | 7,935 | [
"no_license"
] | [
{
"path": "roles/mariadb/handlers/main.yml",
"content": "---\n# handlers file for mariadb\n- name: restart mariadb\n become: yes\n service:\n name: mariadb\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 120
},
{
"path": "roles/mariadb/... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1179,
"all_permissive": false
} |
ansible_role | djaustin/mastering-ansible | 31df0b9923cb45aa7c80743da300ab84d67839f8 | 0 | roles/nginx | 7,935 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n# tasks file for nginx\n- name: Install nginx\n become: yes\n package: \n state: present\n name: nginx\n tags: \n - nginx\n- name: Ensure nginx is running\n become: yes\n service: \n name: nginx\n enabled: yes\n state: started\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 508,
"all_permissive": false
} |
ansible_role | Pavansaidevops/learn-ansible | da42436742ef44ab69dbaa63e916acf88bf4c100 | 0 | roles/sample | 7,935 | [
"no_license"
] | [
{
"path": "roles/sample/tasks/main.yml",
"content": "- name: install nginx\n ansible.builtin.yum:\n name: nginx\n state: latest\n\n- name: Start Nginx\n ansible.builtin.systemd_service:\n name: nginx\n state: started\n enabled: true",
"license_type": "no_license",
"detected_licenses... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 187,
"all_permissive": false
} |
ansible_role | younesabo/TP1_Devops | 1b3e4e0d3831d17006edec5b5d27d7b82482876c | 0 | ansible/roles/app | 7,921 | [
"no_license"
] | [
{
"path": "ansible/roles/app/tasks/main.yml",
"content": "---\n# tasks file for roles/app\n- name: Run app\n docker_container:\n name: java\n image: younesabo/java\n state: started\n env:\n SPRING_DATASOURCE_URL: jdbc:postgresql://pgsql:5432/db",
"license_type": "no_license",
"de... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 198,
"all_permissive": false
} |
ansible_role | younesabo/TP1_Devops | 1b3e4e0d3831d17006edec5b5d27d7b82482876c | 0 | ansible/roles/database | 7,921 | [
"no_license"
] | [
{
"path": "ansible/roles/database/tasks/main.yml",
"content": "---\n# tasks file for roles/database\n- name: Run database\n docker_container:\n name: pgsql\n image: younesabo/pgsql\n env:\n POSTGRES_PASSWORD: \"123\"\n POSTGRES_USER: usr\n POSTGRES_DB: db\n state: started",
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 225,
"all_permissive": false
} |
ansible_role | younesabo/TP1_Devops | 1b3e4e0d3831d17006edec5b5d27d7b82482876c | 0 | ansible/roles/network | 7,921 | [
"no_license"
] | [
{
"path": "ansible/roles/network/tasks/main.yml",
"content": "---\n# tasks file for roles/network\n- name: Run database\n docker_network:\n name: global_network\n connected:\n - java\n - pgsql\n - httpd\n appends: yes\n",
"license_type": "no_license",
"detected_licenses": []... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 172,
"all_permissive": false
} |
ansible_role | younesabo/TP1_Devops | 1b3e4e0d3831d17006edec5b5d27d7b82482876c | 0 | ansible/roles/proxy | 7,921 | [
"no_license"
] | [
{
"path": "ansible/roles/proxy/tasks/main.yml",
"content": "---\n# tasks file for roles/proxy\n- name: Run proxy\n docker_container:\n name: httpd\n image: younesabo/httpserver\n ports: 80:80\n state: started",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 154... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 154,
"all_permissive": false
} |
ansible_role | LudovicMARIE/projet-ansible-gitlab | 3f22647ba7b20d32a0b9984e29b0dec70b1acb5b | 0 | roles/common | 7,921 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "- name: Update and upgrade packages\n apt:\n update_cache: yes\n upgrade: dist\n- name: Install required packages\n apt:\n name:\n - vim\n - git\n - wget\n - curl\n - apt-transport-https\n - net-tools\n - dnsu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 267,
"all_permissive": false
} |
ansible_role | LudovicMARIE/projet-ansible-gitlab | 3f22647ba7b20d32a0b9984e29b0dec70b1acb5b | 0 | roles/gitlab | 7,921 | [
"no_license"
] | [
{
"path": "roles/gitlab/tasks/main.yml",
"content": "- name: Add GitLab repository\n shell: |\n curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash\n\n- name: Install GitLab\n apt:\n name: gitlab-ce\n state: present\n\n- name: Configure GitLab\n l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 437,
"all_permissive": false
} |
ansible_role | akraino-edge-stack/ta-caas-registry | 85d00249cd7fd51320c736851b40844bb54fbd3c | 0 | ansible/roles/registry | 7,921 | [
"permissive"
] | [
{
"path": "ansible/roles/registry/templates/update/dockerreg.yml",
"content": "{#\nCopyright 2019 Nokia\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 6996,
"all_permissive": true
} |
ansible_role | akraino-edge-stack/ta-caas-registry | 85d00249cd7fd51320c736851b40844bb54fbd3c | 0 | ansible/roles/registry_pre_config | 7,921 | [
"permissive"
] | [
{
"path": "ansible/roles/registry_pre_config/meta/main.yml",
"content": "---\n# Copyright 2019 Nokia\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3145,
"all_permissive": true
} |
ansible_role | akraino-edge-stack/ta-caas-registry | 85d00249cd7fd51320c736851b40844bb54fbd3c | 0 | ansible/roles/swift | 7,921 | [
"permissive"
] | [
{
"path": "ansible/roles/swift/tasks/swift_main.yml",
"content": "---\n# Copyright 2019 Nokia\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 11817,
"all_permissive": true
} |
ansible_role | faust64/kube-magic | 1a57d7077e46fc7fbd5775dc8a199e1735437dce | 1 | custom/roles/lb | 7,921 | [
"no_license"
] | [
{
"path": "custom/roles/lb/defaults/main.yaml",
"content": "keepalive_advertise: 101\nkeepalive_auth_pass: <PASSWORD>\nkeepalive_contacts:\n- <EMAIL>\nkeepalive_priority: 1\nkeepalive_vhid: 42\nkeepalive_vip: 169.254.0.1\nsmtp_relay: localhost\n",
"license_type": "no_license",
"detected_licenses": [... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 3400,
"all_permissive": false
} |
ansible_role | faust64/kube-magic | 1a57d7077e46fc7fbd5775dc8a199e1735437dce | 1 | custom/roles/ldapgroupsync | 7,921 | [
"no_license"
] | [
{
"path": "custom/roles/ldapgroupsync/tasks/roles.yaml",
"content": "- name: check role granted\n changed_when: False\n failed_when: False\n register: role_granted\n shell: oc get clusterrolebinding | grep -E \"[ \\t]/{{ item['role'] }}[ \\t]*{{ item['username'] }}[ \\t]*\"\n- name: grant oc cluster rol... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 10880,
"all_permissive": false
} |
ansible_role | faust64/kube-magic | 1a57d7077e46fc7fbd5775dc8a199e1735437dce | 1 | custom/roles/logging | 7,921 | [
"no_license"
] | [
{
"path": "custom/roles/logging/templates/fluentd.j2",
"content": "---\napiVersion: v1\nkind: ConfigMap\nmetadata:\n labels:\n name: fluentd\n version: v1\n name: fluentd\n namespace: {{ logging_ns }}\ndata:\n entrypoint.sh: |\n #!/usr/bin/env sh\n #extracted from original image\n #patch ... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 14,
"total_bytes": 25554,
"all_permissive": false
} |
ansible_role | faust64/kube-magic | 1a57d7077e46fc7fbd5775dc8a199e1735437dce | 1 | custom/roles/nagios | 7,921 | [
"no_license"
] | [
{
"path": "custom/roles/nagios/templates/ceph.nrpe.j2",
"content": "{% if (mon_group_name | default('mons')) in group_names %}\ncommand[check_ceph_df]=/usr/bin/sudo {{ nagios_plugins_dir }}/check_ceph_df -C 90 -W 80\ncommand[check_ceph_health]=/usr/bin/sudo {{ nagios_plugins_dir }}/check_ceph_health\ncomman... | {
"task_files": 13,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 31,
"total_bytes": 34079,
"all_permissive": false
} |
ansible_role | faust64/kube-magic | 1a57d7077e46fc7fbd5775dc8a199e1735437dce | 1 | custom/roles/post-deploy-ceph | 7,921 | [
"no_license"
] | [
{
"path": "custom/roles/post-deploy-ceph/tasks/keyring.yaml",
"content": "- name: \"Creates {{ kuser }} keyring\"\n args:\n chdir: /etc/ceph\n creates: \"/etc/ceph/{{ cluster }}.client.{{ kuser }}.keyring\"\n shell: \"ceph -c {{ cluster }}.conf auth get-or-create client.{{ kuser }} {{ kperms | join(... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3937,
"all_permissive": false
} |
ansible_role | faust64/kube-magic | 1a57d7077e46fc7fbd5775dc8a199e1735437dce | 1 | custom/roles/post-deploy-host | 7,921 | [
"no_license"
] | [
{
"path": "custom/roles/post-deploy-host/files/backups-oc",
"content": "#!/bin/sh\n# openshift-backup - backups OpenShift\n# 20190604 - <EMAIL>\n\nBACKUP_DIR=\"${BACKUP_DIR:-/root/openshift_backup}\"\nETCD_DATA_DIR=\"${ETCD_DATA_DIR:-/var/lib/etcd}\"\nBACKUP_CS_OBJECTS=\"clusterrolebindings persistentvolume... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 18742,
"all_permissive": false
} |
ansible_role | faust64/kube-magic | 1a57d7077e46fc7fbd5775dc8a199e1735437dce | 1 | custom/roles/post-deploy-openshift | 7,921 | [
"no_license"
] | [
{
"path": "custom/roles/post-deploy-openshift/defaults/main.yml",
"content": "cephfs_claim_root: /pvc-volumes\ncephfs_namespace: cephfs\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 57
},
{
"path": "custom/roles/post-deploy-openshift/tasks/ceph-secret.yml",
... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 10020,
"all_permissive": false
} |
ansible_role | faust64/kube-magic | 1a57d7077e46fc7fbd5775dc8a199e1735437dce | 1 | custom/roles/prometheus | 7,921 | [
"no_license"
] | [
{
"path": "custom/roles/prometheus/templates/kube-state-metrics.j2",
"content": "---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: kube-state-metrics\n namespace: {{ prometheus_ns }}\nspec:\n replicas: 1\n selector:\n matchLabels:\n name: kube-state-metrics\n template:\n metadata... | {
"task_files": 10,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 28,
"total_bytes": 62915,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/aws | 7,921 | [
"no_license"
] | [
{
"path": "roles/aws/tasks/main.yml",
"content": "---\n\n- name: Install awscli command line\n apt:\n name: awscli\n state: present",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 83
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 83,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/crystal | 7,921 | [
"no_license"
] | [
{
"path": "roles/crystal/tasks/install.yml",
"content": "---\n\n- name: Check if crystal is already installed\n stat: \n path: \"/usr/bin/crystal\"\n register: crystal_lang\n\n- name: Apt Key Crystal Lang\n when: crystal_lang.stat.exists == true\n apt_key:\n keyserver: keys.gnupg.net\n id: 0<KE... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 664,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/docker | 7,921 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n\n- name: add Kubernetes apt-key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n- name: add docker apt repository\n apt_repository:\n repo: deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ans... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 463,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/docker-compose | 7,921 | [
"no_license"
] | [
{
"path": "roles/docker-compose/tasks/install.yml",
"content": "---\n\n- name: get docker compose\n get_url:\n url: https://github.com/docker/compose/releases/download/1.22.0/docker-compose-Linux-x86_64\n dest: /usr/local/bin/docker-compose\n mode: 0755",
"license_type": "no_license",
"det... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 193,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/elixir | 7,921 | [
"no_license"
] | [
{
"path": "roles/elixir/tasks/main.yml",
"content": "---\n\n- name: Download Earlang solutions\n become_user: \"{{default_user}}\"\n get_url:\n url: https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb\n dest: \"{{home_dir}}/erlang-solutions_1.0_all.deb\"\n mode: 0755\n force_bas... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 567,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/hostname | 7,921 | [
"no_license"
] | [
{
"path": "roles/hostname/tasks/main.yml",
"content": "---\n\n- name: change hostname\n hostname:\n name: \"vagrant-{{ env }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 71
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 71,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/java | 7,921 | [
"no_license"
] | [
{
"path": "roles/java/tasks/update_alternatives.yml",
"content": "---\n\n- name: Update Alternatives Java 8\n alternatives:\n link: /usr/bin/java\n name: java\n path: /usr/lib/jvm/java-8-oracle/bin/java\n priority: 1\n\n# - name: Update Alternatives Java 9\n# alternatives:\n# link: /usr/b... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 834,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/kubernetes | 7,921 | [
"no_license"
] | [
{
"path": "roles/kubernetes/tasks/main.yml",
"content": "---\n\n- name: Install apt-transport-https\n apt:\n name: apt-transport-https \n state: present\n\n- name: add Kubernetes apt-key\n apt_key:\n url: https://packages.cloud.google.com/apt/doc/apt-key.gpg\n state: present\n\n- name: add kub... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 482,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/nginx | 7,921 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/nginx_config.yml",
"content": "---\n\n- name: Create nginx conf folder\n file: \n path: \"{{workspace_dir}}/services_nginx\"\n state: directory\n become_user: \"{{default_user}}\" \n\n- name: Copy config to config folder\n template: \n src: nginx.conf.j2\n dest: /... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1022,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/rvm | 7,921 | [
"no_license"
] | [
{
"path": "roles/rvm/tasks/rvm_install.yml",
"content": "---\n\n- name: Check if rvm is already installed\n stat: \n path: \"{{home_dir}}/.rvm\"\n register: rvm_dir\n\n- name: Add rvm apt key\n when: rvm_dir.stat.isdir is not defined\n apt_key:\n keyserver: hkp://keys.gnupg.net\n id: <KEY>\n\n-... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1380,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/sdkman | 7,921 | [
"no_license"
] | [
{
"path": "roles/sdkman/tasks/install.yml",
"content": "---\n\n- name: Install sdkman dependencies\n apt: name={{item}} state=present\n with_items:\n - unzip\n - zip\n\n- name: Check if sdkman is already installed\n stat: \n path: \"{{home_dir}}/.sdkman\"\n register: sdkman_dir\n become_user: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1030,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/services | 7,921 | [
"no_license"
] | [
{
"path": "roles/services/templates/docker-compose.yml.conf.j2",
"content": "version: '2'\nservices:\n solr:\n image: solr:5.4\n ports:\n - \"8983:8983\"\n networks:\n services:\n ipv4_address: 172.28.0.8\n mysql:\n image: mysql\n environment: \n MYSQL_ROOT_PASSWORD: s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3157,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/so-config | 7,921 | [
"no_license"
] | [
{
"path": "roles/so-config/tasks/remove_apache.yml",
"content": "---\n\n- name: Remove Apache installation\n apt:\n name: apache2\n state: absent",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 82
},
{
"path": "roles/so-config/tasks/etc_hosts.yml",
"cont... | {
"task_files": 7,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 1240,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/so-tools | 7,921 | [
"no_license"
] | [
{
"path": "roles/so-tools/tasks/zip.yml",
"content": "---\n\n- name: Install zip\n apt: \n name: zip\n state: present",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
},
{
"path": "roles/so-tools/templates/gitconfig.conf.j2",
"content": "[alias]\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 549,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/terraform | 7,921 | [
"no_license"
] | [
{
"path": "roles/terraform/tasks/main.yml",
"content": "---\n\n- name: Check if terraform is already installed\n stat: \n path: \"/usr/bin/terraform\"\n register: terraform_bin\n\n- name: Download and Install Terraform\n when: terraform_bin.stat.exists == False\n unarchive:\n src: \"https://releas... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 486,
"all_permissive": false
} |
ansible_role | richardsbrandao/mydevenv | c58ab827e327d219c205c9d5a6eb7f7b113cef5e | 0 | roles/xserver | 7,921 | [
"no_license"
] | [
{
"path": "roles/xserver/templates/startXServer.conf.j2",
"content": "#!/bin/sh\n\nnohup startxfce4 >/dev/null 2>&1 &",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 45
},
{
"path": "roles/xserver/tasks/main.yml",
"content": "---\n\n- include: install.yml\n- in... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 716,
"all_permissive": false
} |
ansible_role | madhank93/ollama-pi-cf | 08ce30aacff07f25bbbb7bfd71cecebf99a51179 | 0 | roles/ollama | 7,921 | [
"no_license"
] | [
{
"path": "roles/ollama/tasks/main.yml",
"content": "---\n- name: Include install_ollama task file\n ansible.builtin.include_tasks: install_ollama.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 97
},
{
"path": "roles/ollama/tasks/install_ollama.yml",
"c... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1569,
"all_permissive": false
} |
ansible_role | madhank93/ollama-pi-cf | 08ce30aacff07f25bbbb7bfd71cecebf99a51179 | 0 | roles/prerequisites | 7,921 | [
"no_license"
] | [
{
"path": "roles/prerequisites/tasks/install_docker.yml",
"content": "- name: Install Docker in Raspberry Pi\n become: true\n block:\n - name: Update apt packages\n ansible.builtin.apt:\n update_cache: true\n - name: Install docker packages\n ansible.builtin.apt:\n name: \"{{... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 943,
"all_permissive": false
} |
ansible_role | siavashmhi/Kubenfs | 223c58f7073b206c7ff91a79037b2576ac80c8f9 | 0 | roles/nfs | 7,921 | [
"no_license"
] | [
{
"path": "roles/nfs/templates/exports.j2",
"content": "# /etc/exports: NFS file systems being exported. See exports(5).\n\n# Export NFS share for Kubernetes worker nodes\n/srv/nfs4/data {% for host in groups['kubernetes-workers'] %}\n{{ hostvars[host]['ansible_host'] }}(rw,sync,no_subtree_check,no_root_squ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 4249,
"all_permissive": false
} |
ansible_role | gaddambhargavi/ans | c77d847f3c710bd677918ad393e89c0c85c23434 | 0 | roles/ansible | 7,921 | [
"no_license"
] | [
{
"path": "roles/ansible/tasks/main.yml",
"content": "---\n- name: update packages for ansible\n become: yes\n apt:\n update_cache: yes\n tags:\n - ansible\n\n- name: install sofware properties for ansible\n become: yes\n apt: name=software-properties-common state=latest\n tags:\n - ansible\n\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 444,
"all_permissive": false
} |
ansible_role | gaddambhargavi/ans | c77d847f3c710bd677918ad393e89c0c85c23434 | 0 | roles/azure | 7,921 | [
"no_license"
] | [
{
"path": "roles/azure/tasks/main.yml",
"content": "---\n- name: Update apt cache.\n become: yes\n tags: 'az-cli'\n apt: update_cache=yes\n\n- name: Fix broken apt module for Ubuntu 1604\n become: yes\n tags: 'az-cli'\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - lsb-rele... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 495,
"all_permissive": false
} |
ansible_role | gaddambhargavi/ans | c77d847f3c710bd677918ad393e89c0c85c23434 | 0 | roles/docker1 | 7,921 | [
"no_license"
] | [
{
"path": "roles/docker1/tasks/main.yml",
"content": "---\n- name: import docker \n tags: 'docker'\n include_tasks: docker.yml\n\n- name: Remove useless apt packages from the cache\n tags: 'docker'\n apt:\n autoclean: yes\n\n- name: Remove dependencies that are no longer required\n tags: 'docker'\n ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1544,
"all_permissive": false
} |
ansible_role | gaddambhargavi/ans | c77d847f3c710bd677918ad393e89c0c85c23434 | 0 | roles/git | 7,921 | [
"no_license"
] | [
{
"path": "roles/git/tasks/main.yml",
"content": "---\n- name: Install git\n tags: 'git'\n become: yes\n apt:\n name: git\n state: present\n update_cache: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 114
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 114,
"all_permissive": false
} |
ansible_role | gaddambhargavi/ans | c77d847f3c710bd677918ad393e89c0c85c23434 | 0 | roles/gitlab | 7,921 | [
"no_license"
] | [
{
"path": "roles/gitlab/handlers/main.yml",
"content": "---\n- name: configure gitlab\n command: gitlab-ctl reconfigure\n become: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 77
},
{
"path": "roles/gitlab/tasks/main.yml",
"content": "---\n- name: Ins... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1009,
"all_permissive": false
} |
ansible_role | gaddambhargavi/ans | c77d847f3c710bd677918ad393e89c0c85c23434 | 0 | roles/jenkins | 7,921 | [
"no_license"
] | [
{
"path": "roles/jenkins/tasks/main.yml",
"content": "---\n- name: Update APT package manager repositories cache\n become: true\n tags: jenkins\n apt:\n update_cache: yes\n\n- name: Install OpenJDK Java\n become: yes\n tags: jenkins\n apt:\n name: openjdk-8-jdk\n state: present\n\n- name: ens... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 870,
"all_permissive": false
} |
ansible_role | gaddambhargavi/ans | c77d847f3c710bd677918ad393e89c0c85c23434 | 0 | roles/terraform | 7,921 | [
"no_license"
] | [
{
"path": "roles/terraform/tasks/main.yml",
"content": "---\n- name: update packages\n apt:\n update_cache: yes\n\n- name: Install Packages\n apt: name=wget update_cache=yes state=latest\n\n- name: terraform install\n unarchive:\n src: https://releases.hashicorp.com/terraform/0.12.2/terraform_0.1... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 327,
"all_permissive": false
} |
ansible_role | Dobshik/sysadmin_repo | e82245468508f036768998e1f149ecde0918b8ac | 0 | ansible/roles/common | 7,921 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/main.yaml",
"content": "---\n- name: Set hostname to inventory_hostname\n hostname:\n name: \"{{ inventory_hostname }}\"\n\n- name: Install common packages\n apt:\n name:\n - net-tools\n - dnsutils\n - wget\n - curl\n - mc\n - rsync... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 273,
"all_permissive": false
} |
ansible_role | Dobshik/sysadmin_repo | e82245468508f036768998e1f149ecde0918b8ac | 0 | ansible/roles/nginx_custom | 7,921 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx_custom/tasks/main.yaml",
"content": "---\n- name: Install Nginx\n apt:\n name: nginx\n state: present\n update_cache: true\n\n- name: Create custom index.html\n copy:\n dest: /var/www/html/index.html\n content: |\n <body>\n <p><center><b>Hello from {... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 393,
"all_permissive": false
} |
ansible_role | Dobshik/sysadmin_repo | e82245468508f036768998e1f149ecde0918b8ac | 0 | ansible/roles/nginx_proxy | 7,921 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx_proxy/tasks/main.yaml",
"content": "---\n- name: Install Nginx\n apt:\n name: nginx\n state: present\n update_cache: true\n\n- name: Configure Nginx as reverse proxy with load balancing\n template:\n src: nginx.conf.j2\n dest: /etc/nginx/sites-available/defaul... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 508,
"all_permissive": false
} |
ansible_role | JosiasBatista/ansible-configuration | bbd3114c47a8f43f488bf5c4d6877ae46a9a1bad | 0 | roles/webServer | 7,921 | [
"no_license"
] | [
{
"path": "roles/webServer/tasks/main.yml",
"content": "---\n# tasks file for webServer\n- name: \"Install packages\"\n apt:\n update_cache: yes\n name: \"{{ item }}\"\n state: latest\n with_items: \"{{ requiredPackages }}\"\n\n- name: \"Create directory\"\n file:\n path: \"{{ workingDir }}\"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 840,
"all_permissive": false
} |
ansible_role | achrafchourabi/CanturlaAppJenkins | fd87a07e2e58358e06c09776568a4528204a8e35 | 0 | Ansible/roles/build | 7,921 | [
"no_license"
] | [
{
"path": "Ansible/roles/build/tasks/main.yml",
"content": "---\n# tasks file for build\n- name: build app\n command: docker-compose up -d --build\n args:\n chdir: /root/lastdocker/achrafAppJenkins\n \n \n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 144
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 144,
"all_permissive": false
} |
ansible_role | O-clock-Nornes/s08-ansible-setup | e9065595518b55a55ce21a68f6d7c6c17c01c225 | 0 | playbooks/roles/httpd | 7,921 | [
"no_license"
] | [
{
"path": "playbooks/roles/httpd/tasks/main.yml",
"content": "---\n\n- name: Copy toto file\n ansible.builtin.copy:\n src: toto.txt\n dest: /root/toto.txt\n owner: root\n group: root\n mode: \"0600\"\n\n- name: Install apache\n ansible.builtin.apt:\n name: apache2\n state: present\n\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 319,
"all_permissive": false
} |
ansible_role | madhurranjan/deployment | b3b604bbaf24566ae516830992ad2a4f84e28a98 | 0 | playbooks/roles/tomcat | 7,921 | [
"no_license"
] | [
{
"path": "playbooks/roles/tomcat/tasks/main.yml",
"content": "- name: Remove older version of tomcat\n file: path=/usr/local/tomcat state=absent\n\n- name: Download Tomcat\n get_url: url={{ tomcat_url }} dest=/tmp\n\n- name: Extract archive\n command: chdir=/tmp /bin/tar xvf apache-tomcat-{{ tomcat_vers... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 640,
"all_permissive": false
} |
ansible_role | donoghuc/bolt_comparison | b327dfe1bad94892e88681613018966a6279c96d | 0 | ansible_control/roles/init_config | 7,921 | [
"no_license"
] | [
{
"path": "ansible_control/roles/init_config/tasks/main.yml",
"content": "###\n# install and configure fail2ban\n##\n- name: Ensure rsyslog installed (fail2ban dependency)\n apt:\n name: rsyslog\n state: present\n update_cache: yes\n\n- name: Ensure rsyslog is running (fail2ban dependency)\n serv... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1497,
"all_permissive": false
} |
ansible_role | mikalv/greyhat-ctf | 674cddb04732e0ee6fab010d7026ff1d9c533478 | 0 | ansible/roles/common | 7,921 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/archlinux/packages.yml",
"content": "---\n\n# Enable multilib\n\n- name: Add multilib to pacman\n lineinfile:\n dest: /etc/pacman.conf\n state: \"present\"\n line: \"[multilib]\"\n regexp: \"^\\\\[multilib\\\\]\"\n insertafter: \"^#\\\\[multilib\\\\]\"\n... | {
"task_files": 8,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 11,
"total_bytes": 4945,
"all_permissive": false
} |
ansible_role | mikalv/greyhat-ctf | 674cddb04732e0ee6fab010d7026ff1d9c533478 | 0 | ansible/roles/ctfserver | 7,921 | [
"no_license"
] | [
{
"path": "ansible/roles/ctfserver/tasks/main.yml",
"content": "---\n\n- name: \"Ensuring {{ default_ctfuser_group }} group is available\"\n become: yes\n become_user: root\n group:\n name: \"{{ default_ctfuser_group }}\"\n state: present\n tags:\n - ctf\n - ctfserver\n - archlinux\n\n- n... | {
"task_files": 17,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 59,
"total_bytes": 79836,
"all_permissive": false
} |
ansible_role | mikalv/greyhat-ctf | 674cddb04732e0ee6fab010d7026ff1d9c533478 | 0 | ansible/roles/webserver | 7,921 | [
"no_license"
] | [
{
"path": "ansible/roles/webserver/tasks/main.yml",
"content": "---\n\n- name: Nginx public web - 404 template\n template: src=nginx/base_template_nginx_conf.j2 dest=/etc/nginx/404.html mode=0644\n tags:\n - publicweb\n - ctfserver\n\n- name: Nginx public web - 404 template\n template: src=nginx/ba... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4698,
"all_permissive": false
} |
ansible_role | glyphrider/ansible-pi-bootstrap | 11a510c733d59785515205dfa913849fcb7d8822 | 0 | roles/applications | 7,934 | [
"no_license"
] | [
{
"path": "roles/applications/tasks/editors.yml",
"content": "---\n- name: apt-get install emacs-nox\n apt:\n name: emacs-nox\n state: present\n become: yes\n- name : apt-get install vim\n apt:\n name: vim\n state: present\n become: yes\n",
"license_type": "no_license",
"detected_lic... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 274,
"all_permissive": false
} |
ansible_role | glyphrider/ansible-pi-bootstrap | 11a510c733d59785515205dfa913849fcb7d8822 | 0 | roles/common | 7,934 | [
"no_license"
] | [
{
"path": "roles/common/tasks/sudo.yml",
"content": "---\n- name: Update sudo rules to not require a password\n lineinfile:\n path: /etc/sudoers\n regex: ^%sudo\n line: \"%sudo ALL=(ALL:ALL) NOPASSWD:ALL\"\n state: present\n backrefs: yes\n become: yes\n",
"license_type": "no_license"... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 4309,
"all_permissive": false
} |
ansible_role | glyphrider/ansible-pi-bootstrap | 11a510c733d59785515205dfa913849fcb7d8822 | 0 | roles/graphical | 7,934 | [
"no_license"
] | [
{
"path": "roles/graphical/tasks/main.yml",
"content": "---\n- name: Install Raspberry Pi OS Xserver\n apt:\n name: xserver-xorg\n state: present\n become: yes\n\n- name: Install XFCE Desktop\n apt:\n name:\n - xfce4\n - xfce4-terminal\n state: present\n become: yes\n\n- name: Inst... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 424,
"all_permissive": false
} |
ansible_role | rerorero/vitess-playground | d4c5410ce77842fec55d5da7d7dab88f2d63f277 | 4 | roles/docker | 7,934 | [
"no_license"
] | [
{
"path": "roles/docker/defaults/main.yml",
"content": "---\ndocker_version: \"17.12.0~ce-0~ubuntu\"\ndocker_repo: \"deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ ansible_lsb.codename }} stable\"\n\ncompose_version: 1.19.0\ncompose_package_url: \"https://github.com/docker/compose/releases/dow... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1262,
"all_permissive": false
} |
ansible_role | rerorero/vitess-playground | d4c5410ce77842fec55d5da7d7dab88f2d63f277 | 4 | roles/etcd | 7,934 | [
"no_license"
] | [
{
"path": "roles/etcd/templates/docker-compose.yml.j2",
"content": "version: '3'\nservices:\n etcd:\n image: \"{{ etcd_docker_tag }}\"\n hostname: \"{{ inventory_hostname }}\"\n ports:\n - \"{{ etcd_advertise_port }}:2379\"\n - \"2380:2380\"\n volumes:\n - \"{{ etcd_data_dir }}:{... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1246,
"all_permissive": false
} |
ansible_role | rerorero/vitess-playground | d4c5410ce77842fec55d5da7d7dab88f2d63f277 | 4 | roles/vt-common | 7,934 | [
"no_license"
] | [
{
"path": "roles/vt-common/defaults/main.yml",
"content": "---\nvt_user_id: 3030\nvt_group_id: 3030\n\nvt_vitess_version: v2.0.0\nvt_docker_tag: \"vitess/lite:{{ vt_vitess_version }}\"\nvt_env_vtroot: /vt\nvt_env_vttop: \"{{ vt_env_vtroot }}/src/github.com/youtube/vitess\"\nvt_env_vtdataroot: \"{{ vt_env_vt... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1377,
"all_permissive": false
} |
ansible_role | rerorero/vitess-playground | d4c5410ce77842fec55d5da7d7dab88f2d63f277 | 4 | roles/vtctlclient | 7,934 | [
"no_license"
] | [
{
"path": "roles/vtctlclient/tasks/main.yml",
"content": "---\n- name: Check already installed\n stat: path=/usr/local/bin/lvtctl\n register: lvtctl_stat\n\n- block:\n - name: go get\n command: go get github.com/youtube/vitess/go/cmd/vtctlclient\n environment: \"{{ go_path_env }}\"\n\n - name: Put... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 485,
"all_permissive": false
} |
ansible_role | rerorero/vitess-playground | d4c5410ce77842fec55d5da7d7dab88f2d63f277 | 4 | roles/vtctld | 7,934 | [
"no_license"
] | [
{
"path": "roles/vtctld/meta/main.yml",
"content": "---\ndependencies:\n - { role: vt-common }\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "roles/vtctld/tasks/main.yml",
"content": "---\n- name: Create required directories\n file:\n p... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1734,
"all_permissive": false
} |
ansible_role | rerorero/vitess-playground | d4c5410ce77842fec55d5da7d7dab88f2d63f277 | 4 | roles/vtgate | 7,934 | [
"no_license"
] | [
{
"path": "roles/vtgate/tasks/main.yml",
"content": "---\n- name: Create required directories\n file:\n path: \"{{ item }}\"\n owner: vitess\n group: vitess\n state: directory\n mode: 0755\n with_items:\n - \"{{ vtgate_dir }}\"\n - \"{{ vtgate_syslog_dir }}\"\n - \"{{ vtgate_data_d... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1677,
"all_permissive": false
} |
ansible_role | rerorero/vitess-playground | d4c5410ce77842fec55d5da7d7dab88f2d63f277 | 4 | roles/vtshard | 7,934 | [
"no_license"
] | [
{
"path": "roles/vtshard/templates/additional.my.cnf.j2",
"content": "innodb_buffer_pool_size = 80M\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 30
},
{
"path": "roles/vtshard/tasks/vttablet.yml",
"content": "---\n # Reiquired vars\n # vt_uid\n # vt_key... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 6770,
"all_permissive": false
} |
ansible_role | jesseditson/rigsketball | 98c56fcd5f0439f97dd956d936578980a26ed308 | 0 | ansible/roles/mongodb | 7,934 | [
"no_license"
] | [
{
"path": "ansible/roles/mongodb/tasks/main.yml",
"content": "---\n\n- name: install mongodb\n yum: name=mongodb,mongodb-server disablerepo=* enablerepo=fedora,updates state=present\n tags: mongodb\n\n- name: Create database folder\n file: path={{mongodb.db}} group=mongodb owner=mongodb mode=755 state=di... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 863,
"all_permissive": false
} |
ansible_role | carrba/ansible | 3785f1896814865469ed6b90ffa935b9cf8590fc | 0 | roles/ftp | 7,934 | [
"no_license"
] | [
{
"path": "roles/ftp/tasks/main.yml",
"content": "---\n- name: Install vsftp\n yum: name=vsftpd state=latest\n...\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 63
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 63,
"all_permissive": false
} |
ansible_role | nataliasviattseva/Greta-DevOps | 8211908022a2ff3020d533cdff35dab782129c6c | 0 | Ansible/Day-4/Roles-pratique/roles/ssh_keygen | 7,934 | [
"no_license"
] | [
{
"path": "Ansible/Day-4/Roles-pratique/roles/ssh_keygen/tasks/main.yml",
"content": "---\n# tasks file for roles/ssh_keygen\n\n- name: generate SSH key\n openssh_keypair:\n path: /tmp/pmerle\n type: rsa\n size: 4096\n state: present\n force: no\n",
"license_type": "no_license",
"det... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 167,
"all_permissive": false
} |
ansible_role | nataliasviattseva/Greta-DevOps | 8211908022a2ff3020d533cdff35dab782129c6c | 0 | Ansible/Day-4/Roles-pratique/roles/users | 7,934 | [
"no_license"
] | [
{
"path": "Ansible/Day-4/Roles-pratique/roles/users/tasks/main.yml",
"content": "---\n# tasks file for roles/ssh_users\n\n- name: creation du user devops\n user:\n name: devops2\n shell: /bin/bash\n group: sudo\n append: yes\n password: \"{{ '<PASSWORD>' | password_hash('<PASSWORD>') }}\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 490,
"all_permissive": false
} |
ansible_role | phpsrbija/unfinished | f88ebee0b1f6f02d9d2a5bdb0bf46610bf154206 | 29 | provisioning/roles/common | 7,934 | [
"no_license"
] | [
{
"path": "provisioning/roles/common/vars/main.yml",
"content": "---\n\ncommon_packages:\n - gcc\n - curl\n - make\n - git-core\n - vim\n - ack-grep\n - htop\n - build-essential\n - wget\n - python-software-properties\n - software-properties-common\n - unzip\n - tmux\n - ntp\n - python-setupt... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1672,
"all_permissive": false
} |
ansible_role | phpsrbija/unfinished | f88ebee0b1f6f02d9d2a5bdb0bf46610bf154206 | 29 | provisioning/roles/composer | 7,934 | [
"no_license"
] | [
{
"path": "provisioning/roles/composer/README.md",
"content": "Composer\n========\n\nComposer tool setup, upon completion it will \nexecute composer install in the project directory\n\nRequirements\n------------\n\nThis role requires Ansible 1.4 or higher and tested platforms are listed in the metadata file... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2257,
"all_permissive": false
} |
ansible_role | phpsrbija/unfinished | f88ebee0b1f6f02d9d2a5bdb0bf46610bf154206 | 29 | provisioning/roles/mysql | 7,934 | [
"no_license"
] | [
{
"path": "provisioning/roles/mysql/handlers/main.yml",
"content": "---\n# handlers file for mysql\n- name: restart mysql\n service: name=mysql state=restarted\n become: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 104
},
{
"path": "provisioning/roles/my... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2413,
"all_permissive": false
} |
ansible_role | phpsrbija/unfinished | f88ebee0b1f6f02d9d2a5bdb0bf46610bf154206 | 29 | provisioning/roles/nginx | 7,934 | [
"no_license"
] | [
{
"path": "provisioning/roles/nginx/meta/main.yml",
"content": "---\ngalaxy_info:\n author: <NAME>\n description: Ansilble role to setup Nginx server\n company: Code4Hire Kft.\n license: BSD\n min_ansible_version: 1.7\n platforms:\n - name: Ubuntu\n versions:\n - xenial\n categories:\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1781,
"all_permissive": false
} |
ansible_role | phpsrbija/unfinished | f88ebee0b1f6f02d9d2a5bdb0bf46610bf154206 | 29 | provisioning/roles/nodejs | 7,934 | [
"no_license"
] | [
{
"path": "provisioning/roles/nodejs/tasks/main.yml",
"content": "---\n# tasks file for nodejs\n- name: Add the Nodesource signing keys\n apt_key: url=https://keyserver.ubuntu.com/pks/lookup?op=get&fingerprint=on&search=0x1655A0AB68576280 state=present id=\"68576280\"\n\n- name: Add Nodesource repo (former... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1539,
"all_permissive": false
} |
ansible_role | phpsrbija/unfinished | f88ebee0b1f6f02d9d2a5bdb0bf46610bf154206 | 29 | provisioning/roles/php | 7,934 | [
"no_license"
] | [
{
"path": "provisioning/roles/php/meta/main.yml",
"content": "---\ngalaxy_info:\n author: <NAME>\n description: Ansilble role to setup php 7.0\n company: Code4Hire Kft.\n license: BSD\n min_ansible_version: 1.7\n platforms:\n - name: Ubuntu\n versions:\n - xenial\n categories:\n - w... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 5318,
"all_permissive": false
} |
ansible_role | phpsrbija/unfinished | f88ebee0b1f6f02d9d2a5bdb0bf46610bf154206 | 29 | provisioning/roles/php-xdebug | 7,934 | [
"no_license"
] | [
{
"path": "provisioning/roles/php-xdebug/vars/Debian.yml",
"content": "---\nphp_fmp_conf_d_path: /etc/php/7.0/fpm/conf.d/\n\nphp_cli_conf_d_path: /etc/php/7.0/cli/conf.d/\n\nphp_mods_available: /etc/php/7.0/mods-available/\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 5115,
"all_permissive": false
} |
ansible_role | Feeeenng/tools | 1ffd93892164a10739e5e3fee0d4283f5fe40ebf | 0 | roles/docker | 7,934 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yaml",
"content": "- name: install dpendencices\n yum:\n name:\n - yum-utils\n\n- name: 添加阿里云 Docker CE 源\n get_url:\n url: https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo\n dest: /etc/yum.repos.d/docker-ce.repo\n mode: '0644'\n\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 538,
"all_permissive": false
} |
ansible_role | Feeeenng/tools | 1ffd93892164a10739e5e3fee0d4283f5fe40ebf | 0 | roles/init | 7,934 | [
"no_license"
] | [
{
"path": "roles/init/tasks/main.yaml",
"content": "---\n- name: disabled seliunx\n command: setenforce 0\n when: ansible_selinux.status == \"enabled\"\n ignore_errors: yes\n\n- name: 永久关闭 SELinux(修改 config 文件)\n replace:\n path: /etc/selinux/config\n regexp: '^SELINUX=.*'\n replace: 'SELINUX=d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1356,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.