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 | amastour/ansible101 | b06ba77b5efa44db08e5eb469cbcca0c774d1da6 | 1 | training/roles/ansible.apache | 2,118 | [
"no_license"
] | [
{
"path": "training/roles/ansible.apache/tasks/install.yml",
"content": "---\n\n- name: Apache - Install - Include OS-specific variables.\n include_vars: \"{{ ansible_os_family }}.yml\"\n\n\n- name: Apache - Install - Define apache_package.\n set_fact:\n apache_packages: \"{{ __apache_packages | list }... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 914,
"all_permissive": false
} |
ansible_role | amastour/ansible101 | b06ba77b5efa44db08e5eb469cbcca0c774d1da6 | 1 | training/roles/ansible.mediawiki | 2,118 | [
"no_license"
] | [
{
"path": "training/roles/ansible.mediawiki/vars/main.yml",
"content": "---\n# vars file for ansible.mediawiki",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 37
},
{
"path": "training/roles/ansible.mediawiki/tests/test.yml",
"content": "---\n- hosts: localhost... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3977,
"all_permissive": false
} |
ansible_role | amastour/ansible101 | b06ba77b5efa44db08e5eb469cbcca0c774d1da6 | 1 | training/roles/ansible.nginx | 2,118 | [
"no_license"
] | [
{
"path": "training/roles/ansible.nginx/tests/test.yml",
"content": "---\n- hosts: localhost\n roles:\n - this.role",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 47
},
{
"path": "training/roles/ansible.nginx/tasks/install_redhat.yml",
"content": "---\r\n-... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 3917,
"all_permissive": false
} |
ansible_role | robertpriedl/awx_linux_playbooks | 3edc49023d12180024f211899e0e7dfcc9ceda69 | 0 | roles/common | 2,158 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yaml",
"content": "---\n- name: Update all packages\n ansible.builtin.yum:\n name: '*'\n state: latest\n\n- name: Install EPEL repository\n ansible.builtin.yum:\n name: epel-release\n state: present\n\n- name: Install common packages\n ansible.builtin.yum:\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 495,
"all_permissive": false
} |
ansible_role | robertpriedl/awx_linux_playbooks | 3edc49023d12180024f211899e0e7dfcc9ceda69 | 0 | roles/hardening | 2,158 | [
"no_license"
] | [
{
"path": "roles/hardening/handlers/main.yaml",
"content": "---\n- name: Restart sshd\n ansible.builtin.service:\n name: sshd\n state: restarted\n\n- name: Reboot system\n ansible.builtin.reboot:\n msg: \"Reboot initiated by Ansible for hardening changes.\"\n pre_reboot_delay: 120\n post_re... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1705,
"all_permissive": false
} |
ansible_role | muralichimmili/terraform_practice | 20e73f358967e870024dd46ff6e938a57ece678c | 0 | ansible/roles/common | 2,158 | [
"no_license"
] | [
{
"path": "ansible/roles/common/vars/main.yml",
"content": "app_user: \"ubuntu\"\nhttp_host: \"apache server\"\nhttp_conf: \"your_domain.conf\"\nhttp_port: \"80\"\ndisable_default: true",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 113
},
{
"path": "ansible/roles... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1127,
"all_permissive": false
} |
ansible_role | stevenspinoza/ansible | f4eddd95e90c0e6111ee2059bbedfbd9825d3647 | 1 | roles/create_user | 2,158 | [
"no_license"
] | [
{
"path": "roles/create_user/tasks/main.yml",
"content": "- name: Create new linux user\n user:\n name: nana\n groups: adm,docker",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 75
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 75,
"all_permissive": false
} |
ansible_role | stevenspinoza/ansible | f4eddd95e90c0e6111ee2059bbedfbd9825d3647 | 1 | roles/install_docker_azure_vm | 2,158 | [
"no_license"
] | [
{
"path": "roles/install_docker_azure_vm/tasks/main.yml",
"content": "- name: Update apt\n apt: update_cache=yes force_apt_get=yes cache_valid_time=3600\n\n- name: Add docker GPG key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n- name: Add docker repo\n apt_rep... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 638,
"all_permissive": false
} |
ansible_role | stevenspinoza/ansible | f4eddd95e90c0e6111ee2059bbedfbd9825d3647 | 1 | roles/start_containers | 2,158 | [
"no_license"
] | [
{
"path": "roles/start_containers/tasks/main.yml",
"content": "- name: Copy docker compose\n copy:\n src: /home/ss/ansible/docker-compose.yaml\n dest: /home/nana/docker-compose.yaml\n\n# - name: Docker login\n# docker_login: \n# registry_url: https://index.docker.io/v1/\n# username: stevens... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 361,
"all_permissive": false
} |
ansible_role | sph-668/meteofill_deploy | 75d68f2a61af8e99b84dea73d01131c669236743 | 0 | ansible_deploy/roles/compose | 2,158 | [
"no_license"
] | [
{
"path": "ansible_deploy/roles/compose/tasks/main.yml",
"content": "---\r\n- name: Запускаем Docker Compose\r\n shell: docker-compose -f /home/ubuntu/docker-compose_deploy.yml up -d",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 110
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 110,
"all_permissive": false
} |
ansible_role | sph-668/meteofill_deploy | 75d68f2a61af8e99b84dea73d01131c669236743 | 0 | ansible_deploy/roles/prep | 2,158 | [
"no_license"
] | [
{
"path": "ansible_deploy/roles/prep/tasks/main.yml",
"content": "---\r\n- name: Останавливаем все Docker-контейнеры\r\n shell: docker stop $(docker ps -aq) || echo \"Контейнеры уже остановлены\"\r\n \r\n- name: Удаляем все Docker-контейнеры\r\n shell: docker rm $(docker ps -aq) || echo \"Контейнеры уже ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 696,
"all_permissive": false
} |
ansible_role | roxane-vellen/DevOpsTp2 | 9b668a8581f91f71b6f63bb4607449574ebcb94f | 0 | ansible/roles/app | 2,158 | [
"no_license"
] | [
{
"path": "ansible/roles/app/tasks/main.yml",
"content": "---\n# tasks file for roles/app\n - name: Create a simple-api container\n docker_container:\n name: backend\n image: roxaen/tp-devops-epf:simple-api\n networks:\n - name: \"app-network\"",
"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 | roxane-vellen/DevOpsTp2 | 9b668a8581f91f71b6f63bb4607449574ebcb94f | 0 | ansible/roles/database | 2,158 | [
"no_license"
] | [
{
"path": "ansible/roles/database/tasks/main.yml",
"content": "---\n# tasks file for roles/database\n - name: Create a database container\n docker_container:\n name: database\n image: roxaen/tp-devops-epf:database\n state: started\n env:\n POSTGRES_PASSWORD: \"pw... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 347,
"all_permissive": false
} |
ansible_role | roxane-vellen/DevOpsTp2 | 9b668a8581f91f71b6f63bb4607449574ebcb94f | 0 | ansible/roles/proxy | 2,158 | [
"no_license"
] | [
{
"path": "ansible/roles/proxy/tasks/main.yml",
"content": "---\n# tasks file for roles/proxy\n - name: Create a httpd container\n docker_container:\n name: httpd\n image: roxaen/tp-devops-epf:httpd\n networks:\n - name: \"app-network\"\n ports:\n - \"80... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 240,
"all_permissive": false
} |
ansible_role | msantoshnetha/test001 | 6ce63f78f6c6ef317e4c8dc131df3e1943bfeb8b | 0 | roles/elasticsearch | 2,158 | [
"permissive"
] | [
{
"path": "roles/elasticsearch/tasks/main_es.yml",
"content": "- name: Create elasticsearch volume\r\n docker_volume:\r\n name: es1data\r\n driver: local\r\n\r\n- name: Start elasticsearch container\r\n docker_container:\r\n name: \"{{ elastics_hostname }}\"\r\n image: \"{{ elastics_image }}\"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 971,
"all_permissive": true
} |
ansible_role | msantoshnetha/test001 | 6ce63f78f6c6ef317e4c8dc131df3e1943bfeb8b | 0 | roles/kibana | 2,158 | [
"permissive"
] | [
{
"path": "roles/kibana/tasks/main_kibana.yml",
"content": "- name: Start kibana container\r\n docker_container:\r\n name: \"{{ kibana_hostname }}\"\r\n image: \"{{ kibana_image }}\"\r\n env:\r\n servername: \"{{ server_name }}\"\r\n ELASTICSEARCH_HOSTS: \"http://{{ elastics_hostname }}:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 511,
"all_permissive": true
} |
ansible_role | msantoshnetha/test001 | 6ce63f78f6c6ef317e4c8dc131df3e1943bfeb8b | 0 | roles/logstash | 2,158 | [
"permissive"
] | [
{
"path": "roles/logstash/tasks/main_logstash.yml",
"content": "- name: Checking logstash pipeline configuration\r\n file:\r\n path: \"{{ logstash_conf_dir }}/pipeline\"\r\n state: directory\r\n\r\n- name: Copy logstash pipeline conf\r\n template: #src={{ item.src }} dest={{ item.dest }}\r\n with_i... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1193,
"all_permissive": true
} |
ansible_role | msantoshnetha/test001 | 6ce63f78f6c6ef317e4c8dc131df3e1943bfeb8b | 0 | roles/nginx | 2,158 | [
"permissive"
] | [
{
"path": "roles/nginx/tasks/main_nginx.yml",
"content": "- name: Check nginx configuration\r\n file:\r\n path: \"{{ nginx_conf_dir }}\"\r\n state: directory\r\n\r\n- name: Check if project files exist\r\n stat:\r\n path: \"{{ project_conf_dir }}/live/{{ server_name }}\"\r\n register: project\r\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2177,
"all_permissive": true
} |
ansible_role | sjhuang93/ansible-template | 5271ff13175fb1e4cbbee423e32540eee3f048aa | 0 | roles/common | 2,158 | [
"no_license"
] | [
{
"path": "roles/common/tasks/some_tasks.yml",
"content": "- name: Echo \"{{ var }}\"\n command: echo \"{{ var }}\"\n register: existence\n ignore_errors: yes",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 95
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 95,
"all_permissive": false
} |
ansible_role | KononNatali/xray_ansible | c2db9a8edcd3729b5672823b0bf5f2a5e059ed98 | 0 | roles/hysteria | 1,939 | [
"no_license"
] | [
{
"path": "roles/hysteria/tasks/config_client.yml",
"content": "---\n- name: Configure Hysteria Client\n hosts: all\n become: yes\n\n tasks:\n - name: Create Hysteria Client configuration directory\n ansible.builtin.file:\n state: directory\n path: '{{ hysteria_client_config_dir }}'... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 5805,
"all_permissive": false
} |
ansible_role | jigneshpurohit/openshift_playbook | 7127518224d996e01a89db147434e404ebd35296 | 0 | roles/etcd | 1,939 | [
"no_license"
] | [
{
"path": "roles/etcd/tasks/system_container.yml",
"content": "---\n- name: Pull etcd system container\n command: atomic pull --storage=ostree {{ openshift.etcd.etcd_image }}\n register: pull_result\n changed_when: \"'Pulling layer' in pull_result.stdout\"\n\n- name: Check etcd system container package\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3028,
"all_permissive": false
} |
ansible_role | jigneshpurohit/openshift_playbook | 7127518224d996e01a89db147434e404ebd35296 | 0 | roles/lib_openshift | 1,939 | [
"no_license"
] | [
{
"path": "roles/lib_openshift/src/lib/import.py",
"content": "# pylint: skip-file\n# flake8: noqa\n'''\n OpenShiftCLI class that wraps the oc commands in a subprocess\n'''\n# pylint: disable=too-many-lines\n\nfrom __future__ import print_function\nimport atexit\nimport json\nimport os\nimport re\nimport ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 13,
"total_bytes": 67346,
"all_permissive": false
} |
ansible_role | jigneshpurohit/openshift_playbook | 7127518224d996e01a89db147434e404ebd35296 | 0 | roles/openshift_excluder | 1,939 | [
"no_license"
] | [
{
"path": "roles/openshift_excluder/tasks/install.yml",
"content": "---\n- name: Install latest excluder\n package:\n name: \"{{ openshift.common.service_type }}-excluder\"\n state: latest\n when:\n - openshift_excluder_enabled | default(false) | bool\n - not openshift.common.is_containerized | bo... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 4946,
"all_permissive": false
} |
ansible_role | jigneshpurohit/openshift_playbook | 7127518224d996e01a89db147434e404ebd35296 | 0 | roles/openshift_logging | 1,939 | [
"no_license"
] | [
{
"path": "roles/openshift_logging/handlers/main.yml",
"content": "---\n- name: restart master\n systemd: name={{ openshift.common.service_type }}-master state=restarted\n when: (openshift.master.ha is not defined or not openshift.master.ha | bool) and (not (master_service_status_changed | default(false) ... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 22506,
"all_permissive": false
} |
ansible_role | jigneshpurohit/openshift_playbook | 7127518224d996e01a89db147434e404ebd35296 | 0 | roles/openshift_master | 1,939 | [
"no_license"
] | [
{
"path": "roles/openshift_master/tasks/system_container.yml",
"content": "---\n- name: Pre-pull master system container image\n command: >\n atomic pull --storage=ostree {{ openshift.common.system_images_registry }}/{{ openshift.master.master_system_image }}:{{ openshift_image_tag }}\n register: pull_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1559,
"all_permissive": false
} |
ansible_role | jigneshpurohit/openshift_playbook | 7127518224d996e01a89db147434e404ebd35296 | 0 | roles/openshift_node | 1,939 | [
"no_license"
] | [
{
"path": "roles/openshift_node/tasks/openvswitch_system_container.yml",
"content": "---\n- name: Pre-pull OpenVSwitch system container image\n command: >\n atomic pull --storage=ostree {{ openshift.common.system_images_registry }}/{{ openshift.node.ovs_system_image }}:{{ openshift_image_tag }}\n regis... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3092,
"all_permissive": false
} |
ansible_role | jigneshpurohit/openshift_playbook | 7127518224d996e01a89db147434e404ebd35296 | 0 | roles/openshift_node_upgrade | 1,939 | [
"no_license"
] | [
{
"path": "roles/openshift_node_upgrade/tasks/main.yml",
"content": "---\n# input variables:\n# - l_docker_upgrade\n# - openshift.common.is_atomic\n# - node_config_hook\n# - openshift_pkg_version\n# - openshift.common.is_containerized\n# - deployment_type\n# - openshift_release\n\n# tasks file for openshift... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2662,
"all_permissive": false
} |
ansible_role | jigneshpurohit/openshift_playbook | 7127518224d996e01a89db147434e404ebd35296 | 0 | roles/openshift_serviceaccounts | 1,939 | [
"no_license"
] | [
{
"path": "roles/openshift_serviceaccounts/tasks/main.yml",
"content": "---\n- name: create the service account\n oc_serviceaccount:\n name: \"{{ item }}\"\n namespace: \"{{ openshift_serviceaccounts_namespace }}\"\n state: present\n with_items:\n - \"{{ openshift_serviceaccounts_names }}\"\n\n-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1090,
"all_permissive": false
} |
ansible_role | razackou/terraform-ansible-stack | b6b73be35a6167d02a900eadba410fc68984d08c | 0 | roles/lamp-services | 1,939 | [
"no_license"
] | [
{
"path": "roles/lamp-services/tasks/main.yaml",
"content": "---\n - name: Update apt cache\n apt:\n update_cache: yes\n\n - name: Install Apache\n apt:\n name: apache2\n state: present\n\n - name: Ensure Apache is running\n systemd:\n name: apache2\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3290,
"all_permissive": false
} |
ansible_role | savitharaghunathan/privatek8sclustercreation | 5ff402d513bb47a15302d49f9da04f470e239122 | 0 | roles/clustercreation | 1,939 | [
"permissive"
] | [
{
"path": "roles/clustercreation/tasks/cluster.yml",
"content": "- name: Create Azure Kubernetes Service\n hosts: localhost\n connection: local\n vars:\n resource_group: default-rg\n location: eastus\n aks_name: privatek8scluster\n username: clusteradmin\n ssh_key: \"<replace with ssh key>... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1427,
"all_permissive": true
} |
ansible_role | ArdanaCLM/manila-ansible | b5905e4a0ef883692694f91ef3311eaccffd957a | 0 | roles/MNL-API | 1,939 | [
"permissive"
] | [
{
"path": "roles/MNL-API/tasks/keystone_conf.yml",
"content": "#\n# (c) Copyright 2016 Hewlett Packard Enterprise Development LP\n# (c) Copyright 2018 SUSE LLC\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n# not use this file except in compliance with the License. You may ... | {
"task_files": 8,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 13,
"total_bytes": 26102,
"all_permissive": true
} |
ansible_role | ArdanaCLM/manila-ansible | b5905e4a0ef883692694f91ef3311eaccffd957a | 0 | roles/MNL-SHR | 1,939 | [
"permissive"
] | [
{
"path": "roles/MNL-SHR/tasks/install.yml",
"content": "#\n# (c) Copyright 2016 Hewlett Packard Enterprise Development LP\n# (c) Copyright 2018 SUSE LLC\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n# not use this file except in compliance with the License. You may obtain... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 8629,
"all_permissive": true
} |
ansible_role | ArdanaCLM/manila-ansible | b5905e4a0ef883692694f91ef3311eaccffd957a | 0 | roles/_MNL-CMN | 1,939 | [
"permissive"
] | [
{
"path": "roles/_MNL-CMN/tasks/_service_status.yml",
"content": "#\n# (c) Copyright 2016 Hewlett Packard Enterprise Development LP\n# (c) Copyright 2018 SUSE LLC\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n# not use this file except in compliance with the License. You m... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 16445,
"all_permissive": true
} |
ansible_role | karthikeyan0906/Example-service | f55ecb89b15718bb37a27b3ee1b50a8d5ac5911f | 0 | deploy/ansible/roles/service-config | 1,939 | [
"no_license"
] | [
{
"path": "deploy/ansible/roles/service-config/tasks/main.yml",
"content": "---\n# tasks file for service\n\n- name: create non-root user\n user: name=exampleService comment=\"example service user\"\n\n- name: change permissions on log dir\n file: path=/var/log/inin owner=exampleService group=exampleServi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1360,
"all_permissive": false
} |
ansible_role | karthikeyan0906/Example-service | f55ecb89b15718bb37a27b3ee1b50a8d5ac5911f | 0 | deploy/ansible/roles/start | 1,939 | [
"no_license"
] | [
{
"path": "deploy/ansible/roles/start/tasks/main.yml",
"content": "---\n- name: Make sure a example service is running\n systemd:\n state: started\n name: exampleService",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 105
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 105,
"all_permissive": false
} |
ansible_role | varshineevenkatesan/ambari_with_flink | 8bbbdf58198029b6503a5ef8227b7f754f0824bb | 1 | playbooks/roles/Install_flink | 1,939 | [
"no_license"
] | [
{
"path": "playbooks/roles/Install_flink/tasks/body.json",
"content": "[{\"Clusters\":{\"desired_config\":[{\"type\":\"flink-ambari-config\",\"tag\":\"version1536583485473\",\"properties\":{\"flink_appname\":\"flinkapp-from-ambari\",\"flink_container_memory\":\"1024\",\"flink_download_url\":\"https://archiv... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 5701,
"all_permissive": false
} |
ansible_role | sabhanot/final_project | f64953ed3312655b5ce9a7fe17570243792de0e7 | 0 | ztp/roles/router | 1,939 | [
"no_license"
] | [
{
"path": "ztp/roles/router/tasks/main.yml",
"content": "---\n- name: generating config files\n template: \n src: router_template.j2\n dest: /etc/ansible/final_project/ztp/CONFIGS/{{ item.hostname}}.txt\n with_items: \"{{ routers }}\"\n",
"license_type": "no_license",
"detected_licenses": []... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 451,
"all_permissive": false
} |
ansible_role | sabhanot/final_project | f64953ed3312655b5ce9a7fe17570243792de0e7 | 0 | ztp/roles/switch | 1,939 | [
"no_license"
] | [
{
"path": "ztp/roles/switch/templates/switch_template.j2",
"content": "router ospf 1\n\n\n{% for interface in item.interfaces %}\ninterface {{ interface.interface_id }}\nno sw\ndescription {{ interface.description }}\nip address {{ interface.address }} {{ interface.netmask }}\nip ospf 1 area {{ interface.os... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1077,
"all_permissive": false
} |
ansible_role | Chiaggs/ansible-vs-cfengine | e2adbb16e10a081b13a494c1c3beef425d2beaaf | 0 | ansible playbook/playbook-hw/roles/egw | 1,939 | [
"no_license"
] | [
{
"path": "ansible playbook/playbook-hw/roles/egw/templates/bgpd.conf2.j2",
"content": "router bgp 102\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 15
},
{
"path": "ansible playbook/playbook-hw/roles/egw/templates/bgpd.conf1.j2",
"content": "router bgp 101... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 658,
"all_permissive": false
} |
ansible_role | Chiaggs/ansible-vs-cfengine | e2adbb16e10a081b13a494c1c3beef425d2beaaf | 0 | ansible playbook/playbook-hw/roles/igw | 1,939 | [
"no_license"
] | [
{
"path": "ansible playbook/playbook-hw/roles/igw/tasks/main.yml",
"content": " - name: Create LC Containers ( LC1 and LC2 )\n docker_container:\n image: pmalik3311/team1quagganew\n name: \"LC{{ item }}\"\n state: started\n tty: yes\n privileged: yes\n with_sequence: count... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 465,
"all_permissive": false
} |
ansible_role | loicmathieu/ansible-tuto | db4a75e8a1049298181213a4ffffaf3cd8c925a8 | 0 | roles/derby | 1,939 | [
"no_license"
] | [
{
"path": "roles/derby/templates/start.sh",
"content": "echo \"starting derby server on host {{ ansible_nodename }}\"\nnohup java -jar /opt/derby/db-derby-10.13.1.1-bin/lib/derbyrun.jar server start &\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 142
},
{
"path... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 912,
"all_permissive": false
} |
ansible_role | loicmathieu/ansible-tuto | db4a75e8a1049298181213a4ffffaf3cd8c925a8 | 0 | roles/nginx | 1,939 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n - name: Install EPEL repository where nginx packages lies.\n yum: name=epel-release state=latest\n\n - name: Install nginx webserver\n yum: name=nginx state=latest\n",
"license_type": "no_license",
"detected_licenses": [],
"size_b... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 173,
"all_permissive": false
} |
ansible_role | loicmathieu/ansible-tuto | db4a75e8a1049298181213a4ffffaf3cd8c925a8 | 0 | roles/tomcat | 1,939 | [
"no_license"
] | [
{
"path": "roles/tomcat/tasks/main.yml",
"content": "---\n\n - name: Download latest Tomcat version\n get_url: url=http://apache.mindstudios.com/tomcat/tomcat-8/v8.5.11/bin/apache-tomcat-8.5.11.tar.gz \n dest=/tmp\n\n - name: Create the destination dir\n file: name=/opt/tomcat state=dire... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 456,
"all_permissive": false
} |
ansible_role | komuw/consul-demo | 103333b9cd3f4f34fbd38102a78e39b9c9a22d74 | 0 | devops/roles/app_role | 1,939 | [
"no_license"
] | [
{
"path": "devops/roles/app_role/handlers/main.yml",
"content": "---\n# handlers file for app_server\n\n- name: reload nginx\n service: name=nginx state=reloaded",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 93
},
{
"path": "devops/roles/app_role/templates/logro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3018,
"all_permissive": false
} |
ansible_role | komuw/consul-demo | 103333b9cd3f4f34fbd38102a78e39b9c9a22d74 | 0 | devops/roles/common_role | 1,939 | [
"no_license"
] | [
{
"path": "devops/roles/common_role/tasks/main.yml",
"content": "---\n\n# tasks to be run on all nodes\n- name: remove potential apt lock \n command: sudo rm -rf /var/cache/apt/archives/lock && sudo rm -rf /var/lib/dpkg/lock && sudo rm /var/cache/debconf/*.dat && sudo rm /var/lib/apt/lists/lock\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1261,
"all_permissive": false
} |
ansible_role | komuw/consul-demo | 103333b9cd3f4f34fbd38102a78e39b9c9a22d74 | 0 | devops/roles/consul-role | 1,939 | [
"no_license"
] | [
{
"path": "devops/roles/consul-role/tasks/main.yml",
"content": "---\n\n- name: download consul\n shell: wget --directory-prefix=/tmp https://releases.hashicorp.com/consul/0.5.2/consul_0.5.2_linux_amd64.zip\n\n- name: unzip consul\n command: unzip consul_0.5.2_linux_amd64.zip chdir=/tmp\n\n",
"license... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 220,
"all_permissive": false
} |
ansible_role | komuw/consul-demo | 103333b9cd3f4f34fbd38102a78e39b9c9a22d74 | 0 | devops/roles/haproxy_role | 1,939 | [
"no_license"
] | [
{
"path": "devops/roles/haproxy_role/defaults/main.yml",
"content": "haproxy_logrotate_config: /etc/logrotate.d/haproxy\n\nhaproxy_rsyslog_priority: 49\nhaproxy_rsyslog_conf: \"/etc/rsyslog.d/{{ haproxy_rsyslog_priority }}-haproxy.conf\"\n\nhaproxy_log_path: /var/log/haproxy\nhaproxy_log_info: \"{{ haproxy_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 3035,
"all_permissive": false
} |
ansible_role | maishsk/replace-aws-elb | 53e58c00f6221289476e99294f412e4103a064f8 | 0 | roles/ec2 | 1,939 | [
"no_license"
] | [
{
"path": "roles/ec2/README.md",
"content": "Role Name\n=========\n\nDeploy an EC2 instance in AWS\n\nRole Variables\n--------------\n\nThe role accepts the following Variables\n\n`vpc_id` - ID of the VPC that you will deploy into \n`keypair`- Name of the keypair \n`vpc_cidr_block` - CIDR of the VPC ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3389,
"all_permissive": false
} |
ansible_role | maishsk/replace-aws-elb | 53e58c00f6221289476e99294f412e4103a064f8 | 0 | roles/haproxy | 1,939 | [
"no_license"
] | [
{
"path": "roles/haproxy/tasks/main.yml",
"content": "---\n- name: get Instance ID\n shell: curl -sf http://169.254.169.254/latest/meta-data/instance-id\n become: true\n become_user: root\n register: hostid\n\n- name: Create hostname fact\n set_fact:\n currenthostname: \"{{ component_name }}-{{ host... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 6193,
"all_permissive": false
} |
ansible_role | maishsk/replace-aws-elb | 53e58c00f6221289476e99294f412e4103a064f8 | 0 | roles/iam_role | 1,939 | [
"no_license"
] | [
{
"path": "roles/iam_role/meta/main.yml",
"content": "galaxy_info:\n author: <NAME>\n description: Create an IAM role with a managed policy\n license: MIT\n min_ansible_version: 2.6\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 128
},
{
"path": "roles/iam_r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 960,
"all_permissive": false
} |
ansible_role | maishsk/replace-aws-elb | 53e58c00f6221289476e99294f412e4103a064f8 | 0 | roles/secgroup | 1,939 | [
"no_license"
] | [
{
"path": "roles/secgroup/tasks/main.yml",
"content": "---\n- name: Build SG name without component name\n when: component_name is defined\n set_fact: sg_name=\"{{ component_name }}_SG\"\n\n- name: Build SG description without stack_name\n when: sg_description_with_stack_name is not defined\n set_fact: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1158,
"all_permissive": false
} |
ansible_role | rukesh2devops/ansible_batch | 3234308cf0b3f87181fa6f0141a8df222e009616 | 0 | roles/haproxy | 2,019 | [
"no_license"
] | [
{
"path": "roles/haproxy/tasks/main.yml",
"content": "---\n# tasks file for haproxyi\n#\n#\n\n- name: simple file copy\n copy:\n src: /etc/group\n dest: /tmp/group_haproxy_copy\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 123
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 123,
"all_permissive": false
} |
ansible_role | rukesh2devops/ansible_batch | 3234308cf0b3f87181fa6f0141a8df222e009616 | 0 | roles/vsftpd-project-role | 2,019 | [
"no_license"
] | [
{
"path": "roles/vsftpd-project-role/templates/rk-jinja-file.j2",
"content": "Hi This is <NAME> and it is Jinja2 file\nHostname = {{ ansible_hostname }}\nHostIPAddress = {{ ansible_default_ipv4.address }}\nMemory = {{ ansible_memory_mb.real.total }}\n",
"license_type": "no_license",
"detected_licens... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 901,
"all_permissive": false
} |
ansible_role | charlesdaniels/provisioning | 61c1c464bfb4ecbe5a5b576e5ac990149c3764f2 | 0 | roles/common | 2,019 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n- name: Install sources.list\n template:\n src: sources.list\n dest: /etc/apt/sources.list\n mode: 0644\n become_user: root\n become_method: sudo\n become: yes\n\n- name: Update and upgrade apt packages\n apt:\n upgrade: yes\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 11569,
"all_permissive": false
} |
ansible_role | charlesdaniels/provisioning | 61c1c464bfb4ecbe5a5b576e5ac990149c3764f2 | 0 | roles/from-blob | 2,019 | [
"no_license"
] | [
{
"path": "roles/from-blob/tasks/main.yml",
"content": "---\n- name: Ensure Repos Directory Exists\n file: path={{setupsoftware_dir}} state=directory\n\n- name: Extract exa\n unarchive:\n src: \"https://github.com/ogham/exa/releases/download/v0.8.0/exa-linux-x86_64-0.8.0.zip\"\n dest: \"{{setups... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2318,
"all_permissive": false
} |
ansible_role | charlesdaniels/provisioning | 61c1c464bfb4ecbe5a5b576e5ac990149c3764f2 | 0 | roles/from-source | 2,019 | [
"no_license"
] | [
{
"path": "roles/from-source/tasks/main.yml",
"content": "---\n\n- name: Ensure Repos Directory Exists\n file: path={{setupsoftware_dir}} state=directory\n\n- name: Clone dotfiles\n git:\n repo: 'git://github.com/charlesdaniels/dotfiles.git'\n dest: '{{setupsoftware_dir}}/dotfiles'\n update: yes\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3905,
"all_permissive": false
} |
ansible_role | charlesdaniels/provisioning | 61c1c464bfb4ecbe5a5b576e5ac990149c3764f2 | 0 | roles/latex | 2,019 | [
"no_license"
] | [
{
"path": "roles/latex/tasks/main.yml",
"content": "---\n- name: CLI tools\n apt: pkg={{ item }} state=latest\n with_items:\n - texlive\n - latexmk\n - texlive-latex-extra\n - texlive-science\n - texlive-fonts-extra\n - texlive-extra-utils\n\n become: yes\n become_user: roo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 268,
"all_permissive": false
} |
ansible_role | charlesdaniels/provisioning | 61c1c464bfb4ecbe5a5b576e5ac990149c3764f2 | 0 | roles/t430 | 2,019 | [
"no_license"
] | [
{
"path": "roles/t430/tasks/main.yml",
"content": "---\n- name: Install Services\n template: src={{ item }}.service.j2 dest=/etc/systemd/system/{{ item }}.service\n become: yes\n become_user: root\n become_method: sudo\n with_items:\n - xhci_reset\n\n- name: Enable Services\n service: name={{ ite... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 534,
"all_permissive": false
} |
ansible_role | charlesdaniels/provisioning | 61c1c464bfb4ecbe5a5b576e5ac990149c3764f2 | 0 | roles/workstation | 2,019 | [
"no_license"
] | [
{
"path": "roles/workstation/templates/scripts/system-reset-xhci",
"content": "#!/bin/sh\n\n# .SCRIPTDOC\n\n# This script attempts to reset all XHCI drivers in the kernel. This fixes\n# the no USB after resume on some Linux laptops.\n\n# Original source for this methodology:\n# http://www.ubuntubuzz.com/201... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 5419,
"all_permissive": false
} |
ansible_role | charlesdaniels/provisioning | 61c1c464bfb4ecbe5a5b576e5ac990149c3764f2 | 0 | roles/x220 | 2,019 | [
"no_license"
] | [
{
"path": "roles/x220/tasks/main.yml",
"content": "---\n- name: Install Services\n template: src={{ item }}.service.j2 dest=/etc/systemd/system/{{ item }}.service\n become: yes\n become_user: root\n become_method: sudo\n with_items:\n - xhci_reset\n\n- name: Install Trackpoint Speed fFix\n templa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1273,
"all_permissive": false
} |
ansible_role | SME111/devops | 0aac3edfce12fa30ce79640480c59575cdbeb2c1 | 0 | devops_project/roles/tomcat | 2,019 | [
"no_license"
] | [
{
"path": "devops_project/roles/tomcat/tasks/create_users.yml",
"content": "- name: \"Create tomcat group\"\n group: name=tomcat gid=5000\n\n- name: \"Create Athorised User\"\n user: name=tomcat comment=\"Tomcat App User\" uid=5000 group=5000\n\n",
"license_type": "no_license",
"detected_licenses"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 372,
"all_permissive": false
} |
ansible_role | ANAVHEOBA/todo-app-infrastructure | 760121f6c7f030b22a17b51ae41ff7b7f657af83 | 0 | ansible/roles/app | 2,019 | [
"no_license"
] | [
{
"path": "ansible/roles/app/templates/.env.j2",
"content": "DOMAIN_NAME={{ domain_name }}\nJWT_SECRET={{ jwt_secret }}\nREDIS_HOST=redis\nREDIS_PORT=6379\nREDIS_CHANNEL=log_channel\nZIPKIN_URL=http://zipkin:9411/api/v2/spans\nTODO_API_PORT=8082\nAUTH_API_PORT=8081\nUSERS_API_PORT=8083\n",
"license_type... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1050,
"all_permissive": false
} |
ansible_role | ANAVHEOBA/todo-app-infrastructure | 760121f6c7f030b22a17b51ae41ff7b7f657af83 | 0 | ansible/roles/docker | 2,019 | [
"no_license"
] | [
{
"path": "ansible/roles/docker/tasks/main.yml",
"content": "---\n- name: Update apt cache\n apt:\n update_cache: yes\n cache_valid_time: 3600\n\n- name: Install required packages\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - software-properties-commo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 831,
"all_permissive": false
} |
ansible_role | dsparks-clgx/iac-test | ed4d0ab4e842e4386c956ad8d5db9f4e6ab9deb2 | 0 | ansible/roles/imperva | 2,019 | [
"no_license"
] | [
{
"path": "ansible/roles/imperva/tasks/disable_enable_maintenance_page.yml",
"content": "---\r\n\r\n- name: Print Selected Sites\r\n debug:\r\n msg: \"{{ selected_sites }}\"\r\n\r\n- name: \"{{ status_msg }} Maintenance Redirect All Rule\"\r\n debug:\r\n msg: \"https://my.imperva.com/api/prov/v1/sit... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2559,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/ansible | 2,019 | [
"no_license"
] | [
{
"path": "roles/ansible/tasks/main.yml",
"content": "---\n# Install ansible client\n\n- name: Install Ansible\n action: \"{{ ansible_pkg_mgr }} name=ansible state=present\"\n when: not openshift.common.is_containerized | bool\n\n- include: config.yml\n vars:\n cfg_options: \"{{ ans_config }}\"\n",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 235,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/cockpit | 2,019 | [
"no_license"
] | [
{
"path": "roles/cockpit/tasks/main.yml",
"content": "---\n- name: Install cockpit-ws\n action: \"{{ ansible_pkg_mgr }} name={{ item }} state=present\"\n with_items:\n - cockpit-ws\n - cockpit-shell\n - cockpit-bridge\n - \"{{ cockpit_plugins }}\"\n when: not openshift.common.is_containerized... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 350,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/docker | 2,019 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n# tasks file for docker\n- name: Install docker\n action: \"{{ ansible_pkg_mgr }} name=docker state=present\"\n when: not openshift.common.is_atomic | bool\n \n- name: enable and start the docker service\n service:\n name: docker\n enabled:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 659,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/etcd | 2,019 | [
"no_license"
] | [
{
"path": "roles/etcd/tasks/main.yml",
"content": "---\n- fail:\n msg: Interface {{ etcd_interface }} not found\n when: \"'ansible_' ~ etcd_interface not in hostvars[inventory_hostname]\"\n\n- fail:\n msg: IPv4 address not found for {{ etcd_interface }}\n when: \"'ipv4' not in hostvars[inventory_hos... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3220,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/haproxy | 2,019 | [
"no_license"
] | [
{
"path": "roles/haproxy/tasks/main.yml",
"content": "---\n- name: Install haproxy\n action: \"{{ ansible_pkg_mgr }} name=haproxy state=present\"\n when: not openshift.common.is_containerized | bool\n\n- name: Configure haproxy\n template:\n src: haproxy.cfg.j2\n dest: /etc/haproxy/haproxy.cfg\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 542,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/openshift_cli | 2,019 | [
"no_license"
] | [
{
"path": "roles/openshift_cli/templates/openshift.j2",
"content": "#!/bin/bash\nif [ ! -d ~/.kube ]; then\n mkdir -m 0700 ~/.kube\nfi\ncmd=`basename $0`\nuser=`id -u`\ngroup=`id -g`\n\n# docker can only split stderr and stdin when run without -t\n# https://github.com/docker/docker/issues/725\n# ansible c... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1856,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/openshift_common | 2,019 | [
"no_license"
] | [
{
"path": "roles/openshift_common/tasks/main.yml",
"content": "---\n- fail:\n msg: Flannel can not be used with openshift sdn\n when: openshift_use_openshift_sdn | default(false) | bool and openshift_use_flannel | default(false) | bool\n\n- fail:\n msg: openshift_hostname must be 64 characters or les... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1880,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/openshift_docker | 2,019 | [
"no_license"
] | [
{
"path": "roles/openshift_docker/tasks/main.yml",
"content": "---\n- name: Set docker facts\n openshift_facts:\n role: \"{{ item.role }}\"\n local_facts: \"{{ item.local_facts }}\"\n with_items:\n - role: common\n local_facts:\n deployment_type: \"{{ openshift_deployment_type }}\"\n d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2351,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/openshift_facts | 2,019 | [
"no_license"
] | [
{
"path": "roles/openshift_facts/tasks/main.yml",
"content": "---\n- name: Verify Ansible version is greater than 1.8.0 and not 1.9.0 and not 1.9.0.1\n assert:\n that:\n - ansible_version | version_compare('1.8.0', 'ge')\n - ansible_version | version_compare('1.9.0', 'ne')\n - ansible_version |... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 921,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/openshift_master | 2,019 | [
"no_license"
] | [
{
"path": "roles/openshift_master/templates/atomic-openshift-master-api.docker.service.j2",
"content": "[Unit]\nDescription=Atomic OpenShift Master API\nDocumentation=https://github.com/openshift/origin\nAfter=network.target\nAfter=etcd.service\nBefore={{ openshift.common.service_type }}-node.service\nRequi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 18716,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/openshift_master_ca | 2,019 | [
"no_license"
] | [
{
"path": "roles/openshift_master_ca/tasks/main.yml",
"content": "---\n- name: Install the base package for admin tooling\n action: \"{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}{{ openshift_version }} state=present\"\n when: not openshift.common.is_containerized | bool\n register: ins... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1225,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/openshift_node | 2,019 | [
"no_license"
] | [
{
"path": "roles/openshift_node/tasks/storage_plugins/glusterfs.yml",
"content": "---\n- name: Install GlusterFS storage plugin dependencies\n action: \"{{ ansible_pkg_mgr }} name=glusterfs-fuse state=present\"\n when: not openshift.common.is_containerized | bool\n\n- name: Set sebooleans to allow gluster... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 8313,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/openshift_node_certificates | 2,019 | [
"no_license"
] | [
{
"path": "roles/openshift_node_certificates/tasks/main.yml",
"content": "---\n- name: Create openshift_generated_configs_dir if it doesn't exist\n file:\n path: \"{{ openshift_generated_configs_dir }}\"\n state: directory\n when: nodes_needing_certs | length > 0\n\n- name: Generate the node client ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1623,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/openshift_repos | 2,019 | [
"no_license"
] | [
{
"path": "roles/openshift_repos/handlers/main.yml",
"content": "---\n- name: refresh cache\n command: \"{{ ansible_pkg_mgr }} clean all\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 71
},
{
"path": "roles/openshift_repos/tasks/main.yaml",
"content": "--... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2850,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/openshift_serviceaccounts | 2,019 | [
"no_license"
] | [
{
"path": "roles/openshift_serviceaccounts/tasks/main.yml",
"content": "- name: tmp dir for openshift\n file:\n path: /tmp/openshift\n state: directory\n owner: root\n mode: 700\n\n- name: Create service account configs\n template:\n src: serviceaccount.j2\n dest: \"/tmp/openshift/{{ ite... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1264,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/os_env_extras | 2,019 | [
"no_license"
] | [
{
"path": "roles/os_env_extras/tasks/main.yaml",
"content": "---\n# environment configuration role, configures irbrc, vimrc\n\n- name: Ensure irbrc is installed for user root\n copy:\n src: irbrc\n dest: /root/.irbrc\n\n- name: Ensure vimrc is installed for user root\n copy:\n src: vimrc\n des... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 398,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/os_update_latest | 2,019 | [
"no_license"
] | [
{
"path": "roles/os_update_latest/tasks/main.yml",
"content": "---\n- fail:\n msg: \"Update is not yet supported by this playbook on atomic hosts\"\n when: openshift.common.is_containerized | bool\n\n- name: Update all packages\n action: \"{{ ansible_pkg_mgr }} name=* state=latest\"\n when: not opensh... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 268,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/os_zabbix | 2,019 | [
"no_license"
] | [
{
"path": "roles/os_zabbix/vars/template_zagg_server.yml",
"content": "---\ng_template_zagg_server:\n name: Template Zagg Server\n zitems:\n - key: zagg.server.metrics.count\n applications:\n - Zagg Server\n value_type: int\n\n - key: zagg.server.metrics.errors\n applications:\n - Zagg Se... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 17985,
"all_permissive": false
} |
ansible_role | jameskellynet/openshift-ansible | 7e7ac85e2ecc16c1db11a03d7155d8986af30379 | 1 | roles/oso_host_monitoring | 2,019 | [
"no_license"
] | [
{
"path": "roles/oso_host_monitoring/handlers/main.yml",
"content": "---\n- name: \"Restart the {{ osohm_host_monitoring }} service\"\n service:\n name: \"{{ osohm_host_monitoring }}\"\n state: restarted\n enabled: yes\n\n- name: \"Restart the {{ osohm_zagg_client }} service\"\n service:\n nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 7933,
"all_permissive": false
} |
ansible_role | cverna/ansible-playbooks | e306038858469119d4dd14df76eb582da3181af9 | 1 | roles/blogger | 2,019 | [
"no_license"
] | [
{
"path": "roles/blogger/tasks/main.yml",
"content": "---\n- name: Install basic packages\n become: true\n command: \"buildah run {{ container_name }} -- microdnf install -y {{ item }}\"\n with_items:\n - asciidoctor\n - python3-pelican\n\n- name: Copy pelican theme and plugins\n command: \"bu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 424,
"all_permissive": false
} |
ansible_role | cverna/ansible-playbooks | e306038858469119d4dd14df76eb582da3181af9 | 1 | roles/core | 2,019 | [
"no_license"
] | [
{
"path": "roles/core/files/nvim/init.vim",
"content": "\".vimrc <NAME>\n\"\n\"Solarized theme\nsyntax enable\nsyntax on\nset background=dark\n\n\"\n\"Settings\n\"\nset noerrorbells\nset number\nset showcmd\n\"set showmode\n\nset noswapfile\nset nobackup\nset nowritebackup\nset splitright\nset splitbelow\ns... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 5388,
"all_permissive": false
} |
ansible_role | kalaolani/cassandra22x-ansible-rolling-restart | 1bcef36d7e78930f450d332b6abd8ca9654d1a3b | 1 | ansible/etc/ansible/roles/cassandra22x_operate_start | 2,019 | [
"no_license"
] | [
{
"path": "ansible/etc/ansible/roles/cassandra22x_operate_start/tasks/main.yml",
"content": "---\n- import_tasks: start_cassandra.yml",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 39
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 39,
"all_permissive": false
} |
ansible_role | kalaolani/cassandra22x-ansible-rolling-restart | 1bcef36d7e78930f450d332b6abd8ca9654d1a3b | 1 | ansible/etc/ansible/roles/cassandra22x_operate_stop | 2,019 | [
"no_license"
] | [
{
"path": "ansible/etc/ansible/roles/cassandra22x_operate_stop/tasks/main.yml",
"content": "---\n- import_tasks: stop_cassandra.yml",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 38
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 38,
"all_permissive": false
} |
ansible_role | jhamhader/sojourn | 8bd69c881d1948e10dd3dfbadae2476dc8a648ac | 0 | ansible/roles/common | 2,019 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/main.yaml",
"content": "---\n- name: gather facts\n setup:\n check_mode: no\n ignore_errors: True\n register: facts\n\n- name: install python2\n raw: dnf -y install python-dnf libselinux-python\n when: facts|failed\n\n- name: ensure wheel group\n group: name=whee... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 428,
"all_permissive": false
} |
ansible_role | jhamhader/sojourn | 8bd69c881d1948e10dd3dfbadae2476dc8a648ac | 0 | ansible/roles/devstack-packages-prerequisites | 2,019 | [
"no_license"
] | [
{
"path": "ansible/roles/devstack-packages-prerequisites/tasks/main.yaml",
"content": "---\n- name: upgrade dnf\n dnf: name=dnf state=latest\n- name: dnf update\n dnf: name='*' state=latest\n- name: install basic tools\n dnf: name={{item}} state=present\n with_items:\n - tmux\n - python-pip\n -... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 544,
"all_permissive": false
} |
ansible_role | jhamhader/sojourn | 8bd69c881d1948e10dd3dfbadae2476dc8a648ac | 0 | ansible/roles/devstack-run | 2,019 | [
"no_license"
] | [
{
"path": "ansible/roles/devstack-run/tasks/main.yaml",
"content": "---\n- name: obtain devstack\n become: yes\n become_user: stack\n git:\n repo: https://git.openstack.org/openstack-dev/devstack\n dest: /opt/stack/devstack\n\n- name: set local.conf\n template:\n src: \"{{ devstack_local_conf }... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 846,
"all_permissive": false
} |
ansible_role | jhamhader/sojourn | 8bd69c881d1948e10dd3dfbadae2476dc8a648ac | 0 | ansible/roles/devstack-stack-user | 2,019 | [
"no_license"
] | [
{
"path": "ansible/roles/devstack-stack-user/tasks/main.yaml",
"content": "---\n- name: add stack user\n user: name=stack home=/opt/stack groups=wheel password=\"<PASSWORD>\" state=present\n\n- name: dotfiles\n copy:\n src: \"{{ item }}\"\n dest: /opt/stack/.{{ item }}\n owner: stack\n group: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 298,
"all_permissive": false
} |
ansible_role | pavel-lucik/ansible_lessons | 211838e883ca19b9bacaf649c5531fa342b3b590 | 0 | playbooks/roles/common_archive_tools | 2,019 | [
"permissive"
] | [
{
"path": "playbooks/roles/common_archive_tools/defaults/main.yml",
"content": "---\n# defaults file for common_archive_tools\nuninstall_list:\n - zip\n - unzip\n\ninstall_list:\n - zip\n - unzip\n - gzip\n - nano\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1542,
"all_permissive": true
} |
ansible_role | pavel-lucik/ansible_lessons | 211838e883ca19b9bacaf649c5531fa342b3b590 | 0 | playbooks/roles/nginx_configure | 2,019 | [
"permissive"
] | [
{
"path": "playbooks/roles/nginx_configure/README.md",
"content": "Role Name\n=========\n\nThis role install/uninstall, start/stop, enable/disable autostart of NGINX webserver\n\nExample Playbook\n----------------\n\nRun your playbook with the following tags:\n --tags=\"nginx_install\" to install NGINX\n ... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 2601,
"all_permissive": true
} |
ansible_role | vkurguzov1pt/install-opencv | 233ebf1c7ac2f4d271239b210ae8174a06839f33 | 0 | roles/kurento | 2,138 | [
"no_license"
] | [
{
"path": "roles/kurento/tasks/main.yml",
"content": "---\n- name: Enable NTP service\n service :\n name : ntp\n enabled : yes\n become : yes\n- name: Add the Kurento gpg key\n apt_key:\n keyserver: keyserver.ubuntu.com\n id: 5AFA7A83\n become: yes\n\n- name: Add the Kurento reposito... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1837,
"all_permissive": false
} |
ansible_role | vkurguzov1pt/install-opencv | 233ebf1c7ac2f4d271239b210ae8174a06839f33 | 0 | roles/mongodb | 2,138 | [
"no_license"
] | [
{
"path": "roles/mongodb/tasks/main.yml",
"content": "---\n\n- name: Add MongoDB Key\n apt_key:\n keyserver : keyserver.ubuntu.com\n id : EA312927\n become : yes \n\n- name: Add MongoDB repository\n apt_repository:\n repo : deb http://repo.mongodb.org/apt/ubuntu xenial/mongodb-or... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 949,
"all_permissive": false
} |
ansible_role | vkurguzov1pt/install-opencv | 233ebf1c7ac2f4d271239b210ae8174a06839f33 | 0 | roles/opencv | 2,138 | [
"no_license"
] | [
{
"path": "roles/opencv/tasks/main.yml",
"content": "---\n- name: Create OpenCV Home Folder\n file:\n path: '{{ cvHomeDir }}'\n state: directory\n\n- name: Create directory for installation\n file:\n path: '{{ cvInstallDir }}'\n state: directory\n\n- name: Remove default x264 and libx264-dev\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3050,
"all_permissive": false
} |
ansible_role | vkurguzov1pt/install-opencv | 233ebf1c7ac2f4d271239b210ae8174a06839f33 | 0 | roles/oracle_jdk | 2,138 | [
"no_license"
] | [
{
"path": "roles/oracle_jdk/tasks/main.yml",
"content": "---\n- name: Install add-apt-repostory\n apt:\n name : software-properties-common\n state : latest\n become : yes\n\n- name: Add Oracle Java Repository\n apt_repository:\n repo: 'ppa:webupd8team/java'\n become: yes\n\n- name: Accept Jav... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 608,
"all_permissive": false
} |
ansible_role | vkurguzov1pt/install-opencv | 233ebf1c7ac2f4d271239b210ae8174a06839f33 | 0 | roles/ruby | 2,138 | [
"no_license"
] | [
{
"path": "roles/ruby/tasks/main.yml",
"content": "---\n- name : Download and install Nginx\n apt :\n name : nginx\n state : present\n become : yes\n\n- name: Download and install Postgres\n apt:\n name: \"{{ postgres_packages }}\"\n state: present\n become: yes\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 5830,
"all_permissive": false
} |
ansible_role | vkurguzov1pt/install-opencv | 233ebf1c7ac2f4d271239b210ae8174a06839f33 | 0 | roles/turn-server | 2,138 | [
"no_license"
] | [
{
"path": "roles/turn-server/vars/main.yml",
"content": "# TURN-server config \n \nturn_server:\n listening-port : 80\n tls-listening-port : 443\n external-ip : 172.16.31.10/10.0.2.122\n lt-cred-mech : true\n server-name : proctoru-turn.oxagile.com\n user :... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 947,
"all_permissive": false
} |
ansible_role | danielit24/ansible | a3e25f4539f3a792ea40f5bbafbab7d0b2ae154c | 0 | roles/initial-setup | 2,138 | [
"no_license"
] | [
{
"path": "roles/initial-setup/tasks/main.yml",
"content": "---\n# Sudo User Setup\n- name: Give sudo access to {{remote_user}}\n blockinfile:\n path: /etc/sudoers\n insertafter: '%sudo ALL=(ALL:ALL) ALL'\n block: |\n # Gives sudo access to the {{remote_user}} group\n %{{remote_user}} ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1040,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.