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
t-benedek/ansible-udacity
31c463d93dc920a630f627b5e9eaaef297d0170b
0
roles/setup
191
[ "no_license" ]
[ { "path": "roles/setup/tasks/main.yml", "content": "---\n- name: \"update apt packages.\"\n become: yes\n apt:\n update_cache: yes\n\n- name: \"upgrade packages\"\n become: yes\n apt:\n upgrade: yes\n\n- name: remove dependencies that are no longer required\n become: yes\n apt:\n autoremove: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 648, "all_permissive": false }
ansible_role
iacpucpr/iac-zero-trust-labs
93478040fb6a7cf11bf95481da4aebd1a4b89cdc
0
lab-iac-zero-trust/etapa3-ansible/roles/cert-deploy
191
[ "no_license" ]
[ { "path": "lab-iac-zero-trust/etapa3-ansible/roles/cert-deploy/tasks/main.yml", "content": "- name: Instalar certbot\n ansible.builtin.apt:\n name: certbot\n state: present\n when: ansible_os_family == \"Debian\"\n\n- name: Criar certificado autoassinado\n ansible.builtin.command: > # Ou use 'shell...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1143, "all_permissive": false }
ansible_role
iacpucpr/iac-zero-trust-labs
93478040fb6a7cf11bf95481da4aebd1a4b89cdc
0
lab-iac-zero-trust/etapa3-ansible/roles/glpi-hardening
191
[ "no_license" ]
[ { "path": "lab-iac-zero-trust/etapa3-ansible/roles/glpi-hardening/tasks/main.yml", "content": "- name: Atualizar cache de pacotes\n ansible.builtin.apt:\n update_cache: yes\n when: ansible_os_family == \"Debian\"\n\n- name: Desabilitar root no SSH\n lineinfile:\n path: /etc/ssh/sshd_config\n reg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 499, "all_permissive": false }
ansible_role
ziyue-devops/ansible
69f26f1d78405ea1d304cc0647532599d48c6d89
0
roles/copy_file
191
[ "no_license" ]
[ { "path": "roles/copy_file/tasks/create_file.yaml", "content": "# 远程服务器创建文件\n- name: create file \n file:\n path: /etc/ansible/demo/foo.conf\n state: touch\n mode: u=rw,g=r,o=r", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 }, { "path": "roles/copy_f...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 551, "all_permissive": false }
ansible_role
somcomunitats-coop/community-maps-provisioning
11f5ebac3de4374e8cf559ff0e2c7c0723151734
0
roles/_nginx
191
[ "no_license" ]
[ { "path": "roles/_nginx/tasks/main.yml", "content": "---\n- name: Config Nginx\n vars:\n nginx_user: www-data\n nginx_http_params: \"{{ nginx_http_default_params + nginx_http_extra_params }}\"\n nginx_configs:\n upstream:\n - \"upstream {{ nextjs_service_name }} { server 127.0.0.1:3000...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 3798, "all_permissive": false }
ansible_role
somcomunitats-coop/community-maps-provisioning
11f5ebac3de4374e8cf559ff0e2c7c0723151734
0
roles/init
191
[ "no_license" ]
[ { "path": "roles/init/tasks/main.yml", "content": "---\n- name: Ensure Apache is not installed\n apt:\n name: apache2\n state: absent\n become: true\n\n- name: Ensure software-properties-common is installed\n apt:\n name: software-properties-common\n state: present\n become: true\n\n#- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 594, "all_permissive": false }
ansible_role
somcomunitats-coop/community-maps-provisioning
11f5ebac3de4374e8cf559ff0e2c7c0723151734
0
roles/nextjs
191
[ "no_license" ]
[ { "path": "roles/nextjs/tasks/main.yml", "content": "---\n- name: Install nextjs system requirements\n apt:\n pkg:\n - git\n - rsync\n\n- name: Ensure nextjs deploy folder exists\n file:\n path: \"{{ nextjs_deploy_path }}\"\n state: directory\n owner: \"{{ nextjs_sys_user }}\"\n g...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1708, "all_permissive": false }
ansible_role
somcomunitats-coop/community-maps-provisioning
11f5ebac3de4374e8cf559ff0e2c7c0723151734
0
roles/nginx
191
[ "no_license" ]
[ { "path": "roles/nginx/tasks/setup_ubuntu.yml", "content": "#\n# curl https://nginx.org/keys/nginx_signing.key | gpg --dearmor | sudo tee /usr/share/keyrings/nginx-archive-keyring.gpg >/dev/null\n# http://nginx.org/packages/ubuntu `lsb_release -cs` nginx\" | sudo tee /etc/apt/sources.list.d/nginx.list\n#\n#...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 17594, "all_permissive": false }
ansible_role
somcomunitats-coop/community-maps-provisioning
11f5ebac3de4374e8cf559ff0e2c7c0723151734
0
roles/nodejs
191
[ "no_license" ]
[ { "path": "roles/nodejs/tasks/setup-Debian.yml", "content": "---\n- name: Ensure dependencies are present.\n apt:\n name:\n - apt-transport-https\n - gnupg2\n state: present\n\n- name: nodejs, add signing key\n ansible.builtin.get_url:\n url: \"{{ nodejs_apt_gpg_key }}\"\n dest: /etc...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1798, "all_permissive": false }
ansible_role
somcomunitats-coop/community-maps-provisioning
11f5ebac3de4374e8cf559ff0e2c7c0723151734
0
roles/service
191
[ "no_license" ]
[ { "path": "roles/service/tasks/main.yml", "content": "---\n- name: Restart nextjs service\n service:\n name: \"{{ nextjs_service_name }}\"\n state: restarted\n\n- name: Check nextjs service is started\n service:\n name: \"{{ nextjs_service_name }}\"\n state: started\n enabled: true\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 232, "all_permissive": false }
ansible_role
SUSE/qe-sap-deployment
507e60b054e85032ac5fc1d6457f9800625a616b
7
ansible/playbooks/roles/hana_actions
191
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/hana_actions/tasks/main.yml", "content": "---\n- name: Prepare HANA Action - Dump cluster status (crm status)\n ansible.builtin.command: crm status\n become: true\n register: crm_initial\n changed_when: false\n\n- name: Prepare HANA Action - Assert this node is current...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 6684, "all_permissive": false }
ansible_role
SUSE/qe-sap-deployment
507e60b054e85032ac5fc1d6457f9800625a616b
7
ansible/playbooks/roles/hana_checks
191
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/hana_checks/tasks/main.yml", "content": "---\n- name: HANA check - Wait pacemaker up # noqa: command-instead-of-module - we keep systemctl to mimic openqa behaviour\n become: true\n ansible.builtin.command: systemctl --no-pager is-active pacemaker\n register: pm\n retr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1732, "all_permissive": false }
ansible_role
SUSE/qe-sap-deployment
507e60b054e85032ac5fc1d6457f9800625a616b
7
ansible/playbooks/roles/hana_prevalidate
191
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/hana_prevalidate/tasks/main.yaml", "content": "---\n- name: Wait until SSH is reachable\n ansible.builtin.wait_for_connection:\n timeout: 300\n delay: 5\n\n# Show SAPHanaSR-showAttr version and package\n- name: Locate SAPHanaSR-showAttr binary\n ansible.builtin.com...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1199, "all_permissive": false }
ansible_role
SUSE/qe-sap-deployment
507e60b054e85032ac5fc1d6457f9800625a616b
7
ansible/playbooks/roles/hana_secondary_actions
191
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/hana_secondary_actions/tasks/main.yml", "content": "---\n- name: Prepare secondary Action - Dump cluster status\n ansible.builtin.command: crm status\n become: true\n register: crm_initial\n changed_when: false\n\n- name: Prepare secondary Action - Assert this node is ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 7068, "all_permissive": false }
ansible_role
SUSE/qe-sap-deployment
507e60b054e85032ac5fc1d6457f9800625a616b
7
ansible/roles/qe_sap_storage
191
[ "no_license" ]
[ { "path": "ansible/roles/qe_sap_storage/defaults/main.yml", "content": "---\n\n# Important variables\n\nsap_storage_cloud_type: 'generic'\n# generic | az | aws\n\nsap_storage_sap_type: 'sap_onehost'\n# sap_onehost | sap_hana | sap_nw\n\nsap_storage_action: 'prepare'\n# prepare | remove\n\n\n# Azure variable...
{ "task_files": 9, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 11, "total_bytes": 14711, "all_permissive": false }
ansible_role
SUSE/qe-sap-deployment
507e60b054e85032ac5fc1d6457f9800625a616b
7
ansible/roles/sap_ha_install_hana_hsr
191
[ "no_license" ]
[ { "path": "ansible/roles/sap_ha_install_hana_hsr/tasks/run_backup.yml", "content": "---\n- name: \"SAP HSR - Run backup for SYSTEMDB\"\n shell: |\n /usr/sap/{{ sap_ha_install_hana_hsr_sid }}/SYS/exe/hdb/hdbsql \\\n -U {{ sap_ha_install_hana_hsr_hdbuserstore_system_backup_user }} \\\n -m <<EOF\n ...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 15567, "all_permissive": false }
ansible_role
SUSE/qe-sap-deployment
507e60b054e85032ac5fc1d6457f9800625a616b
7
ansible/roles/sap_hana_install
191
[ "no_license" ]
[ { "path": "ansible/roles/sap_hana_install/tasks/main.yml", "content": "---\n\n- name: Rename some variables used by hdblcm configfile\n ansible.builtin.set_fact:\n sap_hana_install_sid: \"{{ sap_hana_sid|d(sap_hana_install_sid)|d('') }}\"\n sap_hana_install_number: \"{{ sap_hana_instance_number|d(sap...
{ "task_files": 7, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 14, "total_bytes": 57893, "all_permissive": false }
ansible_role
prasathsaai/ansible
0493f24eb473bd293833015887efc760a4144ad7
0
roles/cart
191
[ "no_license" ]
[ { "path": "roles/cart/tasks/main.yml", "content": "# Calling a task from another role\n- name: NodeJS Configuration \n ansible.builtin.include_role:\n name: common\n tasks_from: nodejs # If we not mention this by default it calls main.yml file\n\n", "license_type": "no_license", "detected_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 231, "all_permissive": false }
ansible_role
prasathsaai/ansible
0493f24eb473bd293833015887efc760a4144ad7
0
roles/common
191
[ "no_license" ]
[ { "path": "roles/common/tasks/python.yml", "content": "- name: Installing Python \n ansible.builtin.yum:\n name: \n - python36 \n - gcc \n - python3-devel\n state: installed\n\n- name: Creating {{APPUSER}} for {{COMPONENT}}\n ansible.builtin.include_role:\n name: common\n tasks_...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 5306, "all_permissive": false }
ansible_role
prasathsaai/ansible
0493f24eb473bd293833015887efc760a4144ad7
0
roles/dispatch
191
[ "no_license" ]
[ { "path": "roles/dispatch/vars/main.yml", "content": "COMPONENT: dispatch\nAPPUSER: roboshop", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/dispatch/tasks/main.yml", "content": "- name: Golang Configuration for {{COMPONENT}}\n ansible.b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 155, "all_permissive": false }
ansible_role
prasathsaai/ansible
0493f24eb473bd293833015887efc760a4144ad7
0
roles/frontend
191
[ "no_license" ]
[ { "path": "roles/frontend/tasks/main.yml", "content": "- name: Installing Nginx\n ansible.builtin.package:\n name: nginx\n state: present\n\n- name: Downloading & Unzip the {{COMPONENT}} schema files\n ansible.builtin.include_role:\n name: common\n tasks_from: download-and-extract\n\n- name: C...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 892, "all_permissive": false }
ansible_role
prasathsaai/ansible
0493f24eb473bd293833015887efc760a4144ad7
0
roles/mongodb
191
[ "no_license" ]
[ { "path": "roles/mongodb/tasks/main.yml", "content": "- name: Coping {{COMPONENT}} Repo File\n ansible.builtin.copy:\n src: mongo.repo\n dest: /etc/yum.repos.d/mongodb.repo\n \n- name: Installing {{COMPONENT}} Server\n ansible.builtin.yum:\n name: mongodb-org\n state: present\n\n# - name: S...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1081, "all_permissive": false }
ansible_role
prasathsaai/ansible
0493f24eb473bd293833015887efc760a4144ad7
0
roles/mysql
191
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "- name: Coping MySQL Repo File\n ansible.builtin.copy:\n src: mysql.repo\n dest: /etc/yum.repos.d/mysql.repo\n\n- name: Installing {{COMPONENT}} server\n ansible.builtin.yum:\n name: \n - mysql-community-server\n - MySQL-python\n st...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2338, "all_permissive": false }
ansible_role
prasathsaai/ansible
0493f24eb473bd293833015887efc760a4144ad7
0
roles/payment
191
[ "no_license" ]
[ { "path": "roles/payment/tasks/main.yml", "content": "- name: Python Configuration\n ansible.builtin.include_role:\n name: common\n tasks_from: python", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 100, "all_permissive": false }
ansible_role
prasathsaai/ansible
0493f24eb473bd293833015887efc760a4144ad7
0
roles/rabbitmq
191
[ "no_license" ]
[ { "path": "roles/rabbitmq/tasks/main.yml", "content": "- name: Set Up Yum Repos\n ansible.builtin.shell: curl -s https://packagecloud.io/install/repositories/rabbitmq/rabbitmq-server/script.rpm.sh | sudo bash\n\n- name: Installing {{COMPONENT}} & Erlang\n ansible.builtin.yum:\n name: \n - https:/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1233, "all_permissive": false }
ansible_role
prasathsaai/ansible
0493f24eb473bd293833015887efc760a4144ad7
0
roles/redis
191
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yml", "content": "- name: Coping {{COMPONENT}} repo\n ansible.builtin.copy:\n src: redis.repo\n dest: /etc/yum.repos.d/redis.repo\n\n- name: Install {{COMPONENT}}\n ansible.builtin.package:\n name: redis-6.2.9\n state: present\n\n- name: Updating {{COMPONENT}}...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 676, "all_permissive": false }
ansible_role
mrshodaad/ansible
e01b611cd838ff9910266fbf01bbbb889960d359
0
roles/base
191
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "- name: add ssh key for s1m0ne\n tags: always\n ansible.posix.authorized_key:\n user: s1m0ne\n key: \"<KEY>\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 113 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 113, "all_permissive": false }
ansible_role
mrshodaad/ansible
e01b611cd838ff9910266fbf01bbbb889960d359
0
roles/web_servers
191
[ "no_license" ]
[ { "path": "roles/web_servers/tasks/main.yml", "content": "- name: install apache and php for Ubuntu servers\n tags: apache,apache2,ubuntu\n apt:\n name:\n - apache2\n - libapache2-mod-php\n state: latest\n when: ansible_distribution == \"Ubuntu\"\n\n\n- name: install apache and php for RH...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1114, "all_permissive": false }
ansible_role
dimik10/ceph_testing
ec6f944f9f72ac434c40ef48f47d2892281b34c4
0
netbackup_exporter/roles/netbackup_exporter
191
[ "no_license" ]
[ { "path": "netbackup_exporter/roles/netbackup_exporter/vars/main.yml", "content": "netbackup_exporter_container_image: \"docker pull dimik10/netbackup_exporter:latest\"\nnetbackup_exporter_port: 9101\ncontainer_binary: docker\nscrappingInterval: \"5m\"\napiKey: \"\"\nhost_nb: \"192.168.1.1\"\ndomainType: \"...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 3877, "all_permissive": false }
ansible_role
dimik10/ceph_testing
ec6f944f9f72ac434c40ef48f47d2892281b34c4
0
roles/ceph-testing
191
[ "no_license" ]
[ { "path": "roles/ceph-testing/templates/fill_ceph.sh.j2", "content": "#!/bin/bash\n\n\n#v 1.0\n#Скрипт для заполнение Ceph random данными\n\n#Объём ceph в Петебайтах (порог)\nA={{ porog }}\n#Узнаём объём места в ceph\nB=$(df -h | grep /mnt/{{ ceph_rw }} | awk '{print $4}' | rev | cut -c2- | rev)\n#Номер дир...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2549, "all_permissive": false }
ansible_role
dimik10/ceph_testing
ec6f944f9f72ac434c40ef48f47d2892281b34c4
0
roles/ceph-testing-nvme
191
[ "no_license" ]
[ { "path": "roles/ceph-testing-nvme/vars/main.yml", "content": "#Параметры для копирования и монтирования\n#Имя пользователя с правами на создание образов блочных устройств\nusername: \"client\"\n#Пул RBD в ceph. Его имя.\npool: \"rbd_nvme\"\n#Директория назначения, где будут хранится конфиги\ndst: \"/tmp/te...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3511, "all_permissive": false }
ansible_role
RobVerduijn/ipa_ad_setup_instructions
77f8f67629b94737c67836ccfd584d8ddcdff24c
0
roles/update_windows
191
[ "no_license" ]
[ { "path": "roles/update_windows/files/check_pending_reboot.ps1", "content": "function Test-PendingReboot {\n process {\n if (Get-Item -Path 'HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsUpdate\\Auto Update\\RebootRequired' -ErrorAction SilentlyContinue) { return $true }\n if (Get-ItemP...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3635, "all_permissive": false }
ansible_role
RobVerduijn/ipa_ad_setup_instructions
77f8f67629b94737c67836ccfd584d8ddcdff24c
0
roles/windows_common_configuration
191
[ "no_license" ]
[ { "path": "roles/windows_common_configuration/tasks/main.yml", "content": "---\n- name: Change the hostname to {{ inventory_hostname.split(\".\")[0] }}\n win_hostname:\n name: '{{ inventory_hostname.split(\".\")[0] }}'\n register: set_hostname\n\n- name: Reboot hostname change\n win_reboot:\n msg: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 749, "all_permissive": false }
ansible_role
RobVerduijn/ipa_ad_setup_instructions
77f8f67629b94737c67836ccfd584d8ddcdff24c
0
roles/windows_domain_configuration
191
[ "no_license" ]
[ { "path": "roles/windows_domain_configuration/tasks/main.yml", "content": "---\n- name: Install AD Services feature\n win_feature:\n name: AD-Domain-Services\n include_management_tools: 'yes'\n include_sub_features: 'yes'\n state: present\n\n- name: Create new forest\n win_domain:\n dns_dom...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 664, "all_permissive": false }
ansible_role
umeshk20/observability-stack
6643658d389792913636ee962e22d8086a534a72
0
roles/observability_stack
191
[ "no_license" ]
[ { "path": "roles/observability_stack/vars/main.j2", "content": "global:\n scrape_interval: 10s\n\nscrape_configs:\n - job_name: 'prometheus_master'\n scrape_interval: 5s\n static_configs:\n - targets: ['{{hostname}}:9090']\n - job_name: 'node_exporter_centos'\n scrape_interval: 5s\n stat...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 7650, "all_permissive": false }
ansible_role
abarbare/ansible-meetup-solutions
5b85e4303a357997c41297d3f623d590a02cecb6
1
solution_devops_app/roles/deploy_app
192
[ "no_license" ]
[ { "path": "solution_devops_app/roles/deploy_app/tasks/main.yml", "content": "---\n- name: install git\n apt:\n name: git\n update_cache: yes\n state: present\n\n- name: deploy devops app from github\n git:\n repo: https://github.com/antoineHC/ansible-meetup-app\n dest: /usr/share/nginx/html...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 487, "all_permissive": false }
ansible_role
abarbare/ansible-meetup-solutions
5b85e4303a357997c41297d3f623d590a02cecb6
1
solution_devops_app/roles/nginx_install
192
[ "no_license" ]
[ { "path": "solution_devops_app/roles/nginx_install/tasks/main.yml", "content": "---\n- name: Install nginx daemon\n apt:\n name: nginx \n state: present \n update_cache: yes\n\n- name: Start nginx and enable it at boot\n systemd:\n name: nginx \n state: started\n enabled: yes\n", "li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 206, "all_permissive": false }
ansible_role
abarbare/ansible-meetup-solutions
5b85e4303a357997c41297d3f623d590a02cecb6
1
solution_devops_app/roles/scaleway_vm
192
[ "no_license" ]
[ { "path": "solution_devops_app/roles/scaleway_vm/tasks/main.yaml", "content": "---\n\n- name: deploy ssh key to scaleway \n scaleway_sshkey:\n ssh_pub_key: \"<KEY>\"\n state: present\n\n- name: create a scaleway server\n scaleway_compute:\n name: scw-ansible2\n state: running\n image: e2053...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 373, "all_permissive": false }
ansible_role
abarbare/ansible-meetup-solutions
5b85e4303a357997c41297d3f623d590a02cecb6
1
solution_wordpress/roles/mysql_install
192
[ "no_license" ]
[ { "path": "solution_wordpress/roles/mysql_install/tasks/main.yml", "content": "---\n- name: Install MySQL \n apt:\n name: mysql-server\n state: present \n update_cache: yes\n\n- name: Install MySQL python\n apt:\n name: python-mysqldb\n state: present \n update_cache: yes\n\n- name: Enab...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 703, "all_permissive": false }
ansible_role
abarbare/ansible-meetup-solutions
5b85e4303a357997c41297d3f623d590a02cecb6
1
solution_wordpress/roles/nginx_install
192
[ "no_license" ]
[ { "path": "solution_wordpress/roles/nginx_install/handlers/main.yml", "content": "---\n- name: restart nginx\n systemd: \n name: nginx\n state: restarted\n listen: restart nginx\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 99 }, { "path": "solution_wor...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 570, "all_permissive": false }
ansible_role
abarbare/ansible-meetup-solutions
5b85e4303a357997c41297d3f623d590a02cecb6
1
solution_wordpress/roles/scaleway_vm
192
[ "no_license" ]
[ { "path": "solution_wordpress/roles/scaleway_vm/tasks/main.yaml", "content": "---\n\n- name: Create front, middle, back scaleway servers\n scaleway_compute:\n name: \"{{ item }}\"\n state: \"{{ state }}\"\n image: \"{{ image }}\"\n organization: \"{{ organization }}\"\n region: \"{{ location...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 335, "all_permissive": false }
ansible_role
abarbare/ansible-meetup-solutions
5b85e4303a357997c41297d3f623d590a02cecb6
1
solution_wordpress/roles/wordpress_install
192
[ "no_license" ]
[ { "path": "solution_wordpress/roles/wordpress_install/handlers/main.yml", "content": "---\n- name: restart php-fpm\n systemd: \n name: php7.0-fpm \n state: restarted\n listen: restart php-fpm\n \n- name: restart nginx\n systemd: \n name: nginx\n state: restarted\n listen: restart nginx", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1980, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/aws_postfix
192
[ "no_license" ]
[ { "path": "ansible/roles/aws_postfix/templates/main.cf.j2", "content": "# See /usr/share/postfix/main.cf.dist for a commented, more complete version\n\n\n# Debian specific: Specifying a file name will cause the first\n# line of that file to be used as the name. The Debian default\n# is /etc/mailname.\n#my...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4015, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/common
192
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n\n- name: Install packages\n apt: >-\n pkg=\"{{ item }}\" state=present update_cache=yes\n with_items:\n - make\n - curl\n - sysstat\n - python-httplib2\n - python-psutil\n - ntp\n - munin-node\n - munin-plugins-e...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 7757, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/common_php
192
[ "no_license" ]
[ { "path": "ansible/roles/common_php/handlers/main.yml", "content": "---\n\n- name: reload php\n service: name=php5-fpm state=reloaded\n\n- name: restart php\n service: name=php5-fpm state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 126 }, { "path"...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 5970, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/common_web
192
[ "no_license" ]
[ { "path": "ansible/roles/common_web/defaults/main.yml", "content": "---\n\nnginx_log_level: notice\nnginx_rotate_days: 14\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 }, { "path": "ansible/roles/common_web/templates/etc_nginx_sites-available_status.j2", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 4716, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/ec2_swapper
192
[ "no_license" ]
[ { "path": "ansible/roles/ec2_swapper/tasks/needs_swap.yml", "content": "---\n\n## Tasks that are only run when the system does not yet have swap activated.\n#\n\n# EC2 Instance Store volumes are only created and managed for instance types\n# that have Instance Store volumes. (Which excludes t2 and m4.)\n# ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1530, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/elastichq
192
[ "no_license" ]
[ { "path": "ansible/roles/elastichq/files/install-elastichq.sh", "content": "#!/bin/bash\n\nLOG=/tmp/install_elastichq.log\n\necho \"Installing ElasticHQ\" > $LOG\n\nset -e\n\n\ncd $HOME\n\necho \"In $HOME ...\" >> $LOG\n\nexport PYENV_ROOT=\"$HOME/.pyenv\"\nexport PATH=\"$PYENV_ROOT/bin:$PATH\"\nexport PYEN...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3653, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/elasticsearch
192
[ "no_license" ]
[ { "path": "ansible/roles/elasticsearch/templates/elasticsearch.yml.j2", "content": "# ======================== Elasticsearch Configuration =========================\r\n#\r\n# NOTE: Elasticsearch comes with reasonable defaults for most settings.\r\n# Before you set out to tweak and tune the configurati...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 8175, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/geocoder
192
[ "no_license" ]
[ { "path": "ansible/roles/geocoder/defaults/main.yml", "content": "---\n\ntwofishes_version: \"0.84.9\"\ntwofishes_jar_name: \"server-assembly-{{ twofishes_version }}.jar\"\ntwofishes_index_base: \"2015-03-05\"\ntwofishes_index_archive: \"{{ twofishes_index_base }}.zip\"\n", "license_type": "no_license",...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 4934, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/ingestion
192
[ "no_license" ]
[ { "path": "ansible/roles/ingestion/tasks/main.yml", "content": "---\n\n- name: Make sure that the \"ingestion\" user exists\n user:\n name: ingestion\n comment: \"DPLA ingestion user\"\n home: /home/ingestion\n shell: /bin/bash\n state: present\n\n- name: Ensure existence of /v1\n file: pat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1729, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/jenkins
192
[ "no_license" ]
[ { "path": "ansible/roles/jenkins/tasks/main.yml", "content": "---\n\n- name: Ensure Java 8 runtime and 'daemon' installations\n # Java 8 is available on Ubuntu 16.04 LTS (xenial), not 14.04 LTS (trusty)\n apt:\n pkg: \"{{ item }}\"\n state: present\n update_cache: yes\n with_items:\n - openjd...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 5468, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/loadbalancer
192
[ "no_license" ]
[ { "path": "ansible/roles/loadbalancer/tasks/main.yml", "content": "---\n\n- name: Ensure that the PPA repository vbernat/haproxy-1.6 is registered\n apt_repository: repo='ppa:vbernat/haproxy-1.6' state=present update_cache=yes\n\n- name: Install packages\n apt: >-\n pkg=\"{{ item }}\" state=present\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3172, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/memcached
192
[ "no_license" ]
[ { "path": "ansible/roles/memcached/templates/etc_munin_plugin_conf_d_zzz-memcached.j2", "content": "[memcached*]\n env.host {{ hostvars[inventory_hostname][internal_network_interface]['ipv4']['address'] }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 108 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1275, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/monitoring_web
192
[ "no_license" ]
[ { "path": "ansible/roles/monitoring_web/defaults/main.yml", "content": "---\n\nmonitoring_http_port: 80\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "ansible/roles/monitoring_web/templates/etc_nginx_sites-available_monitoring.j2", "content"...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1611, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/munin_master
192
[ "no_license" ]
[ { "path": "ansible/roles/munin_master/tasks/main.yml", "content": "---\n\n- name: Ensure existence of munin package\n apt: package=munin state=present\n tags:\n - munin_master\n - packages\n\n- name: Ensure state of munin master configuration file\n template: >\n src=munin.conf.j2\n dest=...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3640, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/postgresql
192
[ "no_license" ]
[ { "path": "ansible/roles/postgresql/handlers/main.yml", "content": "---\n\n- name: restart postgresql\n service: name=postgresql state=restarted\n\n- name: restart munin-node\n service: name=munin-node state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 146...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 8289, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/pss
192
[ "no_license" ]
[ { "path": "ansible/roles/pss/templates/etc_nginx_sites-available_pss.j2", "content": "\nupstream pss_app_server {\n server unix:/srv/www/pss/tmp/unicorn_pss.sock fail_timeout=0;\n}\n\nserver {\n\n listen {{ pss_app_port }};\n\n server_name {{ pss_hostname }};\n\n # To accommodate large file uplo...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 13, "total_bytes": 15998, "all_permissive": false }
ansible_role
dpla-attic/automation
689f77d1c00840f27a710c8c9163372aa7d42899
9
ansible/roles/site_proxy
192
[ "no_license" ]
[ { "path": "ansible/roles/site_proxy/defaults/main.yml", "content": "---\n\nsiteproxy_503_message: >-\n This part of the site is temporarily unavailable. Please check back\n in a few minutes!\n\n# Sizes of NGINX shared memory zones for storing states of requests and\n# connections, for rate limiting.\n# S...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 10940, "all_permissive": false }
ansible_role
DestinyObs/springboot-devops-practice
8000d6bedb97f62206024e55156765b805be3fe6
0
devops/ansible/roles/common
192
[ "no_license" ]
[ { "path": "devops/ansible/roles/common/tasks/main.yml", "content": "---\r\n# Common system setup tasks\r\n\r\n- name: Update apt package cache\r\n apt:\r\n update_cache: yes\r\n cache_valid_time: 3600\r\n\r\n- name: Install essential packages\r\n apt:\r\n name:\r\n - curl\r\n - wget\r\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1405, "all_permissive": false }
ansible_role
DestinyObs/springboot-devops-practice
8000d6bedb97f62206024e55156765b805be3fe6
0
devops/ansible/roles/docker
192
[ "no_license" ]
[ { "path": "devops/ansible/roles/docker/tasks/main.yml", "content": "---\r\n# Docker installation and configuration\r\n\r\n- name: Remove old Docker packages\r\n apt:\r\n name:\r\n - docker\r\n - docker-engine\r\n - docker.io\r\n - containerd\r\n - runc\r\n state: absent\r\n\r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1900, "all_permissive": false }
ansible_role
DestinyObs/springboot-devops-practice
8000d6bedb97f62206024e55156765b805be3fe6
0
devops/ansible/roles/java
192
[ "no_license" ]
[ { "path": "devops/ansible/roles/java/tasks/main.yml", "content": "---\r\n# Java installation and configuration\r\n\r\n- name: Install OpenJDK {{ java_version }}\r\n apt:\r\n name: \"openjdk-{{ java_version }}-jdk\"\r\n state: present\r\n update_cache: yes\r\n\r\n- name: Set JAVA_HOME environment v...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 826, "all_permissive": false }
ansible_role
DestinyObs/springboot-devops-practice
8000d6bedb97f62206024e55156765b805be3fe6
0
devops/ansible/roles/jenkins
192
[ "no_license" ]
[ { "path": "devops/ansible/roles/jenkins/tasks/main.yml", "content": "---\r\n# Jenkins installation and configuration\r\n\r\n- name: Add Jenkins GPG key\r\n apt_key:\r\n url: https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key\r\n state: present\r\n\r\n- name: Add Jenkins repository\r\n apt_repo...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1504, "all_permissive": false }
ansible_role
DestinyObs/springboot-devops-practice
8000d6bedb97f62206024e55156765b805be3fe6
0
devops/ansible/roles/maven
192
[ "no_license" ]
[ { "path": "devops/ansible/roles/maven/tasks/main.yml", "content": "---\r\n# Maven installation and configuration\r\n\r\n- name: Download Maven\r\n get_url:\r\n url: \"https://archive.apache.org/dist/maven/maven-3/{{ maven_version }}/binaries/apache-maven-{{ maven_version }}-bin.tar.gz\"\r\n dest: \"/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1809, "all_permissive": false }
ansible_role
hiro-okumura/raisetech-aws
f3d78c646aca6073686b5faf47ca7e5b47c6f13f
0
lecture13/Lecture13-Ansible/ansible/roles/app_server
192
[ "no_license" ]
[ { "path": "lecture13/Lecture13-Ansible/ansible/roles/app_server/tasks/main.yml", "content": "- name: Bundle Install\n ansible.builtin.shell: bash -lc \"bundle install\"\n args:\n chdir: \"{{ app_dir }}\"\n\n- name: Set application.rb.j2 Template\n ansible.builtin.template:\n src: application.rb.j2\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1330, "all_permissive": false }
ansible_role
hiro-okumura/raisetech-aws
f3d78c646aca6073686b5faf47ca7e5b47c6f13f
0
lecture13/Lecture13-Ansible/ansible/roles/database
192
[ "no_license" ]
[ { "path": "lecture13/Lecture13-Ansible/ansible/roles/database/tasks/main.yml", "content": "- name: Uninstall MariaDB\n become_user: root\n ansible.builtin.yum:\n name: mariadb-*\n state: absent\n\n- name: Install MySQL rpm Repository\n become_user: root\n ansible.builtin.yum:\n name: \"https://...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 858, "all_permissive": false }
ansible_role
hiro-okumura/raisetech-aws
f3d78c646aca6073686b5faf47ca7e5b47c6f13f
0
lecture13/Lecture13-Ansible/ansible/roles/nodejs
192
[ "no_license" ]
[ { "path": "lecture13/Lecture13-Ansible/ansible/roles/nodejs/tasks/main.yml", "content": "- name: check If nvm is Installed\n ansible.builtin.shell: bash -lc \"nvm -v\"\n register: nvm_exists\n changed_when: false\n ignore_errors: true\n\n- name: Install nvm If Not Present\n ansible.builtin.shell: >\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1385, "all_permissive": false }
ansible_role
hiro-okumura/raisetech-aws
f3d78c646aca6073686b5faf47ca7e5b47c6f13f
0
lecture13/Lecture13-Ansible/ansible/roles/rbenv
192
[ "no_license" ]
[ { "path": "lecture13/Lecture13-Ansible/ansible/roles/rbenv/tasks/main.yml", "content": "- name: Check If rbenv is Installed\n ansible.builtin.shell: bash -lc \"rbenv -v\"\n register: rbenv_exists\n changed_when: false\n ignore_errors: true\n\n- name: Clone rbenv If Not Present\n ansible.builtin.git:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2330, "all_permissive": false }
ansible_role
hiro-okumura/raisetech-aws
f3d78c646aca6073686b5faf47ca7e5b47c6f13f
0
lecture13/Lecture13-Ansible/ansible/roles/web_server
192
[ "no_license" ]
[ { "path": "lecture13/Lecture13-Ansible/ansible/roles/web_server/tasks/main.yml", "content": "- name: Check If Nginx1 is Installed\n ansible.builtin.shell: \"amazon-linux-extras list\"\n register: amazon_linux_extras_list\n changed_when: false\n\n- name: Enable to Install Nginx1\n become_user: root\n an...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3079, "all_permissive": false }
ansible_role
hiro-okumura/raisetech-aws
f3d78c646aca6073686b5faf47ca7e5b47c6f13f
0
lecture13/Lecture13-Ansible/ansible/roles/yum
192
[ "no_license" ]
[ { "path": "lecture13/Lecture13-Ansible/ansible/roles/yum/tasks/main.yml", "content": "- name: Update yum\n become_user: root\n ansible.builtin.yum:\n name: \"*\"\n state: latest\n\n- name: Install Git\n become_user: root\n ansible.builtin.yum:\n name: git\n state: present\n lock_timeout: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 508, "all_permissive": false }
ansible_role
swapnabombai/roboshop-ansible
89ed65f61853b608303d3fb778df200a5c441b21
0
roles/common
192
[ "no_license" ]
[ { "path": "roles/common/tasks/mysql_schema_setup.yml", "content": "\n\n- name: install mysql client\n ansible.builtin.yum:\n name: mysql\n state: installed\n\n- name: load schema\n ansible.builtin.shell: mysql -h mysql-dev.robogame.store -uroot -pRoboShop@1 < /app/schema/{{component}}.sql\n", "l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 223, "all_permissive": false }
ansible_role
richgoldd/ansible_projects
c2a2b179e31576c1f6c7c3682c3dbb0180db15dc
0
roles/devapp
192
[ "no_license" ]
[ { "path": "roles/devapp/handlers/main.yml", "content": "---\n# handlers file for devapp\n- name: restart apache\n service: name=httpd state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 92 }, { "path": "roles/devapp/tests/test.yml", "content": "-...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 1638, "all_permissive": false }
ansible_role
ttakamura/ansible-chainer-ubuntu
37760ccc2c82d912b64840d6f1ecd883d6e66c7e
0
roles/chainer
192
[ "no_license" ]
[ { "path": "roles/chainer/tasks/main.yml", "content": "---\n- name: Create ubuntu user\n user:\n name: ubuntu\n password: \"{{ <PASSWORD>|password_hash('<PASSWORD>') }}\"\n groups: sudo\n append: yes\n\n- name: Setup bashrc\n template:\n src: home/ubuntu/dot_bashrc\n dest: /home/ubuntu/.b...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2959, "all_permissive": false }
ansible_role
sharif-elshobkshy/Coders
1d353e8e055c1fdc40c1126407d665801b52303b
0
appdock/provision/roles/boilerplate-main-local
192
[ "no_license" ]
[ { "path": "appdock/provision/roles/boilerplate-main-local/tasks/main.yml", "content": "---\n\n- include: bootstrap.yml\n tags:\n - bootstrap\n when: PROVISION_CONTEXT == \"local\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 91 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 91, "all_permissive": false }
ansible_role
HodakaShigemi/zabbix_api
abd5881b6153b2e9a891280678ead37cdc44b07c
0
ansible/roles/common
192
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: users exist\n user: name={{item.name}} state=present password={{<PASSWORD>}} groups={{item.groups}}\n with_items: users\n tags: users\n\n- name: ~/.ssh for users exist\n file: path=\"/home/{{item.name}}/.ssh\" state=directory owne...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 535, "all_permissive": false }
ansible_role
HodakaShigemi/zabbix_api
abd5881b6153b2e9a891280678ead37cdc44b07c
0
ansible/roles/dbserver
192
[ "no_license" ]
[ { "path": "ansible/roles/dbserver/tasks/main.yml", "content": "---\n- name: confirm installed mysql staff\n yum: name={{ item }} state=present\n with_items:\n - MySQL-python\n - mysql-server\n\n- name: start mysqld\n service: name=mysqld state=started enabled=yes\n\n- name: build database for zabbi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 913, "all_permissive": false }
ansible_role
HodakaShigemi/zabbix_api
abd5881b6153b2e9a891280678ead37cdc44b07c
0
ansible/roles/reportserver
192
[ "no_license" ]
[ { "path": "ansible/roles/reportserver/tasks/main.yml", "content": "- name: be sure Python3.4.3 is not installed\n command: ls -l /opt/bin/python3.4 creates=/opt/bin/python3.4\n ignore_errors: True\n register: ck_python3\n\n- name: be sure epel repository is installed\n yum: name={{ item }} state=install...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3012, "all_permissive": false }
ansible_role
HodakaShigemi/zabbix_api
abd5881b6153b2e9a891280678ead37cdc44b07c
0
ansible/roles/webserver
192
[ "no_license" ]
[ { "path": "ansible/roles/webserver/tasks/main.yml", "content": "---\n- name: install zabbix repository\n yum: name=http://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm state=installed\n\n- name: be sure dependencies for selinux configuration are installed\n yum: name={{ item...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1459, "all_permissive": false }
ansible_role
HodakaShigemi/zabbix_api
abd5881b6153b2e9a891280678ead37cdc44b07c
0
ansible/roles/zabbix-agent
192
[ "no_license" ]
[ { "path": "ansible/roles/zabbix-agent/tasks/main.yml", "content": "---\n- name: install zabbix repository\n yum: name=http://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm state=installed\n\n- name: diable zabbix repo\n replace: dest=/etc/yum.repos.d/zabbix.repo regexp='enabl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1033, "all_permissive": false }
ansible_role
HodakaShigemi/zabbix_api
abd5881b6153b2e9a891280678ead37cdc44b07c
0
ansible/roles/zabbix-server
192
[ "no_license" ]
[ { "path": "ansible/roles/zabbix-server/tasks/main.yml", "content": "---\n- name: install zabbix repository\n yum: name=http://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm state=installed\n\n- name: diable zabbix repo\n replace: dest=/etc/yum.repos.d/zabbix.repo regexp='enab...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1648, "all_permissive": false }
ansible_role
catzaza/Kubernetes
cae269b9022569b4c4d983dfd5614a7d1b0f6008
0
ansible/roles/k8s-rolling-update
192
[ "no_license" ]
[ { "path": "ansible/roles/k8s-rolling-update/tasks/ubuntu.yml", "content": "---\n- name: Unhold kubeadm\n dpkg_selections:\n name: kubeadm\n selection: install\n\n- name: Upgrade kubeadm\n apt:\n name: kubeadm=1.24.1-00\n state: present\n update_cache: true\n cache_valid_time: 3600\n f...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3529, "all_permissive": false }
ansible_role
techylinux/role_kafka
bf3c4f39ca9cdf012d58fe81d8b269c052ac54a6
0
roles/kafka
192
[ "no_license" ]
[ { "path": "roles/kafka/handlers/main.yml", "content": "---\n - name: reload systemd daemon\n systemd:\n name: kafka.service\n daemon_reload: yes\n\n - name: start kafka service\n systemd:\n name: kafka.service\n state: restarted\n enabled: yes\n", "license_type": "no_lic...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 3437, "all_permissive": false }
ansible_role
techylinux/role_kafka
bf3c4f39ca9cdf012d58fe81d8b269c052ac54a6
0
roles/zk
192
[ "no_license" ]
[ { "path": "roles/zk/templates/zookeeper.service.j2", "content": "[Unit]\nRequires=network.target remote-fs.target\nAfter=network.target remote-fs.target\n\n[Service]\nType=simple\nExecStart= '{{ kafka_install_parent_dir }}'/kafka/bin/zookeeper-server-start.sh '{{ kafka_install_parent_dir }}'/kafka/config/zo...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 3287, "all_permissive": false }
ansible_role
PavanKalyan49r/roboansiroles
64105e2ec9572127e74d210f03cc49eb9fe395ad
0
roles/common
183
[ "no_license" ]
[ { "path": "roles/common/tasks/python.yaml", "content": "- name: install python packages\n ansible.builtin.package:\n name: \"{{item}}\"\n state: present\n loop:\n - python36\n - gcc\n - python3-devel\n\n- name: install dependence\n ansible.builtin.command: pip3.6 install -r requirements.txt\n a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 259, "all_permissive": false }
ansible_role
abdulg/ansible-common-roles
aa7ef0c58fda79fff8ce63b3008d1a7a077692e2
0
roles/common
183
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: A common task\n command: echo common task\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 50 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 50, "all_permissive": false }
ansible_role
abdulg/ansible-common-roles
aa7ef0c58fda79fff8ce63b3008d1a7a077692e2
0
roles/role1
183
[ "no_license" ]
[ { "path": "roles/role1/tasks/main.yml", "content": "- name: A role1 task\n command: echo role1 task\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 48 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 48, "all_permissive": false }
ansible_role
abdulg/ansible-common-roles
aa7ef0c58fda79fff8ce63b3008d1a7a077692e2
0
roles/role2
183
[ "no_license" ]
[ { "path": "roles/role2/tasks/main.yml", "content": "- name: A role2 task\n command: echo role2 task\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 48 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 48, "all_permissive": false }
ansible_role
Ianaraaraujo/playbook-linux
aa59526a12874e140af50b6c9184d490759879d2
2
roles/docker
183
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: GPG Key\n become: yes\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n- name: Adicionar repositório docker\n become: yes\n apt_repository:\n repo: deb https://download.docker.com/linux/ubuntu bi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 743, "all_permissive": false }
ansible_role
Ianaraaraujo/playbook-linux
aa59526a12874e140af50b6c9184d490759879d2
2
roles/git
183
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "---\n- name: Update all packages\n become: yes\n apt:\n upgrade: dist\n\n- name: Install git\n become: yes\n apt: \n name: git\n state: latest\n\n- name: Config git user\n git_config:\n name: \"{{ item.name }}\"\n value: \"{{ item.value }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 382, "all_permissive": false }
ansible_role
Ianaraaraujo/playbook-linux
aa59526a12874e140af50b6c9184d490759879d2
2
roles/kubernetes
183
[ "no_license" ]
[ { "path": "roles/kubernetes/tasks/main.yml", "content": "---\n- name: Adicionar chave de assinatura apt para kubernetes\n become: yes\n apt_key:\n url: https://packages.cloud.google.com/apt/doc/apt-key.gpg\n state: present \n\n- name: Adicionar repositório apt para kubernetes\n become: yes\n apt_r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 540, "all_permissive": false }
ansible_role
Ianaraaraujo/playbook-linux
aa59526a12874e140af50b6c9184d490759879d2
2
roles/nvm
183
[ "no_license" ]
[ { "path": "roles/nvm/tasks/main.yml", "content": "---\n- name: Caminho do binário do nvm\n stat: \"path={{ path_user }}/nvm\"\n register: nvm_binary\n\n- name: Caminho de instalação do nvm\n command: 'mkdir {{ path_user }}/nvm'\n when: nvm_binary.stat.exists == false\n\n- name: Download do script de ins...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 955, "all_permissive": false }
ansible_role
Ianaraaraujo/playbook-linux
aa59526a12874e140af50b6c9184d490759879d2
2
roles/pacotes
183
[ "no_license" ]
[ { "path": "roles/pacotes/tasks/main.yml", "content": "---\n- name: Update dos pacotes linux\n become: yes\n apt:\n update_cache: true\n force_apt_get: true\n\n- name: Instalação de pacotes e dependencias\n become: yes\n apt: \"name={{ apps }} state=latest\"\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 203, "all_permissive": false }
ansible_role
Ianaraaraujo/playbook-linux
aa59526a12874e140af50b6c9184d490759879d2
2
roles/pyenv
183
[ "no_license" ]
[ { "path": "roles/pyenv/tasks/main.yml", "content": "--- \n- name: Instalação dos binários pyenv e virtualenv\n git:\n repo: \"{{ item.repo }}\"\n dest: \"{{ item.dest }}\"\n with_items:\n - repo: git://github.com/yyuu/pyenv.git\n dest: ~/.pyenv\n - repo: git://github.com/yyuu/pyenv-virtua...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 734, "all_permissive": false }
ansible_role
Ianaraaraujo/playbook-linux
aa59526a12874e140af50b6c9184d490759879d2
2
roles/terraform
183
[ "no_license" ]
[ { "path": "roles/terraform/tasks/main.yml", "content": "---\n- name: Instalação do Terraform v1.0.10\n become: yes\n unarchive:\n src: https://releases.hashicorp.com/terraform/1.0.10/terraform_1.0.10_linux_amd64.zip\n dest: /usr/local/bin/\n remote_src: yes", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 206, "all_permissive": false }
ansible_role
hanasuke/DB-vms
b9936cfba5d8dfa9cc2ffde240d58b01716c497b
0
roles/common
183
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: update yum\n yum: name=* state=latest\n\n- name: set path to sudo users\n replace: >\n dest=/etc/sudoers\n regexp=\"^Defaults secure_path = /sbin:/bin:/usr/sbin:/usr/bin$\"\n replace=\"Defaults secure_path = /sbin:/bin:/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 461, "all_permissive": false }
ansible_role
hanasuke/DB-vms
b9936cfba5d8dfa9cc2ffde240d58b01716c497b
0
roles/postgresql
183
[ "no_license" ]
[ { "path": "roles/postgresql/tasks/create.yml", "content": "---\n- name: create role\n postgresql_db:\n name: \"vagrant\"\n encoding: \"UTF-8\"\n login_user: postgres\n sudo_user: postgres\n sudo: yes\n\n- name: create role\n postgresql_user:\n db: \"vagrant\"\n name: \"vagrant\"\n stat...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1660, "all_permissive": false }
ansible_role
hanasuke/DB-vms
b9936cfba5d8dfa9cc2ffde240d58b01716c497b
0
roles/redis
183
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yml", "content": "---\n- include: init.yml\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/redis/tasks/init.yml", "content": "---\n- name: install redis from remi\n yum:\n name: redis...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 368, "all_permissive": false }
ansible_role
luirro777/nextcloud_local
8bd07fba278a2c1e667a91ebcace4311faae18a6
0
roles/apache
183
[ "no_license" ]
[ { "path": "roles/apache/defaults/main.yml", "content": "---\n\napache_packages:\n - apache2\n - apache2-utils\n - libapache2-mod-php\n - libapache2-mod-php7.3\n\n\napache_mods_enabled:\n - rewrite\n - headers\n - env\n - dir\n - mime\n\napache_daemon: apache2\napache_daemon_path: /usr/sbin/\napache...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2467, "all_permissive": false }
ansible_role
luirro777/nextcloud_local
8bd07fba278a2c1e667a91ebcace4311faae18a6
0
roles/mysql
183
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n\n - name: Install mysql packages\n apt: name={{ item }} state=present update_cache=yes\n with_items: \"{{ mysql_packages }}\"\n\n - name: include tasks about limits\n include_tasks: limits.yml\n\n - name: Copy configuration file\n# template: ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2465, "all_permissive": false }
ansible_role
luirro777/nextcloud_local
8bd07fba278a2c1e667a91ebcace4311faae18a6
0
roles/nextcloud
183
[ "no_license" ]
[ { "path": "roles/nextcloud/templates/config.php.j2", "content": "<?php\n$CONFIG = [\n'instanceid' => '',\n'passwordsalt' => '',\n'trusted_domains' =>\n [\n \"{{ nc_domain }}\",\n \"{{ nc_ip }}\" \n ],\n'datadirectory' => \"{{ nc_datadirectory }}\",\n'version' => '',\n'dbtype' => \"{{ nc_dbtype }...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2865, "all_permissive": false }