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 | marcodemoja/ansible-centos65-lamp | 113020f9825d25a848c70d55f9d762717a2d1692 | 0 | roles/db | 153 | [
"no_license"
] | [
{
"path": "roles/db/tasks/main.yml",
"content": "---\n# This playbook will install mysql and create db user and give permissions.\n\n- name: Install Mysql package\n yum: name={{ item }} state=installed\n with_items:\n - mysql-server\n - MySQL-python\n - libselinux-python\n - libsemanage-python\n\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 569,
"all_permissive": false
} |
ansible_role | marcodemoja/ansible-centos65-lamp | 113020f9825d25a848c70d55f9d762717a2d1692 | 0 | roles/samba | 153 | [
"no_license"
] | [
{
"path": "roles/samba/meta/main.yml",
"content": "---\ndependencies: []\n\ngalaxy_info:\n author: geerlingguy\n description: Samba for RHEL/CentOS 6.x.\n company: \"Midwestern Mac, LLC\"\n license: \"license (BSD, MIT)\"\n min_ansible_version: 1.4\n platforms:\n - name: EL\n versions:\n - 6\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1092,
"all_permissive": false
} |
ansible_role | marcodemoja/ansible-centos65-lamp | 113020f9825d25a848c70d55f9d762717a2d1692 | 0 | roles/web | 153 | [
"no_license"
] | [
{
"path": "roles/web/templates/vhosts.conf.j2",
"content": "<VirtualHost *:80>\n DocumentRoot \"/var/www/vhosts\"\n ServerName cloudxp\n</VirtualHost>\n<VirtualHost *:80>\n DocumentRoot \"/var/www/vhosts/test.wp.lcl\"\n ServerName test.wp.lcl\n</VirtualHost>\n<VirtualHost *:80>\n DocumentRoot... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1296,
"all_permissive": false
} |
ansible_role | madson7/ansible-roles-templates | a0a5e024d4a367490a1503e35e48584ad28ecabe | 0 | roles/common | 151 | [
"no_license"
] | [
{
"path": "roles/common/tasks/pre-tasks.yml",
"content": "---\n# tasks file for role/common\n\n- name: \"install_task | Update repositories cache\"\n apt:\n update_cache: yes\n when: ansible_os_family == \"Debian\"\n\n- name: \"install_task | Update all packages to their latest version\"\n apt:\n n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 418,
"all_permissive": false
} |
ansible_role | madson7/ansible-roles-templates | a0a5e024d4a367490a1503e35e48584ad28ecabe | 0 | roles/docker | 151 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/docker.yml",
"content": "---\n# tasks file for role/docker\n\n- name: Instalar o Docker\n become: true\n apt:\n name: docker.io\n state: present\n\n- name: Iniciar o serviço Docker\n become: true\n systemd:\n name: docker\n enabled: yes\n state: started\n\n- ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 399,
"all_permissive": false
} |
ansible_role | madson7/ansible-roles-templates | a0a5e024d4a367490a1503e35e48584ad28ecabe | 0 | roles/proxy | 151 | [
"no_license"
] | [
{
"path": "roles/proxy/tasks/proxy.yml",
"content": "---\n# tasks file for role/proxy\n- name: Copiar o arquivo de configuração\n copy:\n src: ./file/grafana.conf\n # src: grafana.conf\n dest: /etc/nginx/nginx.conf\n notify:\n - restart nginx\n\n- name: Reiniciar o Nginx\n service:\n name:... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 585,
"all_permissive": false
} |
ansible_role | xuxiaodong/v2ray-for-ansible | 462e26645bc3fb5b05ca67b5019b5baf29dcf4f0 | 40 | roles/certbot | 151 | [
"no_license"
] | [
{
"path": "roles/certbot/templates/cli.ini.j2",
"content": "email = {{ email }}\ndomains = {{ domains | join(', ') }}\nrsa-key-size = 4096\nnoninteractive = True\nkeep = True\nexpand = True\nagree-tos = True\npre-hook = systemctl stop nginx\npost-hook = systemctl start nginx\nauthenticator = standalone\n#in... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 754,
"all_permissive": false
} |
ansible_role | xuxiaodong/v2ray-for-ansible | 462e26645bc3fb5b05ca67b5019b5baf29dcf4f0 | 40 | roles/nginx | 151 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/centos.yml",
"content": "---\n \n- name: Add rpm key\n rpm_key:\n key: http://nginx.org/keys/nginx_signing.key\n state: present\n\n- name: Add rpm repository\n yum_repository:\n name: nginx\n baseurl: https://nginx.org/packages/mainline/centos/{{ ansible_distribut... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 5241,
"all_permissive": false
} |
ansible_role | xuxiaodong/v2ray-for-ansible | 462e26645bc3fb5b05ca67b5019b5baf29dcf4f0 | 40 | roles/v2ray | 151 | [
"no_license"
] | [
{
"path": "roles/v2ray/defaults/main.yml",
"content": "---\napp_ver: \"4.32.1\"\napp_arch: \"64\"\napp_port: 8600\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 52
},
{
"path": "roles/v2ray/tasks/main.yml",
"content": "---\n- name: ensure directory exist\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1575,
"all_permissive": false
} |
ansible_role | szymonsitko/ansible-windows | 7966e1fb7c8112a51a38f19b6ebcae7b5dbbeab1 | 2 | install_windows/roles/install_java | 151 | [
"no_license"
] | [
{
"path": "install_windows/roles/install_java/handlers/main.yml",
"content": "---\n# handlers file for install_tomcat",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 38
},
{
"path": "install_windows/roles/install_java/tests/test.yml",
"content": "---\n- hosts: ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1335,
"all_permissive": false
} |
ansible_role | szymonsitko/ansible-windows | 7966e1fb7c8112a51a38f19b6ebcae7b5dbbeab1 | 2 | install_windows/roles/install_mssql | 151 | [
"no_license"
] | [
{
"path": "install_windows/roles/install_mssql/vars/main.yml",
"content": "---\n# vars file for windows",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 27
},
{
"path": "install_windows/roles/install_mssql/handlers/main.yml",
"content": "---\n# handlers file for... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 5868,
"all_permissive": false
} |
ansible_role | szymonsitko/ansible-windows | 7966e1fb7c8112a51a38f19b6ebcae7b5dbbeab1 | 2 | install_windows/roles/install_tomcat | 151 | [
"no_license"
] | [
{
"path": "install_windows/roles/install_tomcat/vars/main.yml",
"content": "---\n# vars file for install_tomcat",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 34
},
{
"path": "install_windows/roles/install_tomcat/tasks/main.yml",
"content": "---\n# tasks file ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1091,
"all_permissive": false
} |
ansible_role | szymonsitko/ansible-windows | 7966e1fb7c8112a51a38f19b6ebcae7b5dbbeab1 | 2 | uninstall_windows/roles/uninstall_mssql | 151 | [
"no_license"
] | [
{
"path": "uninstall_windows/roles/uninstall_mssql/vars/main.yml",
"content": "---\n# vars file for uninstall_mssql",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 35
},
{
"path": "uninstall_windows/roles/uninstall_mssql/handlers/main.yml",
"content": "---\n# h... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 716,
"all_permissive": false
} |
ansible_role | szymonsitko/ansible-windows | 7966e1fb7c8112a51a38f19b6ebcae7b5dbbeab1 | 2 | uninstall_windows/roles/uninstall_tomcat | 151 | [
"no_license"
] | [
{
"path": "uninstall_windows/roles/uninstall_tomcat/handlers/main.yml",
"content": "---\n# handlers file for uninstall_tomcat",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 40
},
{
"path": "uninstall_windows/roles/uninstall_tomcat/tests/test.yml",
"content": "... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 792,
"all_permissive": false
} |
ansible_role | dorgeln/libvirtbuilder | 84996ea07f38bd600f49a5cc6a6e7860ae3ad979 | 0 | roles/cloudimages | 151 | [
"permissive"
] | [
{
"path": "roles/cloudimages/tasks/main.yml",
"content": "---\n- name: Install cloudimages\n import_tasks: cloudimages.yml\n tags: cloudimages",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 83
},
{
"path": "roles/cloudimages/tasks/cloudim... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2886,
"all_permissive": true
} |
ansible_role | dorgeln/libvirtbuilder | 84996ea07f38bd600f49a5cc6a6e7860ae3ad979 | 0 | roles/cockpit | 151 | [
"permissive"
] | [
{
"path": "roles/cockpit/tasks/main.yml",
"content": "---\n- name: Configure cockpit\n import_tasks: cockpit.yml\n tags: cockpit",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 73
},
{
"path": "roles/cockpit/tasks/cockpit.yml",
"conten... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 892,
"all_permissive": true
} |
ansible_role | dorgeln/libvirtbuilder | 84996ea07f38bd600f49a5cc6a6e7860ae3ad979 | 0 | roles/docker | 151 | [
"permissive"
] | [
{
"path": "roles/docker/tasks/docker.yml",
"content": "- name: Add Docker GPG key\n become: yes\n apt_key:\n url: \"{{ docker_apt_gpg_key }}\"\n state: present\n\n- name: Add Docker repository\n become: yes\n apt_repository:\n repo: \"{{ docker_apt_repository }}\"\n state: present\n updat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 745,
"all_permissive": true
} |
ansible_role | dorgeln/libvirtbuilder | 84996ea07f38bd600f49a5cc6a6e7860ae3ad979 | 0 | roles/firewalld | 151 | [
"permissive"
] | [
{
"path": "roles/firewalld/tasks/main.yml",
"content": "---\n- name: Configure firewalld\n import_tasks: firewalld.yml\n tags: firewalld",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 79
},
{
"path": "roles/firewalld/tasks/firewalld.yml",... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 293,
"all_permissive": true
} |
ansible_role | dorgeln/libvirtbuilder | 84996ea07f38bd600f49a5cc6a6e7860ae3ad979 | 0 | roles/kind | 151 | [
"permissive"
] | [
{
"path": "roles/kind/tasks/main.yml",
"content": "---\n- name: Configure kind\n import_tasks: kind.yml\n tags: kind",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 64
},
{
"path": "roles/kind/tasks/kind.yml",
"content": "- name: Insta... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 366,
"all_permissive": true
} |
ansible_role | dorgeln/libvirtbuilder | 84996ea07f38bd600f49a5cc6a6e7860ae3ad979 | 0 | roles/libvirt | 151 | [
"permissive"
] | [
{
"path": "roles/libvirt/tasks/libvirt.yml",
"content": "- name: Install libvirt\n become: yes\n apt:\n name: \n - qemu\n - qemu-system\n - qemu-utils\n - qemu-block-extra\n - libvirt-daemon-system\n - libvirt-clients\n - cloud-image-utils\n - dns... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1757,
"all_permissive": true
} |
ansible_role | dorgeln/libvirtbuilder | 84996ea07f38bd600f49a5cc6a6e7860ae3ad979 | 0 | roles/system | 151 | [
"permissive"
] | [
{
"path": "roles/system/tasks/system.yml",
"content": "- name: Set hostname\n become: yes\n hostname:\n name: \"{{ inventory_hostname }}\"\n\n- name: Update apt-cache and do upgrade\n become: yes\n apt:\n update_cache: yes\n cache_valid_time: 3600\n upgrade: safe\n \n\n- name: Install tools ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1188,
"all_permissive": true
} |
ansible_role | dorgeln/libvirtbuilder | 84996ea07f38bd600f49a5cc6a6e7860ae3ad979 | 0 | roles/tpm | 151 | [
"permissive"
] | [
{
"path": "roles/tpm/tasks/main.yml",
"content": "---\n- name: Configure tpm\n import_tasks: tpm.yml\n tags: tpm",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 61
},
{
"path": "roles/tpm/tasks/tpm.yml",
"content": "- name: Install tpm... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 956,
"all_permissive": true
} |
ansible_role | Kosenuel/DevOps_CloudEngr-StegHub | 147f36af4ef86daa04bf07c297b3f6a78e3e17fe | 5 | 19.(Iac)_Automating_Infrastructure_Using_Terraform_Part_4/infra-codes/Ansible/IAIUT-Ansible/roles/nginx | 151 | [
"no_license"
] | [
{
"path": "19.(Iac)_Automating_Infrastructure_Using_Terraform_Part_4/infra-codes/Ansible/IAIUT-Ansible/roles/nginx/meta/main.yml",
"content": "---\ngalaxy_info:\n author: <NAME>\n description: \"Installs and configures Nginx with a health check and reverse proxy setting(s)\"\n license: MIT\n min_ansible... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 5444,
"all_permissive": false
} |
ansible_role | Kosenuel/DevOps_CloudEngr-StegHub | 147f36af4ef86daa04bf07c297b3f6a78e3e17fe | 5 | 19.(Iac)_Automating_Infrastructure_Using_Terraform_Part_4/infra-codes/Ansible/IAIUT-Ansible/roles/tooling | 151 | [
"no_license"
] | [
{
"path": "19.(Iac)_Automating_Infrastructure_Using_Terraform_Part_4/infra-codes/Ansible/IAIUT-Ansible/roles/tooling/templates/httpd-healthz.conf.j2",
"content": "# Serve files from /var/www/html\nDocumentRoot \"/var/www/html\"\n\n<Directory \"/var/www/html\">\n AllowOverride None\n Require all grante... | {
"task_files": 6,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 9412,
"all_permissive": false
} |
ansible_role | Kosenuel/DevOps_CloudEngr-StegHub | 147f36af4ef86daa04bf07c297b3f6a78e3e17fe | 5 | 19.(Iac)_Automating_Infrastructure_Using_Terraform_Part_4/infra-codes/Ansible/IAIUT-Ansible/roles/wordpress | 151 | [
"no_license"
] | [
{
"path": "19.(Iac)_Automating_Infrastructure_Using_Terraform_Part_4/infra-codes/Ansible/IAIUT-Ansible/roles/wordpress/templates/httpd-healthz.conf.j2",
"content": "<VirtualHost *:80>\n DocumentRoot {{ wordpress_dir }}\n\n # Health check endpoint\n Alias \"/healthz\" \"{{ wordpress_dir }}/healthz\"... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 7342,
"all_permissive": false
} |
ansible_role | atomarxculo/docker-ansible | b7f9986a0170033cb66befbe13064251fb5bf3a5 | 0 | roles/base | 151 | [
"no_license"
] | [
{
"path": "roles/base/tasks/main.yml",
"content": "---\n- name: Update apt-get repo and cache\n apt: update_cache=yes force_apt_get=yes cache_valid_time=3600\n\n- name: Install base dependencies\n package:\n name: \"{{ item }}\"\n state: present\n loop:\n - curl\n - dnsutils\n - jq\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 395,
"all_permissive": false
} |
ansible_role | atomarxculo/docker-ansible | b7f9986a0170033cb66befbe13064251fb5bf3a5 | 0 | roles/docker | 151 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n- name: Check if Docker is installed on the host\n command: docker version\n register: _docker_result\n failed_when: false\n changed_when: false\n\n- name: Install Docker\n block:\n - name: Add Docker GPG key\n apt_key:\n url: htt... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1279,
"all_permissive": false
} |
ansible_role | grahovsky/ansible-edu | cbd6907107a15488424111c5276b32b4111af561 | 0 | roles/deploy_apache_web | 151 | [
"no_license"
] | [
{
"path": "roles/deploy_apache_web/defaults/main.yml",
"content": "---\n# defaults file for deploy_apache_web\ndestin_folder_rhel: /var/www/html\ndestin_folder_arch: /srv/http",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 105
},
{
"path": "roles/deploy_apache_web... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2374,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_11/roles/salt | 151 | [
"no_license"
] | [
{
"path": "exc_11/roles/salt/tasks/main.yml",
"content": "---\n# tasks file for salt\n\n- name: Add Salt repository\n yum_repository:\n name: salt-repo\n description: Salt repo for RHEL-like 9\n baseurl: https://repo.saltproject.io/salt/py3/redhat/9/x86_64/latest\n skip_if_unavailable: true\n ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 3887,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_2/Terraform/roles/gfs2 | 151 | [
"no_license"
] | [
{
"path": "exc_2/Terraform/roles/gfs2/tasks/main.yml",
"content": "---\n# tasks file for gfs2\n\n- name: Enable locking_type=3\n lineinfile:\n dest: '/etc/lvm/lvm.conf'\n regexp: '^\\s*locking_type'\n line: ' locking_type = 3'\n notify:\n - Rebuild initramfs\n\n- name: Enable fencing\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2886,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_2/Terraform/roles/iscsi | 151 | [
"no_license"
] | [
{
"path": "exc_2/Terraform/roles/iscsi/tasks/main.yml",
"content": "---\n\n- name: Set target\n include_tasks: target.yml\n when: inventory_hostname in groups[ \"iscsi_group\" ] \n\n- name: Set clients\n include_tasks: client.yml\n when: inventory_hostname in groups[ \"cluster\" ]\n\n",
"license_typ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 207,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_2/Terraform/roles/multipath | 151 | [
"no_license"
] | [
{
"path": "exc_2/Terraform/roles/multipath/defaults/main.yml",
"content": "---\n# defaults file for multipath\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 34
},
{
"path": "exc_2/Terraform/roles/multipath/tasks/main.yml",
"content": "---\n# tasks file for m... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 863,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_2/Terraform/roles/pacemaker | 151 | [
"no_license"
] | [
{
"path": "exc_2/Terraform/roles/pacemaker/defaults/main.yml",
"content": "---\npacemaker_hacluster_sha : 'SuperPass'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "exc_2/Terraform/roles/pacemaker/tasks/client.yml",
"content": "---\n\n- name... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2517,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_2/Vagrant/ansible/roles/multipath | 151 | [
"no_license"
] | [
{
"path": "exc_2/Vagrant/ansible/roles/multipath/vars/main.yml",
"content": "---\n# vars file for multipath\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 30
},
{
"path": "exc_2/Vagrant/ansible/roles/multipath/tasks/main.yml",
"content": "---\n# tasks file f... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 608,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_3/roles/balancer | 151 | [
"no_license"
] | [
{
"path": "exc_3/roles/balancer/templates/balancer.conf.j2",
"content": "upstream api {\n{% for item in groups[ 'backend' ] %}\n server {{ hostvars[item].ansible_host }};\n{% endfor %}\n}\n\nserver {\n listen 80;\n\n server_name api;\n\n access_log /var/log/nginx/api.access.log;\n err... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 834,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_3/roles/database | 151 | [
"no_license"
] | [
{
"path": "exc_3/roles/database/tasks/main.yml",
"content": "---\n#tasks file for database\n- name: add MariaDB repository\n yum_repository:\n name: MariaDB\n description: MariaDB repository\n file: MariaDB\n baseurl: https://rpm.mariadb.org/{{ version_MariaDB }}/rhel/$releasever/$basearch\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1694,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_3/roles/php | 151 | [
"no_license"
] | [
{
"path": "exc_3/roles/php/tasks/main.yml",
"content": "---\n# tasks file for php\n- name: installing remi repository\n yum:\n name: http://rpms.remirepo.net/enterprise/remi-release-7.rpm\n state: present\n\n- name: installing php\n yum:\n enablerepo: \"remi-php80\"\n name: \n - php\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 798,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_3/roles/wordpress | 151 | [
"no_license"
] | [
{
"path": "exc_3/roles/wordpress/tasks/main.yml",
"content": "---\n# tasks file for wordpress\n- name: Install prerequisites\n yum:\n name: \n - wget\n - policycoreutils-python\n state: present\n update_cache: true\n\n- name: Create document root\n file: \n path: /var/www/html/api/\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 958,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_4/Terraform/roles/gfs2 | 151 | [
"no_license"
] | [
{
"path": "exc_4/Terraform/roles/gfs2/defaults/main.yml",
"content": "---\n# defaults file for gfs2\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 30
},
{
"path": "exc_4/Terraform/roles/gfs2/tasks/main.yml",
"content": "---\n# tasks file for gfs2\n- name: ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3709,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_4/vagrant/roles/balancer | 151 | [
"no_license"
] | [
{
"path": "exc_4/vagrant/roles/balancer/templates/keepalived.nginx1.j2",
"content": "global_defs {\n vrrp_version 3\n}\n\nvrrp_script check_nginx {\n script \"/bin/check_nginx.sh\"\n interval 2\n weight 2\n}\n\nvrrp_instance VI_1 {\n interface eth1\n state MASTER\n virtual_router_id 1\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1601,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_4/vagrant/roles/iscsi | 151 | [
"no_license"
] | [
{
"path": "exc_4/vagrant/roles/iscsi/tasks/main.yml",
"content": "---\n\n- name: Set target\n include_tasks: target.yml\n when: inventory_hostname in groups[ \"targets\" ] \n\n- name: Set clients\n include_tasks: client.yml\n when: inventory_hostname in groups[ \"backend\" ]\n\n",
"license_type": "n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 203,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_5/roles/iscsi | 151 | [
"no_license"
] | [
{
"path": "exc_5/roles/iscsi/tasks/main.yml",
"content": "---\n- name: Install extension\n dnf:\n name: \n - python3-firewall\n state: present\n\n# - name: Add iscsi-target service to firewalld\n# firewalld:\n# service: iscsi-target \n# permanent: True\n# state: enabled \n# r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 612,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_5/roles/pacemaker | 151 | [
"no_license"
] | [
{
"path": "exc_5/roles/pacemaker/handlers/main.yml",
"content": "---\n# handlers file for pacemaker\n- name: Reboot Host\n reboot:\n reboot_timeout: 3600\n \n- name: restart corosync\n service:\n name: \"corosync\"\n state: \"restarted\"\n become: true\n\n- name: restart pacemaker\n service:... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1647,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_5/roles/php | 151 | [
"no_license"
] | [
{
"path": "exc_5/roles/php/tasks/main.yml",
"content": "---\n# tasks file for php\n\n- name: installing php\n dnf:\n name: \n - php\n - php-sockets\n - php-fpm\n - php-mysqlnd\n - php-mysqli\n state: latest\n\n- name: stopped php-fpm for config\n systemd:\n name: php-fpm\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 442,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_6/roles/etcd | 151 | [
"no_license"
] | [
{
"path": "exc_6/roles/etcd/templates/etcd_conf.j2",
"content": "# [member]\nETCD_NAME=\"{{ ansible_hostname }}\"\nETCD_DATA_DIR=\"/var/lib/etcd/default.etcd\"\n#ETCD_WAL_DIR=\"\"\n#ETCD_SNAPSHOT_COUNT=\"10000\"\nETCD_HEARTBEAT_INTERVAL=\"1000\"\nETCD_ELECTION_TIMEOUT=\"5000\"\nETCD_LISTEN_PEER_URLS=\"http:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2897,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_6/roles/haproxy | 151 | [
"no_license"
] | [
{
"path": "exc_6/roles/haproxy/tasks/main.yml",
"content": "---\n# tasks file for haproxy\n- name: Add firewalld rules\n firewalld:\n port: \"{{item}}/tcp\"\n state: enabled\n permanent: true\n with_items:\n - 5001\n - 5000\n - 7000\n register: firewalld_state\n\n- name: reload firewall... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 621,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_6/roles/patroni | 151 | [
"no_license"
] | [
{
"path": "exc_6/roles/patroni/defaults/main.yml",
"content": "---\n# defaults file for patroni\npgsql_version: 15",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 49
},
{
"path": "exc_6/roles/patroni/templates/patroni_yml.j2",
"content": "scope: pgsql\nnamespac... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3746,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_7/roles/dashboard | 151 | [
"no_license"
] | [
{
"path": "exc_7/roles/dashboard/tasks/dashboards.yml",
"content": "---\n- name: Download opensearch dashbaord {{ os_dashboards_version }}\n ansible.builtin.get_url:\n url: \"{{ os_download_url }}-dashboards/{{ os_dashboards_version }}/opensearch-dashboards-{{ os_dashboards_version }}-linux-x64.tar.gz\"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1717,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_7/roles/opensearch | 151 | [
"no_license"
] | [
{
"path": "exc_7/roles/opensearch/defaults/main.yml",
"content": "---\n# defaults file for elasticsearch\nos_version: \"2.16.0\"\n\nos_user: opensearch\nos_home: /opt/opensearch\nos_cluster_name: wp_cluster\nos_conf_dir: /opt/opensearch/config\nos_api_port: 9200\nos_nodes: |-\n {% for item in groups[... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 7907,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_7/roles/vector | 151 | [
"no_license"
] | [
{
"path": "exc_7/roles/vector/tasks/main.yml",
"content": "---\n# tasks file for vector\n- name: Install Vector\n dnf:\n name: \"{{ rpm_url }}\"\n state: present\n disable_gpg_check: true\n\n- name: set config vector\n template:\n src: vector.yaml\n dest: /etc/vector/vector.yaml\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 324,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_8/roles/kafka | 151 | [
"no_license"
] | [
{
"path": "exc_8/roles/kafka/tasks/main.yml",
"content": "---\n# tasks file for kafka\n- name: Install prerequestion\n dnf:\n name: java\n state: present\n\n- name: Create kafka user\n user:\n name: \"{{ kfk_user }}\"\n state: present\n shell: /bin/bash\n password: \"{{ <PASSWORD> }}\"\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2516,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_8/roles/nginx | 151 | [
"no_license"
] | [
{
"path": "exc_8/roles/nginx/tasks/main.yml",
"content": "---\n# tasks file for nginx\n- name: install Nginx\n yum:\n name: nginx\n state: present\n update_cache: yes\n\n- name: set nginx config\n template:\n src: \"api.conf.j2\"\n dest: /etc/nginx/conf.d/api.conf\n\n- name: restart NGINX\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 301,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_8/roles/vector | 151 | [
"no_license"
] | [
{
"path": "exc_8/roles/vector/defaults/main.yml",
"content": "---\n# defaults file for vector\nrpm_url: https://yum.vector.dev/stable/vector-0/x86_64/vector-0.40.1-1.x86_64.rpm\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 114
},
{
"path": "exc_8/roles/vector... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 640,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_9/roles/consul | 151 | [
"no_license"
] | [
{
"path": "exc_9/roles/consul/tasks/main.yml",
"content": "---\n# tasks file for consul\n- name: Install prerequestion\n dnf:\n name: unzip\n state: present \n\n- name: Add consul group \n group:\n name: \"{{ consul_group }}\"\n state: present\n\n- name: Add consul user\n user:\n name: \"{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2571,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_9/roles/database | 151 | [
"no_license"
] | [
{
"path": "exc_9/roles/database/tasks/main.yml",
"content": "---\n#tasks file for database\n- name: install Extenssions\n yum:\n name: python3-PyMySQL\n state: present\n update_cache: yes\n\n- name: Install MariaDB-server and extenstions\n yum:\n name: mariadb-server\n state: present\n u... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1512,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | exc_9/roles/nginx_consul | 151 | [
"no_license"
] | [
{
"path": "exc_9/roles/nginx_consul/handlers/main.yml",
"content": "---\n# handlers file for nginx_consul\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 37
},
{
"path": "exc_9/roles/nginx_consul/tasks/main.yml",
"content": "---\n# tasks file for nginx_consul... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1878,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | project/roles/dashboard | 151 | [
"no_license"
] | [
{
"path": "project/roles/dashboard/tasks/main.yml",
"content": "---\n# tasks file for dashboard\n\n- name: Include dashboards installation\n ansible.builtin.import_tasks: dashboards.yml\n\n- name: Make sure opensearch dashboards is started\n ansible.builtin.service:\n name: dashboards\n state: start... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1222,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | project/roles/dnsmasq | 151 | [
"no_license"
] | [
{
"path": "project/roles/dnsmasq/tasks/main.yml",
"content": "---\n# tasks file for dnsmasq\n- name: Install dnsmasq\n dnf:\n name: dnsmasq\n state: present\n\n- name: Start and enable dnsmasq\n service:\n name: dnsmasq\n state: started\n enabled: true\n\n- name: Set config for dnsmasq\n t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 708,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | project/roles/fence | 151 | [
"no_license"
] | [
{
"path": "project/roles/fence/handlers/main.yml",
"content": "---\n# handlers file for fence\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 30
},
{
"path": "project/roles/fence/tasks/main.yml",
"content": "---\n#tasks file for fence\n- name: Install SCSI Fe... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1054,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | project/roles/iscsi | 151 | [
"no_license"
] | [
{
"path": "project/roles/iscsi/tasks/main.yml",
"content": "---\n- name: Install extension\n dnf:\n name: \n - python3-firewall\n state: present\n\n- name: Set target\n include_tasks: target.yml\n when: inventory_hostname in groups[ \"targets\" ] \n\n- name: Set clients\n include_tasks: cl... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1450,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | project/roles/opensearch | 151 | [
"no_license"
] | [
{
"path": "project/roles/opensearch/tasks/tune.yml",
"content": "---\n- name: Set vm.max_map_count in sysctl.conf\n ansible.posix.sysctl:\n name: vm.max_map_count\n value: 262144\n state: present\n register: tune\n\n- name: Set open files limit in sysctl.conf\n ansible.posix.sysctl:\n name: f... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2801,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | project/roles/pacemaker | 151 | [
"no_license"
] | [
{
"path": "project/roles/pacemaker/tasks/main.yml",
"content": "---\n# tasks file for pacemaker\n- name: install pacemaker packages\n dnf:\n name: \"{{ item }}\"\n enablerepo: highavailability\n state: present \n with_items:\n - pacemaker\n - pcs\n\n- name: enable pcsd service\n systemd:\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1004,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | project/roles/pxc | 151 | [
"no_license"
] | [
{
"path": "project/roles/pxc/defaults/main.yml",
"content": "---\n# defaults file for pxc\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 28
},
{
"path": "project/roles/pxc/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 3187,
"all_permissive": false
} |
ansible_role | dmborovik/OTUS_HL | f36a0a9f75b4c1565a0e5888108bd0aeb482e8a1 | 0 | project/roles/wordpress | 151 | [
"no_license"
] | [
{
"path": "project/roles/wordpress/tasks/main.yml",
"content": "---\n# tasks file for wordpress\n- name: Install prerequisites\n yum:\n name: \n - wget\n state: present\n update_cache: true\n\n- name: Create document root\n run_once: true\n file: \n path: /var/www/html/api/\n state: d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 808,
"all_permissive": false
} |
ansible_role | No5stranger/ubunt-deploy | d71f63940dd85de4ad4bd4180b3c5823143e3320 | 0 | roles/common | 151 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n- name: Copy ubuntu source.list\n template: src=source.list dest=/etc/apt/source.list\n sudo: yes\n\n- name: systme update\n apt: update_cache=yes\n sudo: yes\n\n- name: Install essential\n apt: name= {{ item }} state=present\n with_itmes:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 293,
"all_permissive": false
} |
ansible_role | No5stranger/ubunt-deploy | d71f63940dd85de4ad4bd4180b3c5823143e3320 | 0 | roles/nginx | 151 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n- name: Install nginx\n apt: name=nginx state=present\n sudo: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 70
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 70,
"all_permissive": false
} |
ansible_role | No5stranger/ubunt-deploy | d71f63940dd85de4ad4bd4180b3c5823143e3320 | 0 | roles/php | 151 | [
"no_license"
] | [
{
"path": "roles/php/files/mcrypt.ini",
"content": "extension = mcrypt.so\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 22
},
{
"path": "roles/php/tasks/main.yml",
"content": "---\n- name: Install mcrypt\n apt: name=mcrypt state=present\n sudo: yes\n\n- n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 821,
"all_permissive": false
} |
ansible_role | kenzo-staelens/ansible-project-mirror | 304b84da49a25dc694fc1b245a30c7d24d5c24fa | 0 | roles/common | 144 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n# tasks file for roles/common\n- name: Update and upgrade software DNF\n ansible.builtin.dnf:\n name: \"*\"\n update_cache: true\n state: latest\n when: package_manager == 'dnf'\n- name: Update and upgrade software APT\n ansible.builtin.a... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 557,
"all_permissive": false
} |
ansible_role | kenzo-staelens/ansible-project-mirror | 304b84da49a25dc694fc1b245a30c7d24d5c24fa | 0 | roles/database | 144 | [
"no_license"
] | [
{
"path": "roles/database/vars/main.yml",
"content": "---\n# vars file for roles/database\ndatabase_users: [{\"username\":\"kenzo\", \"password\":\"<PASSWORD>\"}]\ndatabases: [{\"username\":\"kenzo\", \"password\":\"<PASSWORD>\", \"database\":\"kenzostaelens\"}]\n",
"license_type": "no_license",
"de... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2091,
"all_permissive": false
} |
ansible_role | kenzo-staelens/ansible-project-mirror | 304b84da49a25dc694fc1b245a30c7d24d5c24fa | 0 | roles/loadbalancer | 144 | [
"no_license"
] | [
{
"path": "roles/loadbalancer/vars/main.yml",
"content": "---\n# vars file for roles/loadbalancer\nwebserver_hosts: \"{{ groups['webservers'] | map('extract', hostvars, ['ansible_host']) }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 130
},
{
"path": "roles... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3607,
"all_permissive": false
} |
ansible_role | kenzo-staelens/ansible-project-mirror | 304b84da49a25dc694fc1b245a30c7d24d5c24fa | 0 | roles/routerconfig | 144 | [
"no_license"
] | [
{
"path": "roles/routerconfig/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/routerconfig\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 77
},
{
"path": "roles/routerconfig/handlers/main.yml",
"content": "---... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 483,
"all_permissive": false
} |
ansible_role | kenzo-staelens/ansible-project-mirror | 304b84da49a25dc694fc1b245a30c7d24d5c24fa | 0 | roles/setupssh | 144 | [
"no_license"
] | [
{
"path": "roles/setupssh/defaults/main.yml",
"content": "---\n# defaults file for roles/setupssh\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 39
},
{
"path": "roles/setupssh/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n role... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 687,
"all_permissive": false
} |
ansible_role | kenzo-staelens/ansible-project-mirror | 304b84da49a25dc694fc1b245a30c7d24d5c24fa | 0 | roles/varia | 144 | [
"no_license"
] | [
{
"path": "roles/varia/defaults/main.yml",
"content": "---\n# defaults file for roles/diverse\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 38
},
{
"path": "roles/varia/tasks/main.yml",
"content": "---\n# tasks file for roles/diverse\n- name: Fill Hosts fil... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 789,
"all_permissive": false
} |
ansible_role | kenzo-staelens/ansible-project-mirror | 304b84da49a25dc694fc1b245a30c7d24d5c24fa | 0 | roles/webserver | 144 | [
"no_license"
] | [
{
"path": "roles/webserver/templates/vhosts.conf.j2",
"content": "# {{ ansible_managed }}\n\n<VirtualHost *:80>\n ServerAdmin webmaster@{{ ansible_hostname }}\n ErrorLog ${APACHE_LOG_DIR}/{{ ansible_hostname }}-error.log\n CustomLog ${APACHE_LOG_DIR}/{{ ansible_hostname }}-common.log common\n Do... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3356,
"all_permissive": false
} |
ansible_role | kenzo-staelens/ansible-project-mirror | 304b84da49a25dc694fc1b245a30c7d24d5c24fa | 0 | roles/website-github | 144 | [
"no_license"
] | [
{
"path": "roles/website-github/vars/main.yml",
"content": "---\n# vars file for roles/website-github\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 41
},
{
"path": "roles/website-github/handlers/main.yml",
"content": "---\n# handlers file for roles/website-... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 547,
"all_permissive": false
} |
ansible_role | orlandopalmeira/Trabalho-ASCN-2023-2024 | c4e2dd8db153577fb2e7ecc6007dab6dca66d318 | 2 | roles/gcp_create_vms | 144 | [
"no_license"
] | [
{
"path": "roles/gcp_create_vms/vars/main.yml",
"content": "---\nvm: vm0\n\nmachine_type: e2-small # 2 vCPUs, 2 GB de memória\n# machine_type: e2-standard-2 # 2 vCPUs, 8 GB de memória\n# machine_type: e2-standard-4 # 4 vCPUs, 16 GB de memória",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 647,
"all_permissive": false
} |
ansible_role | orlandopalmeira/Trabalho-ASCN-2023-2024 | c4e2dd8db153577fb2e7ecc6007dab6dca66d318 | 2 | roles/gcp_del_vms | 144 | [
"no_license"
] | [
{
"path": "roles/gcp_del_vms/vars/main.yml",
"content": "---\nvm: vm0",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 11
},
{
"path": "roles/gcp_del_vms/tasks/main.yml",
"content": "---\n\n# Deleting of Provisioned VM\n- name: Delete vm\n shell: gcloud compute... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 171,
"all_permissive": false
} |
ansible_role | orlandopalmeira/Trabalho-ASCN-2023-2024 | c4e2dd8db153577fb2e7ecc6007dab6dca66d318 | 2 | roles/gcp_prov_vms | 144 | [
"no_license"
] | [
{
"path": "roles/gcp_prov_vms/tasks/main.yml",
"content": "---\n##* Para instalar o java e o JMETER em cada maquina virtual criada pelo GCP e executar os testes\n\n# Instalação de JAVA\n- name: Check if Java is installed \n command: java --version\n ignore_errors: true\n register: java_check\n\n- name: U... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1755,
"all_permissive": false
} |
ansible_role | orlandopalmeira/Trabalho-ASCN-2023-2024 | c4e2dd8db153577fb2e7ecc6007dab6dca66d318 | 2 | roles/laravelio_deploy | 144 | [
"no_license"
] | [
{
"path": "roles/laravelio_deploy/tasks/main.yml",
"content": "---\n- name: Deploy the MySql Persistent Volume Claim\n kubernetes.core.k8s:\n state: present\n definition: \"{{ lookup('template', 'templates/mysql-pv-claim.yml') }}\"\n wait: yes\n wait_timeout: 300 # 5 minutos\n\n- name: Deploy t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3761,
"all_permissive": false
} |
ansible_role | orlandopalmeira/Trabalho-ASCN-2023-2024 | c4e2dd8db153577fb2e7ecc6007dab6dca66d318 | 2 | roles/laravelio_undeploy | 144 | [
"no_license"
] | [
{
"path": "roles/laravelio_undeploy/vars/main.yml",
"content": "---\nl_reps: 2 # laravel_replicas",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 32
},
{
"path": "roles/laravelio_undeploy/tasks/main.yml",
"content": "---\n\n- name: Undeploy the MySql Service\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1587,
"all_permissive": false
} |
ansible_role | orlandopalmeira/Trabalho-ASCN-2023-2024 | c4e2dd8db153577fb2e7ecc6007dab6dca66d318 | 2 | roles/test_load | 144 | [
"no_license"
] | [
{
"path": "roles/test_load/tasks/main.yml",
"content": "---\n# Prep - Colocar IP do APP no jmx login_load\n- name: Alteração do IP destino no ficheiro do JMETER a testar\n replace:\n path: \"{{ load_file }}\"\n regexp: '<stringProp name=\"HTTPSampler\\.domain\">.*?</stringProp>'\n replace: '<strin... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2287,
"all_permissive": false
} |
ansible_role | coboarding/chat | 2c4126bc1ffff8c39f7f50d6506d0cf62ddcc35e | 0 | ansible/roles/database | 144 | [
"permissive"
] | [
{
"path": "ansible/roles/database/templates/schema.sql.j2",
"content": "-- Database schema for {{ db_name }}\nCREATE TABLE IF NOT EXISTS users (\n id INTEGER PRIMARY KEY AUTOINCREMENT,\n username TEXT NOT NULL UNIQUE,\n email TEXT NOT NULL UNIQUE,\n created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2562,
"all_permissive": true
} |
ansible_role | coboarding/chat | 2c4126bc1ffff8c39f7f50d6506d0cf62ddcc35e | 0 | ansible/roles/webserver | 144 | [
"permissive"
] | [
{
"path": "ansible/roles/webserver/templates/index.html.j2",
"content": "<!DOCTYPE html>\n<html>\n<head>\n <title>{{ website_title }}</title>\n <style>\n body {\n font-family: Arial, sans-serif;\n margin: 40px;\n line-height: 1.6;\n color: #333;\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2591,
"all_permissive": true
} |
ansible_role | JJDLTorre/MyNotes | 41a197d2e02279097fb2f8bfe66e567d15a0e0cd | 0 | Ansible/ansible_src/roles/app_provisioning_install | 144 | [
"no_license"
] | [
{
"path": "Ansible/ansible_src/roles/app_provisioning_install/tasks/main.yml",
"content": "---\n - name: Checkout srouce code\n git: repo=\"{{ git_app_url }}\"\n dest=\"{{ app_provisioning_dir }}\"\n version=\"{{ app_provisioning_branch }}\"\n force=yes\n\n - name: C... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 426,
"all_permissive": false
} |
ansible_role | JJDLTorre/MyNotes | 41a197d2e02279097fb2f8bfe66e567d15a0e0cd | 0 | Ansible/ansible_src/roles/git_key_upload | 144 | [
"no_license"
] | [
{
"path": "Ansible/ansible_src/roles/git_key_upload/templates/ssh-config",
"content": "Host {{ git_host }}\nIdentityFile=~/.ssh/{{ ssh_key_name }}",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 58
},
{
"path": "Ansible/ansible_src/roles/git_key_upload/tasks/main.y... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 778,
"all_permissive": false
} |
ansible_role | ahzb0565/playbook_example | 66f0ff4a99b1bbfc8575ccbda832e53588e5b18a | 0 | roles/create_folder | 144 | [
"no_license"
] | [
{
"path": "roles/create_folder/tasks/main.yml",
"content": "---\n# tasks file for create_folder\n- name: create a folder\n file:\n dest: /home/ubuntu/workspace/bob\n state: directory\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 125
},
{
"path": "roles/c... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 303,
"all_permissive": false
} |
ansible_role | tmorgan-nagronia/ansible_demo | 69b33ee9b1f8e1e5cc2bc49cbd851a37698bc593 | 0 | roles/apache | 144 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/rhel7.yml",
"content": "---\r\n - name: install=-apache\r\n yum:\r\n name: httpd\r\n state: installed\r\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 85
},
{
"path": "roles/apache/tasks/rhel8.yml",
"content": "---... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 595,
"all_permissive": false
} |
ansible_role | tmorgan-nagronia/ansible_demo | 69b33ee9b1f8e1e5cc2bc49cbd851a37698bc593 | 0 | roles/common | 144 | [
"no_license"
] | [
{
"path": "roles/common/tasks/debian.yml",
"content": "---\r\n - name: install=-apache\r\n apt:\r\n name: httpd\r\n state: installed\r\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 85
},
{
"path": "roles/common/templates/etc/hosts.j2",
"conten... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3282,
"all_permissive": false
} |
ansible_role | tmorgan-nagronia/ansible_demo | 69b33ee9b1f8e1e5cc2bc49cbd851a37698bc593 | 0 | roles/freeradius | 144 | [
"no_license"
] | [
{
"path": "roles/freeradius/tasks/rhel8.yml",
"content": "---\r\n - name: RHEL8 - Install Freeradius\r\n dnf:\r\n name: freeradius\r\n state: present\r\n register: freeradius_installed\r\n\r\n - name: RHEL8 - Install freeradius utilities\r\n dnf:\r\n name: freeradius-utils\r\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2044,
"all_permissive": false
} |
ansible_role | tmorgan-nagronia/ansible_demo | 69b33ee9b1f8e1e5cc2bc49cbd851a37698bc593 | 0 | roles/ftp | 144 | [
"no_license"
] | [
{
"path": "roles/ftp/tasks/debian.yml",
"content": "---\r\n - name: install=-ftpd\r\n apt:\r\n name: vsftpd\r\n state: installed\r\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 84
},
{
"path": "roles/ftp/tasks/rhel7.yml",
"content": "---\r\n ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 771,
"all_permissive": false
} |
ansible_role | tmorgan-nagronia/ansible_demo | 69b33ee9b1f8e1e5cc2bc49cbd851a37698bc593 | 0 | roles/init | 144 | [
"no_license"
] | [
{
"path": "roles/init/tasks/main.yml",
"content": "---\r\n## =============================================================================\r\n## File Name: roles/init/tasks/main.yml\r\n## Purpose: The purpose of this file is to configure the svc_provisoning user.\r\n## This has to be done as a sepe... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3781,
"all_permissive": false
} |
ansible_role | ctimhaney/mcs-haneyland | 03f48722064b304c66569d77bf5d4e3e6b795f8d | 0 | playbooks/mcs-haneyland-deploy/roles/docker | 144 | [
"no_license"
] | [
{
"path": "playbooks/mcs-haneyland-deploy/roles/docker/defaults/main.yml",
"content": "docker_centos_base_url: https://download.docker.com/linux/centos\r\ndocker_repo_url: \"{{ docker_centos_base_url }}/7/x86_64/stable/\"\r\n# workaround for rhel 8, TODO hard coding is no bueno\r\ndocker_containerd_url: \"{... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1513,
"all_permissive": false
} |
ansible_role | ctimhaney/mcs-haneyland | 03f48722064b304c66569d77bf5d4e3e6b795f8d | 0 | playbooks/mcs-haneyland-deploy/roles/mcs_haneyland | 144 | [
"no_license"
] | [
{
"path": "playbooks/mcs-haneyland-deploy/roles/mcs_haneyland/meta/main.yml",
"content": "dependencies:\r\n - role: docker\r\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 33
},
{
"path": "playbooks/mcs-haneyland-deploy/roles/mcs_haneyland/tasks/main.yml",
... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 3188,
"all_permissive": false
} |
ansible_role | manulis/CP2 | b9541928b8551e1a07ba685bd5396218fac65c2e | 0 | ansible/roles/acr | 144 | [
"no_license"
] | [
{
"path": "ansible/roles/acr/tasks/main.yml",
"content": "- name: Login en Azure Container Registry\n containers.podman.podman_login:\n registry: \"{{ acr_login_server }}\"\n username: \"{{ acr_username }}\"\n password: \"{{ acr_<PASSWORD> }}\"\n\n- name: Descargar imagen de Nginx desde DockerHub\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1810,
"all_permissive": false
} |
ansible_role | manulis/CP2 | b9541928b8551e1a07ba685bd5396218fac65c2e | 0 | ansible/roles/aks | 144 | [
"no_license"
] | [
{
"path": "ansible/roles/aks/tasks/main.yml",
"content": "- name: Obtener la última tag de la imagen en ACR\n command: az acr repository show-tags --name {{ acr_name }} --repository django_app --orderby time_desc --top 1 --output tsv\n register: acr_latest_tag\n\n- name: Definir la imagen con la última ta... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3486,
"all_permissive": false
} |
ansible_role | manulis/CP2 | b9541928b8551e1a07ba685bd5396218fac65c2e | 0 | ansible/roles/vm | 144 | [
"no_license"
] | [
{
"path": "ansible/roles/vm/tasks/main.yml",
"content": "- name: Actualizar cache de APT\n become: yes\n apt:\n update_cache: yes\n changed_when: false\n\n- name: Eliminar repositorio Podman si existe\n become: yes\n file:\n path: /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1878,
"all_permissive": false
} |
ansible_role | ganmacs/osx-bootstrap | 962d44507135d9d4fe7a677cc42ef9bb75966b05 | 0 | roles/dotfiles | 144 | [
"no_license"
] | [
{
"path": "roles/dotfiles/tasks/tmux.yml",
"content": "- name: Create symlink for tmux.conf\n file:\n state: link\n src: \"{{ dotfiles_path }}/tmux/tmux.conf\"\n dest: \"~/.tmux.conf\"\n force: true\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 148
},
... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 2247,
"all_permissive": false
} |
ansible_role | ganmacs/osx-bootstrap | 962d44507135d9d4fe7a677cc42ef9bb75966b05 | 0 | roles/emacs | 144 | [
"no_license"
] | [
{
"path": "roles/emacs/tasks/main.yml",
"content": "---\n- name: clone emacs setting from github\n git: >\n repo={{ emacs_setting_repository }}\n dest={{ emacs_repo }}\n\n- name: create link .emacs.d from emacs.d\n file: src={{ emacs_repo }} dest={{ dot_emacs }} state=link\n ignore_errors: true\n\n... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1727,
"all_permissive": false
} |
ansible_role | ganmacs/osx-bootstrap | 962d44507135d9d4fe7a677cc42ef9bb75966b05 | 0 | roles/homebrew | 144 | [
"no_license"
] | [
{
"path": "roles/homebrew/vars/main.yml",
"content": "homebrew_packages:\n # git\n - git\n - hub\n - git-now\n - ghq\n - gibo\n - tig\n - htop\n # zsh\n - zsh\n - zsh-syntax-highlighting\n - zsh-completions\n - fzf\n - gawk\n - gnu-sed\n - gnu-tar\n - grep\n - ag\n - jq\n - htop\n - asp... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 518,
"all_permissive": false
} |
ansible_role | ganmacs/osx-bootstrap | 962d44507135d9d4fe7a677cc42ef9bb75966b05 | 0 | roles/homebrew-cask | 144 | [
"no_license"
] | [
{
"path": "roles/homebrew-cask/tasks/main.yml",
"content": "---\n- name: brew tap\n homebrew_tap: tap={{ item }} state=present\n with_items: \"{{homebrew_tap_packages}}\"\n\n- name: install homebrew-cask packages\n homebrew_cask: name={{ item }} state=present\n with_items: \"{{homebrew_cask_packages}}\"... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1099,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.