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 | buildwithdemis/tdh | 31c0d39c73e62bc36af8b7cf11a66ea7c22d0e61 | 0 | src/commcare_cloud/ansible/roles/commcarehq | 8,071 | [
"no_license"
] | [
{
"path": "src/commcare_cloud/ansible/roles/commcarehq/tasks/management_commands.yml",
"content": "- set_fact:\n supervisor_management_commands: \"{{ service_home }}/{{ deploy_env }}_supervisor_management_commands.conf\"\n\n- set_fact:\n mgmt_cmd_managed_files:\n - \"{{ supervisor_management_comm... | {
"task_files": 10,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 13,
"total_bytes": 12673,
"all_permissive": false
} |
ansible_role | buildwithdemis/tdh | 31c0d39c73e62bc36af8b7cf11a66ea7c22d0e61 | 0 | src/commcare_cloud/ansible/roles/common | 8,071 | [
"no_license"
] | [
{
"path": "src/commcare_cloud/ansible/roles/common/tasks/logging.yml",
"content": "- name: Decrease console log level\n become: yes\n lineinfile:\n dest: /etc/rsyslog.conf\n regexp: '^\\$klogConsoleLogLevel'\n line: '$klogConsoleLogLevel 4'\n notify: restart rsyslog\n\n- name: Create custom sysl... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 495,
"all_permissive": false
} |
ansible_role | buildwithdemis/tdh | 31c0d39c73e62bc36af8b7cf11a66ea7c22d0e61 | 0 | src/commcare_cloud/ansible/roles/common_installs | 8,071 | [
"no_license"
] | [
{
"path": "src/commcare_cloud/ansible/roles/common_installs/tasks/bionic_apt_installs.yml",
"content": "- name: Install common packages (bionic)\n become: yes\n apt:\n name:\n - software-properties-common\n - python-minimal\n - python3-pip\n - ufw\n",
"license_type": "no_license... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 162,
"all_permissive": false
} |
ansible_role | buildwithdemis/tdh | 31c0d39c73e62bc36af8b7cf11a66ea7c22d0e61 | 0 | src/commcare_cloud/ansible/roles/couchdb2-preinstall | 8,071 | [
"no_license"
] | [
{
"path": "src/commcare_cloud/ansible/roles/couchdb2-preinstall/tasks/main.yml",
"content": "---\n\n- name: Get current couchdb path\n stat:\n path: /usr/local/couchdb2/couchdb\n register: couchdb_current_path\n\n- name: Set current couchdb version\n set_fact:\n couchdb_version_current: \"{{ couchd... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1954,
"all_permissive": false
} |
ansible_role | buildwithdemis/tdh | 31c0d39c73e62bc36af8b7cf11a66ea7c22d0e61 | 0 | src/commcare_cloud/ansible/roles/ebsnvme | 8,071 | [
"no_license"
] | [
{
"path": "src/commcare_cloud/ansible/roles/ebsnvme/tasks/main.yml",
"content": "- name: Install nvme-cli\n become: yes\n apt: name=nvme-cli state=present\n notify: \"Reload udev rules\"\n\n- name: Copy ebsnvme-id\n become: yes\n copy:\n src: \"_vendor/ebsnvme-id\"\n dest: \"/sbin/ebsnvme-id\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 655,
"all_permissive": false
} |
ansible_role | buildwithdemis/tdh | 31c0d39c73e62bc36af8b7cf11a66ea7c22d0e61 | 0 | src/commcare_cloud/ansible/roles/nginx | 8,071 | [
"no_license"
] | [
{
"path": "src/commcare_cloud/ansible/roles/nginx/tasks/reload.yml",
"content": "---\n- name: check nginx configuration\n become: yes\n shell: \"nginx -t\"\n register: result\n check_mode: no\n failed_when: \"result.rc != 0\"\n\n- name: reload the nginx service\n become: yes\n service: name=nginx sta... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 555,
"all_permissive": false
} |
ansible_role | buildwithdemis/tdh | 31c0d39c73e62bc36af8b7cf11a66ea7c22d0e61 | 0 | src/commcare_cloud/ansible/roles/nodejs | 8,071 | [
"no_license"
] | [
{
"path": "src/commcare_cloud/ansible/roles/nodejs/tasks/main.yml",
"content": "- name: Add nodejs apt key\n apt_key:\n url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key\n when: ansible_distribution_version == '18.04'\n become: yes\n\n- name: Add git nodejs repo\n apt_repository:\n repo: '... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1220,
"all_permissive": false
} |
ansible_role | buildwithdemis/tdh | 31c0d39c73e62bc36af8b7cf11a66ea7c22d0e61 | 0 | src/commcare_cloud/ansible/roles/redis | 8,071 | [
"no_license"
] | [
{
"path": "src/commcare_cloud/ansible/roles/redis/tasks/setup_cluster.yml",
"content": "---\n- name: Install redis gem\n command: 'gem install redis -v 3.3.3' # not the latest, because https://github.com/antirez/redis/issues/4272\n become: yes\n\n- name: Add cluster config\n become: yes\n lineinfile:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 541,
"all_permissive": false
} |
ansible_role | buildwithdemis/tdh | 31c0d39c73e62bc36af8b7cf11a66ea7c22d0e61 | 0 | src/commcare_cloud/ansible/roles/ruby_install | 8,071 | [
"no_license"
] | [
{
"path": "src/commcare_cloud/ansible/roles/ruby_install/tasks/main.yml",
"content": "---\n- name: Add ruby ppa\n apt_repository: repo='ppa:brightbox/ruby-ng'\n register: add_ruby_ppa\n\n- name: Update package list for ruby\n apt: update_cache=yes\n when: add_ruby_ppa is changed\n\n- name: Install ruby\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 324,
"all_permissive": false
} |
ansible_role | pharriso/rhel-ha-rhv | cfd8b4a11154ab9b32784388cb1015b24765bc7e | 0 | roles/common | 8,071 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n\n- name: Disable cloud-init\n file:\n path: /etc/cloud/cloud-init.disabled\n state: touch\n\n- name: Stop Cloud init messing with DNS\n file:\n path: /etc/NetworkManager/conf.d/99-cloud-init.conf\n state: absent\n\n- name: Bounce Netwo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1048,
"all_permissive": false
} |
ansible_role | pharriso/rhel-ha-rhv | cfd8b4a11154ab9b32784388cb1015b24765bc7e | 0 | roles/create_rhv_vm | 8,071 | [
"no_license"
] | [
{
"path": "roles/create_rhv_vm/handlers/main.yml",
"content": "---\n# handlers file for create_rhv_vm",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 37
},
{
"path": "roles/create_rhv_vm/tasks/main.yml",
"content": "---\n\n- name: Auth to RHV\n ovirt_auth:\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1529,
"all_permissive": false
} |
ansible_role | mattdclark31/wsl_ubuntu_image_setup | 5618173c41ca58b8a6702a87fa776ce76113af35 | 0 | roles/add_fix_script | 8,071 | [
"no_license"
] | [
{
"path": "roles/add_fix_script/templates/fix.sh.j2",
"content": "#!/bin/bash\n\necho 'Note 1: /etc/resolv.conf will be replaced by /ansible/default_settings/wsl/resolv.conf'\necho 'Note 2: /etc/wsl.conf will be replaced by /ansible/default_settings/wsl/wsl.conf'\necho 'Those files are backed up but if you ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2803,
"all_permissive": false
} |
ansible_role | mattdclark31/wsl_ubuntu_image_setup | 5618173c41ca58b8a6702a87fa776ce76113af35 | 0 | roles/create_main_user | 8,071 | [
"no_license"
] | [
{
"path": "roles/create_main_user/vars/main.yml",
"content": "---\n# vars file for create_main_user\nv_create_main_user_admin_group: \"required\"\nv_create_main_user_username: \"required\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 120
},
{
"path": "roles/cr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 770,
"all_permissive": false
} |
ansible_role | mattdclark31/wsl_ubuntu_image_setup | 5618173c41ca58b8a6702a87fa776ce76113af35 | 0 | roles/install_ podman_for_ubuntu | 8,071 | [
"no_license"
] | [
{
"path": "roles/install_ podman_for_ubuntu/vars/main.yml",
"content": "---\n# vars file for load_certificates\nv_podman_for_ubuntu_os_version: \"required\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 81
},
{
"path": "roles/install_ podman_for_ubuntu/tasks/ma... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1431,
"all_permissive": false
} |
ansible_role | mattdclark31/wsl_ubuntu_image_setup | 5618173c41ca58b8a6702a87fa776ce76113af35 | 0 | roles/install_ansible_navigator | 8,071 | [
"no_license"
] | [
{
"path": "roles/install_ansible_navigator/tasks/main.yml",
"content": "---\n- name: Create the /dev/mqueue directory\n ansible.builtin.file:\n path: /dev/mqueue\n state: directory\n become: true\n\n- name: Install python3-pip\n ansible.builtin.apt:\n pkg:\n - python3-pip\n become: true\n\n-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1398,
"all_permissive": false
} |
ansible_role | mattdclark31/wsl_ubuntu_image_setup | 5618173c41ca58b8a6702a87fa776ce76113af35 | 0 | roles/load_certificates | 8,071 | [
"no_license"
] | [
{
"path": "roles/load_certificates/tasks/main.yml",
"content": "---\n- name: Create certificate school directory\n ansible.builtin.file:\n path: /usr/local/share/ca-certificates/school\n state: directory\n mode: '0755'\n\n# Used for reference; add your own certificates into this task\n# - name: Co... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 505,
"all_permissive": false
} |
ansible_role | mattdclark31/wsl_ubuntu_image_setup | 5618173c41ca58b8a6702a87fa776ce76113af35 | 0 | roles/vs_code_setup | 8,071 | [
"no_license"
] | [
{
"path": "roles/vs_code_setup/vars/main.yml",
"content": "---\n# vars file for wsl_network_setup\nv_vs_code_setup_username: \"required\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 75
},
{
"path": "roles/vs_code_setup/tasks/main.yml",
"content": "---\n- ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1526,
"all_permissive": false
} |
ansible_role | mattdclark31/wsl_ubuntu_image_setup | 5618173c41ca58b8a6702a87fa776ce76113af35 | 0 | roles/wsl_network_setup | 8,071 | [
"no_license"
] | [
{
"path": "roles/wsl_network_setup/tasks/main.yml",
"content": "---\n- name: Create initial directories for wsl\n ansible.builtin.file:\n path: \"{{ item }}\"\n state: directory\n mode: '0755'\n owner: \"{{ v_wsl_network_setup_username }}\"\n group: \"{{ v_wsl_network_setup_username }}\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1429,
"all_permissive": false
} |
ansible_role | sebastianfaulhaber/cdk-v3-showcase | 96ea05b517b1a4123c6a61c09aa6b860c66a1947 | 0 | apb/custom-wordpress-apb/roles/provision-custom-wordpress-apb | 8,071 | [
"no_license"
] | [
{
"path": "apb/custom-wordpress-apb/roles/provision-custom-wordpress-apb/tasks/main.yml",
"content": "\n- name: install vanilla wordpress\n block:\n - name: create wordpress template from github\n shell: 'oc create -f https://raw.githubusercontent.com/sebastianfaulhaber/wordpress-quickstart/master/temp... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3682,
"all_permissive": false
} |
ansible_role | balusena/roboshop-ansible | 8964968af991386167316a97a937fc7e35fa0d31 | 1 | roles/catalogue | 8,081 | [
"no_license"
] | [
{
"path": "roles/catalogue/tasks/main.yml",
"content": "- name: Load NodeJS\n ansible.builtin.import_role:\n name: common\n tasks_from: nodejs\n\n- name: Load Schema Setup\n ansible.builtin.import_role:\n name: common\n tasks_from: mongo_schema_setup\n\n- name: Load Prometheus Node Exporter\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 324,
"all_permissive": false
} |
ansible_role | balusena/roboshop-ansible | 8964968af991386167316a97a937fc7e35fa0d31 | 1 | roles/common | 8,081 | [
"no_license"
] | [
{
"path": "roles/common/defaults/main.yml",
"content": "load_schema: false",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 18
},
{
"path": "roles/common/tasks/go.yml",
"content": "- name: Install GoLang\n ansible.builtin.yum:\n name: golang\n state: pres... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 407,
"all_permissive": false
} |
ansible_role | balusena/roboshop-ansible | 8964968af991386167316a97a937fc7e35fa0d31 | 1 | roles/dispatch | 8,081 | [
"no_license"
] | [
{
"path": "roles/dispatch/vars/main.yml",
"content": "component: dispatch\napp_version: 1.0.0",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 38
},
{
"path": "roles/dispatch/tasks/main.yml",
"content": "- name: Load Go\n ansible.builtin.import_role:\n name:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 120,
"all_permissive": false
} |
ansible_role | chrisjsewell/aiida-performance | 160606f07fe092a9e2bacdf62bfecec460fac642 | 0 | roles/profile-blocking | 8,081 | [
"no_license"
] | [
{
"path": "roles/profile-blocking/tasks/main.yml",
"content": "- name: Check whether profile anlysis result already exists\n stat:\n path: \"{{ OUTPUT_FOLDER }}/{{ TEST_NAME }}.prof\"\n register: stat_result\n\n- name: \"Run pre-test script: {{ TEST_NAME }}\"\n when: not stat_result.stat.exists\n com... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2618,
"all_permissive": false
} |
ansible_role | chrisjsewell/aiida-performance | 160606f07fe092a9e2bacdf62bfecec460fac642 | 0 | roles/run-analysis | 8,081 | [
"no_license"
] | [
{
"path": "roles/run-analysis/tasks/main.yml",
"content": "- name: Print output dir\n debug:\n msg: \"{{ OUTPUT_FOLDER }}\"\n\n- name: Test if the folder has already been analysed\n stat:\n path: \"{{ OUTPUT_FOLDER }}/index.md\"\n register: stat_result\n\n # TODO have tag for running anyway\n- whe... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3267,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/checkdocker | 8,081 | [
"no_license"
] | [
{
"path": "roles/checkdocker/tasks/main.yml",
"content": "---\n- name: Install aptitude using apt\n apt: name=aptitude state=latest update_cache=yes force_apt_get=yes\n become: yes\n\n- name: Install prerequisites docker\n apt:\n name: ['apt-transport-https', 'ca-certificates', 'curl', 'gnupg2' ,'soft... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2116,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/checkdomainscloud | 8,081 | [
"no_license"
] | [
{
"path": "roles/checkdomainscloud/tasks/main.yml",
"content": "---\n- name: Get server public IP\n command: \"curl https://ipinfo.io/ip\"\n register: command_ip\n when: public_server\n\n- set_fact:\n public_ip: \"{{ command_ip.stdout }}\"\n when: public_server\n\n- debug: msg=\"Public IP {{public_ip... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 4837,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/checkdomainsdevtools | 8,081 | [
"no_license"
] | [
{
"path": "roles/checkdomainsdevtools/tasks/main.yml",
"content": "---\n- name: Get server public IP\n command: \"curl https://ipinfo.io/ip\"\n register: command_ip\n when: public_server\n\n- set_fact:\n public_ip: \"{{ command_ip.stdout }}\"\n when: public_server\n\n- debug: msg=\"Ip publica {{publi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3467,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/collabora | 8,081 | [
"no_license"
] | [
{
"path": "roles/collabora/vars/main.yml",
"content": "---\nsecret_collabora: longsecretfornoonefigureout\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 51
},
{
"path": "roles/collabora/templates/collabora.conf.j2",
"content": "\nserver {\n listen 80;\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3405,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/email | 8,081 | [
"no_license"
] | [
{
"path": "roles/email/templates/docker-compose.yml.j2",
"content": "version: '3' \n\nservices:\n email:\n image: analogic/poste.io\n container_name: email\n volumes:\n - /etc/localtime:/etc/localtime:ro\n - {{directory_volumes_cloud}}/email:/data\n - {{directory_deploy_proxy}}/data... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2770,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/gitlab | 8,081 | [
"no_license"
] | [
{
"path": "roles/gitlab/templates/gitlab.conf.j2",
"content": "\nserver {\n listen 80;\n listen [::]:80;\n server_name {{gitlab_domain}};\n location / {\n return 301 https://$host$request_uri;\n }\n\n location /.well-known/acme-challenge/ {\n root /var/www/certbot;\n }\n\n}\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3722,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/jenkins | 8,081 | [
"no_license"
] | [
{
"path": "roles/jenkins/templates/jenkins.conf.j2",
"content": "\nserver {\n listen 80;\n listen [::]:80;\n server_name {{jenkins_domain}};\n location / {\n return 301 https://$host$request_uri;\n }\n\n location /.well-known/acme-challenge/ {\n root /var/www/certbot;\n }\n\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 3961,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/nextcloud | 8,081 | [
"no_license"
] | [
{
"path": "roles/nextcloud/vars/main.yml",
"content": "---\ninitial_nextcloud_admin_password: <PASSWORD>\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 50
},
{
"path": "roles/nextcloud/templates/docker-compose.yml.j2",
"content": "version: '3' \n\nservices... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 6321,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/nexus | 8,081 | [
"no_license"
] | [
{
"path": "roles/nexus/templates/updateNexus.sh.j2",
"content": "#!/bin/bash\ndocker-compose down -v\ndocker rmi sonatype/nexus3:latest\ndocker-compose up -d\ncd {{directory_deploy_proxy}}\ndocker-compose stop\ndocker-compose start\n\n",
"license_type": "no_license",
"detected_licenses": [],
"s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2809,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/onlyoffice | 8,081 | [
"no_license"
] | [
{
"path": "roles/onlyoffice/templates/onlyoffice.conf.j2",
"content": "\nserver {\n listen 80;\n listen [::]:80;\n server_name {{onlyoffice_domain}};\n location / {\n return 301 https://$host$request_uri;\n }\n\n location /.well-known/acme-challenge/ {\n root /var/www/certbot;\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4146,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/openldap | 8,081 | [
"no_license"
] | [
{
"path": "roles/openldap/templates/ldap.conf.j2",
"content": "server {\n listen 80;\n listen [::]:80;\n server_name {{ldap_domain}};\n location / {\n return 301 https://$host$request_uri;\n }\n\n location /.well-known/acme-challenge/ {\n root /var/www/certbot;\n }\n\n}\n\ns... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3199,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/proxy | 8,081 | [
"no_license"
] | [
{
"path": "roles/proxy/templates/root.conf-nohttps.j2",
"content": "resolver 127.0.0.11 valid=10s;\n\n\nserver {\n listen 80 default_server;\n listen [::]:80 default_server;\n server_name _;\n location / {\n return 301 https://$host$request_uri;\n }\n location /.well-known/acme-chal... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 8325,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/proxycloud | 8,081 | [
"no_license"
] | [
{
"path": "roles/proxycloud/templates/email.conf-nohttps.j2",
"content": "server {\n listen 80;\n listen [::]:80;\n server_name {{mail_domain}};\n location / {\n return 301 https://$host$request_uri;\n }\n\n location /.well-known/acme-challenge/ {\n root /var/www/certbot;\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 17055,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/proxydevtools | 8,081 | [
"no_license"
] | [
{
"path": "roles/proxydevtools/files/jenkins_certs/Readme.md",
"content": "# Certs for Jenkins\n\nMandatory files if is not a public server to use with letsencrypt\n\n\n- cert.pem: SSH cert\n- privkey.pem: Private key for SSH cert\n- chain.pem: CA cert\n",
"license_type": "no_license",
"detected_lic... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 12553,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/showadminpasswords | 8,081 | [
"no_license"
] | [
{
"path": "roles/showadminpasswords/tasks/main.yml",
"content": "---\n- name: 3 minutes pause execution to wait for nexus/jenkins generate admin password\n pause:\n minutes: 3\n when: install_nexus or install_jenkins\n\n- name: Get jenkins password admin \n command: \"docker exec -it jenkins cat /var/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 792,
"all_permissive": false
} |
ansible_role | jaimesf/ansible-webtools-installer | c98d28c1bb3fe38ac7ba956ec623e678160f0229 | 27 | roles/sonar | 8,081 | [
"no_license"
] | [
{
"path": "roles/sonar/tasks/main.yml",
"content": "---\n- name: Create Sonar dirs\n file:\n path: \"{{item}}\"\n state: directory\n mode: '0777'\n recurse: yes\n owner: \"{{ansible_ssh_user}}\"\n group: \"{{ansible_ssh_user}}\"\n with_items:\n - \"{{directory_scripts_devtools}}/sonar... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 5181,
"all_permissive": false
} |
ansible_role | juhoerkkila/ansible_homeassistant | cae9341b3b4857cf3300189c74038b6f318f82e9 | 0 | roles/gitrepo | 8,081 | [
"no_license"
] | [
{
"path": "roles/gitrepo/tasks/main.yml",
"content": "---\n# gitrepo tasks\n- name: Validate attributes\n fail:\n msg: \"Some required attributes are missing. Check your surroundings!\"\n when: branch is not defined\n check_mode: no\n\n- name: Remote repository handling\n block:\n - name: Clone / ch... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1124,
"all_permissive": false
} |
ansible_role | juhoerkkila/ansible_homeassistant | cae9341b3b4857cf3300189c74038b6f318f82e9 | 0 | roles/rsyncha | 8,081 | [
"no_license"
] | [
{
"path": "roles/rsyncha/tasks/main.yml",
"content": "---\n# Copy .HA_VERSION from Dest (homeassistant) to Src (local) to avoid changing version file\n- name: fetch .HA_VERSION from remote ({{ haConfRemote }}.HA_VERSION) to local ({{ hostvars[groups['gitrepo'][0]]['haConfSrc'] }})\n fetch:\n src: \"{{ h... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 756,
"all_permissive": false
} |
ansible_role | CarstenBaker/biocomputinghub_singularity | 6d19c4b9afd29263d3e610703c986ae6a1b5e5b5 | 0 | roles/singularity | 8,081 | [
"no_license"
] | [
{
"path": "roles/singularity/defaults/main.yml",
"content": "---\n\nhome: \"{{ lookup('env','HOME') }}\"\n\ngo_version: 1.17.9\n\nsingularity_version: v3.9.8\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 90
},
{
"path": "roles/singularity/tasks/main.yml",
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2039,
"all_permissive": false
} |
ansible_role | NRHelmi/vagrant-mariadb-cluster | 96dd8c625d7e2b7d901c740cbe9064c068511550 | 0 | provisioning/roles/haproxy | 8,081 | [
"no_license"
] | [
{
"path": "provisioning/roles/haproxy/tasks/main.yml",
"content": " - name: Installing HAproxy.\n become: true\n apt: name=haproxy state=present update_cache=yes\n\n - name: Configuring HAproxy.\n become: true\n shell: cat /vagrant/provisioning/config_files/haproxy.cnf >> /etc/hapr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 378,
"all_permissive": false
} |
ansible_role | NRHelmi/vagrant-mariadb-cluster | 96dd8c625d7e2b7d901c740cbe9064c068511550 | 0 | provisioning/roles/mariadb | 8,081 | [
"no_license"
] | [
{
"path": "provisioning/roles/mariadb/tasks/main.yml",
"content": " - name: Installing MariaDB Repository (Software properties common).\n become: true\n apt: name=software-properties-common state=present update_cache=yes\n\n - name: Installing MariaDB Repository (Adding repository key).\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1045,
"all_permissive": false
} |
ansible_role | NRHelmi/vagrant-mariadb-cluster | 96dd8c625d7e2b7d901c740cbe9064c068511550 | 0 | provisioning/roles/sql0 | 8,081 | [
"no_license"
] | [
{
"path": "provisioning/roles/sql0/tasks/main.yml",
"content": " - name: Creating Galera configuration file for SQL0.\n become: true\n shell: cp /vagrant/provisioning/config_files/galera1.cnf /etc/mysql/conf.d/galera.cnf\n\n - name: Starting the Cluster.\n become: true\n shell: gal... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 253,
"all_permissive": false
} |
ansible_role | NRHelmi/vagrant-mariadb-cluster | 96dd8c625d7e2b7d901c740cbe9064c068511550 | 0 | provisioning/roles/sql1 | 8,081 | [
"no_license"
] | [
{
"path": "provisioning/roles/sql1/tasks/main.yml",
"content": " - name: Creating Galera configuration file for SQL1.\n become: true\n shell: cp /vagrant/provisioning/config_files/galera2.cnf /etc/mysql/conf.d/galera.cnf\n\n - name: Starting MariaDB service (joining the Cluster).\n beco... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 282,
"all_permissive": false
} |
ansible_role | NRHelmi/vagrant-mariadb-cluster | 96dd8c625d7e2b7d901c740cbe9064c068511550 | 0 | provisioning/roles/sql2 | 8,081 | [
"no_license"
] | [
{
"path": "provisioning/roles/sql2/tasks/main.yml",
"content": " - name: Creating Galera configuration file for SQL2.\n become: true\n shell: cp /vagrant/provisioning/config_files/galera3.cnf /etc/mysql/conf.d/galera.cnf\n\n - name: Starting MariaDB service (joining the Cluster).\n beco... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 282,
"all_permissive": false
} |
ansible_role | alexanderrohrauer/multi-env-config-manager | 04f039a95ce50f902cdfd336f3b1708889240824 | 0 | k3s-ansible/roles/samba | 8,081 | [
"permissive"
] | [
{
"path": "k3s-ansible/roles/samba/handlers/main.yml",
"content": "---\n\n- name: restart samba\n ansible.builtin.systemd:\n name: \"{{ samba.daemon }}\"\n state: restarted\n\n# Whenever you modify smb.conf you should run the command \"testparm\"\n# to check that you have not made any basic syntactic... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 9171,
"all_permissive": true
} |
ansible_role | FlorentKeyce/MastodonCollection | 9ae108777a9f23b753e597d47b7337e0c29d886c | 0 | roles/simple-postgresql | 8,081 | [
"no_license"
] | [
{
"path": "roles/simple-postgresql/handlers/main.yml",
"content": "---\n\n- name: Redémarrer PostgreSQL\n systemd:\n name: postgresql\n state: restarted",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 87
},
{
"path": "roles/simple-postgresql/tasks/main-Debia... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2940,
"all_permissive": false
} |
ansible_role | michaelkhersonsky/ansible_examples | 372f1cafd4e62b96d30c1d252858b1eefda9037e | 1 | all-playbooks/lamp_simple/roles/db | 8,081 | [
"no_license"
] | [
{
"path": "all-playbooks/lamp_simple/roles/db/handlers/main.yml",
"content": "---\n# Handler to handle DB tier notifications\n\n- name: restart mysql\n service:\n name: mysqld\n state: restarted\n\n- name: restart mariadb\n service:\n name: mariadb\n state: restarted\n\n- name: restart iptable... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2602,
"all_permissive": false
} |
ansible_role | guidograzioli/skupper.network | c9e20c93043320c03ebc540c09cef46bb3821424 | 0 | roles/skupper_cli_install | 8,081 | [
"permissive"
] | [
{
"path": "roles/skupper_cli_install/vars/main.yml",
"content": "---\n# constants file for skupper_cli_install\narch_values:\n x86_64: \"amd64\"\n arm64: \"arm64\"\n arm32: \"arm32\"\n i386: \"i386\"\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_byt... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 3678,
"all_permissive": true
} |
ansible_role | guidograzioli/skupper.network | c9e20c93043320c03ebc540c09cef46bb3821424 | 0 | roles/skupper_common | 8,081 | [
"permissive"
] | [
{
"path": "roles/skupper_common/handlers/main.yml",
"content": "---\n# handlers file for skupper_common\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 39
},
{
"path": "roles/skupper_common/README.md",
"content": "skupper_common\n=====... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1631,
"all_permissive": true
} |
ansible_role | guidograzioli/skupper.network | c9e20c93043320c03ebc540c09cef46bb3821424 | 0 | roles/skupper_delete | 8,081 | [
"permissive"
] | [
{
"path": "roles/skupper_delete/defaults/main.yml",
"content": "---\n# defaults file for skupper_delete\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 39
},
{
"path": "roles/skupper_delete/tasks/podman-tasks.yml",
"content": "- name: ... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 10,
"total_bytes": 2511,
"all_permissive": true
} |
ansible_role | guidograzioli/skupper.network | c9e20c93043320c03ebc540c09cef46bb3821424 | 0 | roles/skupper_init | 8,081 | [
"permissive"
] | [
{
"path": "roles/skupper_init/tasks/podman-validate.yml",
"content": "---\n- name: \"Validating ingress\"\n ansible.builtin.fail:\n msg: \"Ingress must be 'none' or 'external'\"\n when:\n - skupper_init_ingress not in ['none','external']\n\n- name: \"Validating ingress host\"\n ansible.builtin.fail... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 24398,
"all_permissive": true
} |
ansible_role | guidograzioli/skupper.network | c9e20c93043320c03ebc540c09cef46bb3821424 | 0 | roles/skupper_link | 8,081 | [
"permissive"
] | [
{
"path": "roles/skupper_link/handlers/main.yml",
"content": "---\n# handlers file for skupper_link\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 37
},
{
"path": "roles/skupper_link/tasks/main.yml",
"content": "---\n# tasks file for ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 2278,
"all_permissive": true
} |
ansible_role | guidograzioli/skupper.network | c9e20c93043320c03ebc540c09cef46bb3821424 | 0 | roles/skupper_service | 8,081 | [
"permissive"
] | [
{
"path": "roles/skupper_service/handlers/main.yml",
"content": "---\n# handlers file for skupper_service\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 40
},
{
"path": "roles/skupper_service/README.md",
"content": "skupper_service\n=... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 4464,
"all_permissive": true
} |
ansible_role | guidograzioli/skupper.network | c9e20c93043320c03ebc540c09cef46bb3821424 | 0 | roles/skupper_token | 8,081 | [
"permissive"
] | [
{
"path": "roles/skupper_token/vars/main.yml",
"content": "---\n# vars file for skupper_token\ndefault_type_kube: claim\nvalid_token_types:\n - claim\n - cert\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 97
},
{
"path": "roles/skupper... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 10,
"total_bytes": 5283,
"all_permissive": true
} |
ansible_role | guidograzioli/skupper.network | c9e20c93043320c03ebc540c09cef46bb3821424 | 0 | roles/skupper_update | 8,081 | [
"permissive"
] | [
{
"path": "roles/skupper_update/tasks/podman-tasks.yml",
"content": "- name: Preparing update command\n ansible.builtin.set_fact:\n skupper_update_command:\n - skupper\n - update\n - --platform\n - \"{{ skupper_platform }}\"\n\n- name: Adding --force-restart\n ansible.builtin.set_fa... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 3112,
"all_permissive": true
} |
ansible_role | HerveRiviere/isep-kafka-lab | 2e038f654833656a77affdc1ce353c27c2d7d534 | 4 | ansible/roles/common | 8,081 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/main.yml",
"content": "---\n- name: upgrade all packages\n yum:\n name: '*'\n state: latest\n\n- name: install java\n yum:\n name: \"java-{{ java_version }}-openjdk-devel\"\n state: 'present'\n- name: Install maven\n unarchive:\n src: http://mirrors.ir... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 943,
"all_permissive": false
} |
ansible_role | HerveRiviere/isep-kafka-lab | 2e038f654833656a77affdc1ce353c27c2d7d534 | 4 | ansible/roles/guacamole | 8,081 | [
"no_license"
] | [
{
"path": "ansible/roles/guacamole/tasks/guacamole-server.yml",
"content": "- name: Get source of guacamole\n unarchive:\n src: http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/{{ guacamole_version }}/source/guacamole-server-{{ guacamole_version }}.tar.gz\n dest: /opt/\n remote_... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 6645,
"all_permissive": false
} |
ansible_role | HerveRiviere/isep-kafka-lab | 2e038f654833656a77affdc1ce353c27c2d7d534 | 4 | ansible/roles/kafka | 8,081 | [
"no_license"
] | [
{
"path": "ansible/roles/kafka/handlers/main.yml",
"content": "---\n- name: restart zookeeper\n systemd:\n state: restarted\n daemon_reload: yes\n name: zookeeper\n\n- name: restart kafka-1\n systemd:\n state: restarted\n daemon_reload: yes\n name: kafka-2\n\n- name: restart kafka-2\n s... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 9130,
"all_permissive": false
} |
ansible_role | HerveRiviere/isep-kafka-lab | 2e038f654833656a77affdc1ce353c27c2d7d534 | 4 | ansible/roles/misc | 8,081 | [
"no_license"
] | [
{
"path": "ansible/roles/misc/templates/README-change_resolution.txt.j2",
"content": "To change screen resolution :\n1- Check the current resolution of your hosting system (outside the remote desktop)\nIn the remote desktop :\n2- Open a terminal and exute the following command :\n\n~/change_vnc_screen_resol... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2537,
"all_permissive": false
} |
ansible_role | sh4jonny/lab02 | 8374a8cbdca26b1d6c09763dea0bd1d69c2fdf75 | 0 | ansible/roles/jenkins | 8,081 | [
"no_license"
] | [
{
"path": "ansible/roles/jenkins/tasks/main.yml",
"content": "- name: Install Common Packets\n apt:\n pkg: \"{{ item }}\"\n update_cache: true\n with_items:\n - openjdk-8-jdk\n - mc\n - htop\n - curl\n - wget\n - apt-transport-https\n\n- name: Define jenkins_repo_url\n set_fact:\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4774,
"all_permissive": false
} |
ansible_role | sh4jonny/lab02 | 8374a8cbdca26b1d6c09763dea0bd1d69c2fdf75 | 0 | ansible/roles/nginx-jenk | 8,081 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx-jenk/tasks/main.yml",
"content": "- name: Install nginx\n action: apt pkg=nginx state=installed update_cache=true\n\n- name: Disable default site\n file:\n path: /etc/nginx/sites-enabled/default\n state: absent\n\n- name: install nginx configuration\n template:\n s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 488,
"all_permissive": false
} |
ansible_role | sh4jonny/lab02 | 8374a8cbdca26b1d6c09763dea0bd1d69c2fdf75 | 0 | ansible/roles/sw-apt-mirror | 8,081 | [
"no_license"
] | [
{
"path": "ansible/roles/sw-apt-mirror/defaults/main.yml",
"content": "# Debian\n########\n\n#debian_apt_mirror: 'httpredir.debian.org'\ndebian_apt_mirror: 'ftp.by.debian.org'\n\n# For EOL.\n#debian_apt_mirror: 'archive.debian.org'\n",
"license_type": "no_license",
"detected_licenses": [],
"size... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 468,
"all_permissive": false
} |
ansible_role | RamiresHab/my_own_collection | aceaaa550cd7dcd98abb78d19ef2b05fcde1e7c6 | 0 | roles/test_role | 8,081 | [
"no_license"
] | [
{
"path": "roles/test_role/tasks/main.yml",
"content": "---\n- name: Call my_own_module\n my_own_module:\n path: { path_file }\n content: { content_file }\n# tasks file for test_role\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 129
},
{
"path": "roles/t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 204,
"all_permissive": false
} |
ansible_role | SandeepNainala/roboshop-ansible | 85915c903c76c5eafdfb457fa4de30661c07dc26 | 0 | roles/common | 8,081 | [
"no_license"
] | [
{
"path": "roles/common/tasks/java.yml",
"content": "#func_print_head \"Install Maven\"\n# yum install maven -y &>>$log_file\n# func_stat_check $?\n#\n# func_app_prereq\n#\n# func_print_head \"Download Maven Dependencies\"\n# mvn clean package &>>$log_file\n# func_stat_check $?\n# mv target/${compone... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3764,
"all_permissive": false
} |
ansible_role | achelak/Ansible-role-CDRCheckerDeployment | 3fea768d8d587a4892a0afc52c0ff5f12cf8c1b5 | 0 | roles/cdr_checker | 8,081 | [
"no_license"
] | [
{
"path": "roles/cdr_checker/handlers/main.yml",
"content": "---\n# handlers file for deoloy_cdr_checker",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "roles/cdr_checker/templates/.env.example.j2",
"content": "GF_SECURITY_ADMIN_USER={{ GF_SECU... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 18836,
"all_permissive": false
} |
ansible_role | achelak/Ansible-role-CDRCheckerDeployment | 3fea768d8d587a4892a0afc52c0ff5f12cf8c1b5 | 0 | roles/docker_ce | 8,081 | [
"no_license"
] | [
{
"path": "roles/docker_ce/tasks/main.yml",
"content": "---\n - name: Install aptitude using apt\n become: true\n apt:\n name: aptitude\n state: latest\n update_cache: yes\n force_apt_get: true\n\n\n - name: Update and upgrade apt packages\n become: true\n apt:\n upgrade: \"ye... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1996,
"all_permissive": false
} |
ansible_role | JoseIbanez/testing | df77cfa09d166974cc090e733ae4aab534aabbd9 | 3 | openshift/ansible/roles/pxe | 8,078 | [
"no_license"
] | [
{
"path": "openshift/ansible/roles/pxe/templates/dhcp.conf.j2",
"content": "# DHCP range\ndhcp-range=192.168.58.150,192.168.58.199,1h\ndhcp-lease-max=25\n\n# GW\ndhcp-option=3,192.168.58.1\n\n# DNS\ndhcp-option=6,192.168.58.10\n\n# NTP\ndhcp-option=42,192.168.58.10\n\n\nenable-tftp\ntftp-root=/var/lib/tftpb... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2817,
"all_permissive": false
} |
ansible_role | notRuslan/react_test | d49897e4d985589d234372cc79172ad3ba8a12e7 | 0 | provisioning/roles/certbot | 8,078 | [
"no_license"
] | [
{
"path": "provisioning/roles/certbot/tasks/main.yml",
"content": "---\n\n- name: Install Certbot and packages\n yum:\n name: ['certbot', 'python2-certbot-nginx', 'httpd-tools']\n #apache2-utils - Can use in docker too and do not install\n state: latest\n\n\n- name: Copy Certbot configuration\n c... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 352,
"all_permissive": false
} |
ansible_role | notRuslan/react_test | d49897e4d985589d234372cc79172ad3ba8a12e7 | 0 | provisioning/roles/docker | 8,078 | [
"no_license"
] | [
{
"path": "provisioning/roles/docker/handlers/main.yml",
"content": "---\n# handlers file for docker\n-\n#- name: Start docker on boot\n# systemd:\n# name: docker\n# state: started\n# enabled: yes\n\n- name: Restart docker\n service: name=docker state=restarted\n",
"license_ty... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1418,
"all_permissive": false
} |
ansible_role | notRuslan/react_test | d49897e4d985589d234372cc79172ad3ba8a12e7 | 0 | provisioning/roles/site | 8,078 | [
"no_license"
] | [
{
"path": "provisioning/roles/site/tasks/generate_certificates.yml",
"content": "---\n- name: Check if certificate already exists\n stat:\n path: /etc/letsencrypt/live/{{ item }}/cert.pem\n register: letsencrypt_certs\n with_items: \"{{ certbot_hosts }}\"\n\n- name: Up certbot standalone... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 633,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/ec2 | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/ec2/defaults/main.yml",
"content": "ec2_cloudwatch_metrics: []\nec2_log_s3_bucket: \"\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 49
},
{
"path": "ansible/roles/ec2/tasks/s3-upload-log.yml",
"content": "- name: update /opt/ec2/s... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 5345,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/elasticsearch | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/elasticsearch/tasks/main.yml",
"content": "- name: add elasticsearch repo key\n apt_key: url=https://packages.elastic.co/GPG-KEY-elasticsearch\n\n- name: add elasticsearch repo\n apt_repository: repo='deb http://packages.elastic.co/elasticsearch/1.7/debian stable main'\n\n- name: ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2674,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/jdk | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/jdk/tasks/main.yml",
"content": "- name: uninstall openjdk\n apt: name=openjdk state=absent purge=true\n\n- name: add ppa:webupd8team/java\n apt_repository: repo='ppa:webupd8team/java'\n\n- name: accept oracle license\n debconf: name='oracle-java{{jdk_version}}-installer' questio... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 614,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/jenkins | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/jenkins/tasks/main.yml",
"content": "- name: add jenkins repo key\n apt_key: url=http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key\n\n- name: add jenkins repo\n apt_repository: repo='deb http://pkg.jenkins-ci.org/debian binary/'\n\n- name: install jenkins\n apt: name=jenkins st... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 500,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/kibana | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/kibana/tasks/main.yml",
"content": "- name: add kibana repo key\n apt_key: url=https://packages.elasticsearch.org/GPG-KEY-elasticsearch\n\n- name: add kibana repo\n apt_repository: repo='deb http://packages.elasticsearch.org/kibana/4.1/debian stable main'\n\n- name: install kibana... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 327,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/logrotate | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/logrotate/tasks/main.yml",
"content": "- name: update /etc/logrotate.conf\n copy: src=etc/logrotate.conf dest=/etc/logrotate.conf owner=root group=root mode=0644\n\n- name: remove /etc/cron.daily/logrotate\n file: path=/etc/cron.daily/logrotate state=absent\n\n- name: update /usr/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 602,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/mongodb | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/mongodb/tasks/main.yml",
"content": "- name: add mongodb repo key\n apt_key: id=7F0CEB10 keyserver=hkp://keyserver.ubuntu.com:80\n\n- name: add mongodb repo\n apt_repository: repo='deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse'\n\n- name: install mongodb... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 441,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/nginx | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx/tasks/main.yml",
"content": "- name: add nginx repo\n apt_repository: repo=ppa:nginx/stable\n\n- name: install nginx\n apt: name=nginx\n\n- name: update /etc/nginx/*\n copy: src=etc/nginx/ dest=/etc/nginx owner=root group=root mode=0644\n notify: restart-nginx\n\n- name: u... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1185,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/rabbitmq | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/rabbitmq/meta/main.yml",
"content": "dependencies:\n - role: logrotate",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 33
},
{
"path": "ansible/roles/rabbitmq/defaults/main.yml",
"content": "rabbitmq_admin_user: \"admin\"\nrabbitmq_adm... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1242,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/redis | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/redis/tasks/main.yml",
"content": "- name: add redis repo\n apt_repository: repo=ppa:chris-lea/redis-server\n\n- name: install redis\n apt: name=redis-server\n\n- name: update /etc/redis/redis.conf\n copy: src=etc/redis/redis.conf dest=/etc/redis/redis.conf\n notify: restart-red... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 314,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/supervisor | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/supervisor/handlers/main.yml",
"content": "- name: restart-supervisor\n service: name=supervisor state={{supervisor_service_state}}",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 88
},
{
"path": "ansible/roles/supervisor/tasks/main.yml",
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1175,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/sys | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/sys/tasks/main.yml",
"content": "- name: update all packages\n apt: upgrade=dist update_cache=yes cache_valid_time=3600\n\n- include: timezone.yml\n when: sys_timezone != \"\"\n\n- include: ssh-key.yml\n when: sys_ssh_private_key != \"\"",
"license_type": "no_license",
"d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 196,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/tomcat | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/tomcat/tasks/main.yml",
"content": "- name: install tomcat\n apt: name={{item}}\n with_items: [tomcat7, libtcnative-1]\n\n- name: remove tomcat unneeded files\n command: \"{{item}} removes=/var/lib/tomcat7/webapps/ROOT\"\n with_items:\n - rm -rf /etc/cron.daily/tomcat7\n -... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1299,
"all_permissive": false
} |
ansible_role | justcodecode/vagrant | f60e3ddcfd5440c1c7b3bf767ad86b9c2ef620b4 | 0 | ansible/roles/varnish | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/varnish/defaults/main.yml",
"content": "varnish_port: 6081\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 19
},
{
"path": "ansible/roles/varnish/tasks/main.yml",
"content": "- name: add varnish repo key\n apt_key: url=https://repo.v... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 624,
"all_permissive": false
} |
ansible_role | 4babushkin/aws_alb | c6242bc70577c577716be2abb59c509e94492321 | 0 | ansible/roles/docker-compose-hello | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/docker-compose-hello/files/docker-compose.yml",
"content": "version: '2'\nservices:\n nginx:\n image: nginxdemos/nginx-hello:latest\n restart: always\n ports:\n - 8080:8080\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 122
},
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 642,
"all_permissive": false
} |
ansible_role | 4babushkin/aws_alb | c6242bc70577c577716be2abb59c509e94492321 | 0 | ansible/roles/docker-install | 8,078 | [
"no_license"
] | [
{
"path": "ansible/roles/docker-install/tasks/main.yml",
"content": "---\n # - name: Install python for Ansible\n # raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)\n # changed_when: False\n\n - name: Add Docker GPG apt Key\n apt_key:\n url: https://download.d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1020,
"all_permissive": false
} |
ansible_role | bradkwadsworth/ansible-openstack | 963418b2dd3ce7ed161e88eea7d6482a623167c2 | 0 | roles/apache2 | 8,078 | [
"no_license"
] | [
{
"path": "roles/apache2/molecule.yml",
"content": "---\ndriver:\n name: vagrant\nvagrant:\n platforms:\n - name: xenial64\n box: ubuntu/xenial64\n providers:\n - name: virtualbox\n type: virtualbox\n options:\n memory: 512\n cpus: 2\n instances:\n - name: apache2\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 800,
"all_permissive": false
} |
ansible_role | bradkwadsworth/ansible-openstack | 963418b2dd3ce7ed161e88eea7d6482a623167c2 | 0 | roles/dashboard | 8,078 | [
"no_license"
] | [
{
"path": "roles/dashboard/tasks/main.yml",
"content": "---\n- name: install openstack-dashboard\n package:\n name: openstack-dashboard\n state: present\n\n- name: template /etc/openstack-dashboard/local_settings.py\n template:\n dest: /etc/openstack-dashboard/local_settings.py\n src: local_se... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 713,
"all_permissive": false
} |
ansible_role | bradkwadsworth/ansible-openstack | 963418b2dd3ce7ed161e88eea7d6482a623167c2 | 0 | roles/glance | 8,078 | [
"no_license"
] | [
{
"path": "roles/glance/tasks/main.yml",
"content": "---\n- name: install glance packages\n package:\n name: \"{{ item }}\"\n state: present\n with_items:\n - python-pymysql\n - glance\n\n- name: template glance configs\n template:\n dest: \"{{ item.dest }}\"\n src: \"{{ item.src }}\"\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 142874,
"all_permissive": false
} |
ansible_role | bradkwadsworth/ansible-openstack | 963418b2dd3ce7ed161e88eea7d6482a623167c2 | 0 | roles/keystone | 8,078 | [
"no_license"
] | [
{
"path": "roles/keystone/tasks/main.yml",
"content": "---\n- name: install keystone packages\n package:\n name: \"{{ item }}\"\n state: present\n with_items:\n - python-pymysql\n - python-shade\n - keystone\n\n- name: remove /var/lib/keystone/keystone.db\n file:\n path: /var/lib/keysto... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 117286,
"all_permissive": false
} |
ansible_role | bradkwadsworth/ansible-openstack | 963418b2dd3ce7ed161e88eea7d6482a623167c2 | 0 | roles/mariadb | 8,078 | [
"no_license"
] | [
{
"path": "roles/mariadb/tests/test_default.py",
"content": "import testinfra.utils.ansible_runner\n\ntestinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(\n '.molecule/ansible_inventory').get_hosts('all')\n\n\ndef test_hosts_file(File):\n f = File('/etc/hosts')\n\n assert f.exists\n a... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2033,
"all_permissive": false
} |
ansible_role | bradkwadsworth/ansible-openstack | 963418b2dd3ce7ed161e88eea7d6482a623167c2 | 0 | roles/memcached | 8,078 | [
"no_license"
] | [
{
"path": "roles/memcached/defaults/main.yml",
"content": "---\nmemcached_listen_ip: 127.0.0.1\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 35
},
{
"path": "roles/memcached/molecule.yml",
"content": "---\ndriver:\n name: vagrant\nvagrant:\n platforms:\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 724,
"all_permissive": false
} |
ansible_role | bradkwadsworth/ansible-openstack | 963418b2dd3ce7ed161e88eea7d6482a623167c2 | 0 | roles/neutron | 8,078 | [
"no_license"
] | [
{
"path": "roles/neutron/tasks/metadata.yml",
"content": "---\n- name: install neutron-metadata-agent\n package:\n name: neutron-metadata-agent\n state: present\n\n- name: template /etc/neutron/metadata_agent.ini\n template:\n dest: /etc/neutron/metadata_agent.ini\n src: metadata_agent.ini.j2\... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 12,
"total_bytes": 6253,
"all_permissive": false
} |
ansible_role | bradkwadsworth/ansible-openstack | 963418b2dd3ce7ed161e88eea7d6482a623167c2 | 0 | roles/nova | 8,078 | [
"no_license"
] | [
{
"path": "roles/nova/tasks/conductor.yml",
"content": "---\n- name: install nova-conductor\n package:\n name: nova-conductor\n state: present\n\n- name: maintain nova-conductor\n service:\n name: nova-conductor\n enabled: true\n state: started\n",
"license_type": "no_license",
"det... | {
"task_files": 8,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 14,
"total_bytes": 6953,
"all_permissive": false
} |
ansible_role | bradkwadsworth/ansible-openstack | 963418b2dd3ce7ed161e88eea7d6482a623167c2 | 0 | roles/ntp | 8,078 | [
"no_license"
] | [
{
"path": "roles/ntp/molecule.yml",
"content": "---\ndriver:\n name: vagrant\nvagrant:\n platforms:\n - name: xenial64\n box: ubuntu/xenial64\n providers:\n - name: virtualbox\n type: virtualbox\n options:\n memory: 512\n cpus: 2\n instances:\n - name: ntp\n an... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1159,
"all_permissive": false
} |
ansible_role | bradkwadsworth/ansible-openstack | 963418b2dd3ce7ed161e88eea7d6482a623167c2 | 0 | roles/openstack-base | 8,078 | [
"no_license"
] | [
{
"path": "roles/openstack-base/molecule.yml",
"content": "---\ndriver:\n name: vagrant\nvagrant:\n platforms:\n - name: xenial64\n box: ubuntu/xenial64\n providers:\n - name: virtualbox\n type: virtualbox\n options:\n memory: 512\n cpus: 2\n instances:\n - name: op... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1076,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.