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
jmcleroy/Ansible-Playbooks
378b9d85bdda218d93d6f71bcaf24e0e5438d267
2
vmware/roles/vmware
77
[ "no_license" ]
[ { "path": "vmware/roles/vmware/tasks/main.yml", "content": "---\n- name: Clone a virtual machine from Template and customize\n vmware_guest:\n hostname: \"192.168.1.208\"\n validate_certs: False\n datacenter: Datacenter\n name: webserver3\n template: rhel7.4\n folder: /Datacenter/vm\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 350, "all_permissive": false }
ansible_role
jmcleroy/Ansible-Playbooks
378b9d85bdda218d93d6f71bcaf24e0e5438d267
2
vmware/roles/vmware_facts
77
[ "no_license" ]
[ { "path": "vmware/roles/vmware_facts/tasks/main.yml", "content": "---\n- name: Testing Vmware Facts\n vmware_guest:\n hostname: \"192.168.1.207\"\n datacenter: \"CF\"\n name: \"Wordpress1\"\n state: \"present\"\n username: \"<EMAIL>\"\n password: \"{{ <PASSWORD> }}\"\n register: \"facts\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 220, "all_permissive": false }
ansible_role
jmcleroy/Ansible-Playbooks
378b9d85bdda218d93d6f71bcaf24e0e5438d267
2
winrm/roles/winrm
77
[ "no_license" ]
[ { "path": "winrm/roles/winrm/tasks/main.yml", "content": "---\n- name: Create Folder\n win_file:\n path: C:\\temp\\\n state: directory\n\n- name: Change permissions\n win_acl:\n path: C:\\temp\n user: EXAMPLE\\ansible\n rights: FullControl\n type: allow\n state: present\n inherit: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 289, "all_permissive": false }
ansible_role
37Lucky37/KK_ansible_playbook
c0a56421526d7c22f63f2bac679fde4c4359e855
0
openproject/roles/app_setup
77
[ "no_license" ]
[ { "path": "openproject/roles/app_setup/tasks/install_node.yml", "content": "- name: Download Node.js binary\n ansible.builtin.get_url:\n url: \"https://nodejs.org/dist/v{{ node_version }}/node-v{{ node_version }}-linux-x64.tar.xz\"\n dest: \"/tmp/node-v{{ node_version }}-linux-x64.tar.xz\"\n\n- name:...
{ "task_files": 11, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 15, "total_bytes": 8506, "all_permissive": false }
ansible_role
37Lucky37/KK_ansible_playbook
c0a56421526d7c22f63f2bac679fde4c4359e855
0
openproject/roles/db_setup
77
[ "no_license" ]
[ { "path": "openproject/roles/db_setup/defaults/main.yml", "content": "postgresql_version: 13\nallowed_ip: \"192.168.77.0/24\"\npostgresql_options:\n - name: \"listen_addresses\"\n value: \"*\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 }, { "path": "...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1998, "all_permissive": false }
ansible_role
37Lucky37/KK_ansible_playbook
c0a56421526d7c22f63f2bac679fde4c4359e855
0
openproject/roles/web_setup
77
[ "no_license" ]
[ { "path": "openproject/roles/web_setup/tasks/main.yml", "content": "- name: Install Apache2\n ansible.builtin.apt:\n name: apache2\n state: present\n update_cache: yes\n\n- name: Enable Apache proxy modules\n ansible.builtin.shell: |\n a2enmod proxy\n a2enmod proxy_http\n a2enmod proxy_b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2400, "all_permissive": false }
ansible_role
amanyele30/to-check-push-from-london-from-folder1
a724e98a4dd053ea07b6378683179f7b8798c84f
0
playbook/roles/testrole
77
[ "no_license" ]
[ { "path": "playbook/roles/testrole/tasks/main.yml", "content": "- name: installing httpd software\n yum: pkg=httpd state=latest\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 }, { "path": "playbook/roles/testrole/vars/main.yml", "content": "vars: \n use...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 121, "all_permissive": false }
ansible_role
zhyrkin/OTUS.Lesson28.Network
a42e60cfd7868a53d1733409b82839017424f600
0
roles/install_iptables
77
[ "no_license" ]
[ { "path": "roles/install_iptables/tasks/main.yml", "content": "---\n- name: Run the equivalent of \"apt-get update\" as a separate step\n ansible.builtin.apt:\n update_cache: yes\n cache_valid_time: 3600\n \n- name: install iptables\n ansible.builtin.apt:\n name: iptables\n state: latest\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 340, "all_permissive": false }
ansible_role
zhyrkin/OTUS.Lesson28.Network
a42e60cfd7868a53d1733409b82839017424f600
0
roles/install_utils
77
[ "no_license" ]
[ { "path": "roles/install_utils/tasks/main.yml", "content": "---\n- name: install ping\n ansible.builtin.apt:\n name: iputils-ping\n\n- name: install trace\n ansible.builtin.apt:\n name: traceroute\n\n- name: install tcpdump\n ansible.builtin.apt:\n name: tcpdump", "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
w00lf/xray-server-ansible
4e6c7948c318eb5020cc42d786fc911d78104251
0
roles/network_additonal_secutiry
77
[ "no_license" ]
[ { "path": "roles/network_additonal_secutiry/tasks/main.yml", "content": "- name: set icmp echo disabled\n shell: 'echo \"net.ipv4.icmp_echo_ignore_all=1\" > /etc/sysctl.conf && sysctl -p'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 113 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 113, "all_permissive": false }
ansible_role
w00lf/xray-server-ansible
4e6c7948c318eb5020cc42d786fc911d78104251
0
roles/requirements
77
[ "no_license" ]
[ { "path": "roles/requirements/tasks/main.yml", "content": "- name: Install Tools\n apt: name={{ item }} state=latest update_cache=true\n with_items:\n - unzip", "license_type": "no_license", "detected_licenses": [], "size_bytes": 101 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 101, "all_permissive": false }
ansible_role
w00lf/xray-server-ansible
4e6c7948c318eb5020cc42d786fc911d78104251
0
roles/xray
77
[ "no_license" ]
[ { "path": "roles/xray/tasks/main.yml", "content": "# - name: download and install xray\n# shell: 'bash -c \"$(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/046d9aa2432b3a6241d73c3684ef4e512974b594/install-release.sh)\" @ install --version 1.8.1;'\n\n- name: Copy config file\n template: src=...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 366, "all_permissive": false }
ansible_role
m-baaziz/Node-React-Chat-Provisioning
e0eb0761584d558d68281ca1c676b75375da4e2a
0
tchiky-chat-docker/roles/app
77
[ "no_license" ]
[ { "path": "tchiky-chat-docker/roles/app/tasks/main.yml", "content": "- name: Copy app package\n unarchive:\n src: tchiky-chat.tar.gz\n dest: \"{{ app_dir }}\"\n owner: \"{{ ansible_user }}\"\n group: \"{{ ansible_user }}\"\n\n- name: Build docker image\n docker_image:\n path: \"{{ app_path}...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 410, "all_permissive": false }
ansible_role
m-baaziz/Node-React-Chat-Provisioning
e0eb0761584d558d68281ca1c676b75375da4e2a
0
tchiky-chat-docker/roles/docker
77
[ "no_license" ]
[ { "path": "tchiky-chat-docker/roles/docker/tasks/setup-Debian.yml", "content": "- name: Clear apt-get files\n file:\n path: /var/lib/apt/lists/*\n state: absent\n become: true\n\n- name: Clean apt-get\n apt:\n autoclean: true\n\n- name: Ensure old versions of Docker are not installed.\n apt:\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1157, "all_permissive": false }
ansible_role
m-baaziz/Node-React-Chat-Provisioning
e0eb0761584d558d68281ca1c676b75375da4e2a
0
tchiky-chat/roles/app
77
[ "no_license" ]
[ { "path": "tchiky-chat/roles/app/tasks/main.yml", "content": "- name: Copy app package\n unarchive:\n src: tchiky-chat.tar.gz\n dest: \"{{ app_dir }}\"\n owner: \"{{ ansible_user }}\"\n group: \"{{ ansible_user }}\"", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 155, "all_permissive": false }
ansible_role
m-baaziz/Node-React-Chat-Provisioning
e0eb0761584d558d68281ca1c676b75375da4e2a
0
tchiky-chat/roles/nginx
77
[ "no_license" ]
[ { "path": "tchiky-chat/roles/nginx/templates/default.j2", "content": "server {\n\n\tlisten {{ nginx_port }} default_server;\n\tserver_name {{ inventory_hostname }};\n\n\tlocation / {\n\t\t\t\t\tproxy_pass http://localhost:{{ app_port }}/;\n\t}\n}", "license_type": "no_license", "detected_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 393, "all_permissive": false }
ansible_role
m-baaziz/Node-React-Chat-Provisioning
e0eb0761584d558d68281ca1c676b75375da4e2a
0
tchiky-chat/roles/nodejs
77
[ "no_license" ]
[ { "path": "tchiky-chat/roles/nodejs/templates/env.j2", "content": "export PATH={{ npm_global_path_prefix }}/bin:$PATH\nexport NPM_CONFIG_PREFIX={{ npm_global_path_prefix }}\nexport NODE_PATH=$NODE_PATH:{{ npm_global_path_prefix }}/lib/node_modules\nexport ENV=devlopment\nexport APP_PATH={{ app_path }}", ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2386, "all_permissive": false }
ansible_role
libkazz/osx-provisioning
08067a4560796d13d7509a632b714220da8dc5d5
1
provisioning/roles/brew-cask
77
[ "no_license" ]
[ { "path": "provisioning/roles/brew-cask/defaults/main.yml", "content": "homebrew_cask_packages:\n - astah-community\n - atom\n - cyberduck\n - dash\n - dropbox\n - evernote\n - firefox\n - google-chrome\n - google-japanese-ime\n - iterm2\n - karabiner\n - licecap\n - macvim\n - microsoft-offic...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 682, "all_permissive": false }
ansible_role
libkazz/osx-provisioning
08067a4560796d13d7509a632b714220da8dc5d5
1
provisioning/roles/defaults_v1
77
[ "no_license" ]
[ { "path": "provisioning/roles/defaults_v1/tasks/main.yml", "content": "- name: \n command: >\n defaults write {{ item.domain }} {{ item.key }} -{{ item.type }} {{ item.value }}\n with_items: mac_defaults_settings\n when: mac_defaults_settings\n\n- name: \n command: >\n defaults write -g {{ item.ke...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 362, "all_permissive": false }
ansible_role
libkazz/osx-provisioning
08067a4560796d13d7509a632b714220da8dc5d5
1
provisioning/roles/ssh
77
[ "no_license" ]
[ { "path": "provisioning/roles/ssh/tasks/main.yml", "content": "- name: create .ssh directory to {{ansible_user_dir}}\n file: src={{ansible_user_dir}}/Dropbox/dotfiles3/.ssh dest={{ansible_user_dir}}/.ssh state=link force=True\n", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 163, "all_permissive": false }
ansible_role
mauroseb/bootstrap-sat6
39de8202cd9f6fdd3cea9fc30bb82d5f546d6f0f
1
roles/createvm
77
[ "no_license" ]
[ { "path": "roles/createvm/tasks/main.yml", "content": "---\n- name: Satellite OS VM\n tags:\n - create-vm\n become: yes\n environment:\n LIBGUESTFS_BACKEND: direct\n LIBVIRT_DEFAULT_URI: 'qemu+ssh://stack@localhost/system'\n block:\n - name: Check if image already exists\n stat:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4247, "all_permissive": false }
ansible_role
mauroseb/bootstrap-sat6
39de8202cd9f6fdd3cea9fc30bb82d5f546d6f0f
1
roles/installsat
77
[ "no_license" ]
[ { "path": "roles/installsat/tasks/main.yml", "content": "---\n- name: Install Satellite Server\n tags:\n - install-satellite\n block:\n - name: Register Satellite server to CDN\n redhat_subscription:\n username: \"{{ cdnuser }}\"\n password: \"{{ <PASSWORD> }}\"\n pool_ids: \"{{ pool...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 990, "all_permissive": false }
ansible_role
gmiroshnykov/rethinkdb-playground
9b6103720413f11d71204c9cd1152684dfc44554
1
ansible/roles/common
77
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "- name: apt-get update\n sudo: yes\n apt: update_cache=yes\n\n- name: install packages\n sudo: yes\n apt: pkg={{ item }}\n with_items:\n - build-essential\n - git\n - vim\n - curl\n - htop\n - screen\n - python-dev\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 327, "all_permissive": false }
ansible_role
gmiroshnykov/rethinkdb-playground
9b6103720413f11d71204c9cd1152684dfc44554
1
ansible/roles/laggyluke.limits
77
[ "no_license" ]
[ { "path": "ansible/roles/laggyluke.limits/README.md", "content": "limits\n======\n\nThis Ansible role sets various system limits and preferences via\n`/etc/security/limits.d` and `/etc/sysctl.d`.\n\n**WARNING: all preferences are hardcoded for now.**\n", "license_type": "no_license", "detected_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1189, "all_permissive": false }
ansible_role
gmiroshnykov/rethinkdb-playground
9b6103720413f11d71204c9cd1152684dfc44554
1
ansible/roles/rethinkdb
77
[ "no_license" ]
[ { "path": "ansible/roles/rethinkdb/handlers/main.yml", "content": "- name: restart rethinkdb\n sudo: true\n service: >\n name=rethinkdb\n state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 91 }, { "path": "ansible/roles/rethinkdb/templates/in...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 764, "all_permissive": false }
ansible_role
KHDevOps/eks-scalable-devops-platform
1a23e420e14bc8b987dee82f8ed7418b8c39d781
0
ansible/roles/argocd
77
[ "no_license" ]
[ { "path": "ansible/roles/argocd/tasks/main.yml", "content": "---\n- name: Ensure Kubernetes is running\n ansible.builtin.command: \"kubectl --context {{ k8s_context }} cluster-info\"\n register: k8s_info\n changed_when: false\n ignore_errors: true\n\n- name: Start Minikube if not running and context is ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4074, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/cdp_preinstall
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/cdp_preinstall/tasks/main.yml", "content": "---\n\n- name: install python reqs\n yum:\n name: libselinux-python\n state: present\n\n- name: disable SELinux\n selinux:\n state: disabled\n\n- name: Install sysfsutils for disabling transparent huge pages\n yum:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1677, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/cloudera_api
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/cloudera_api/tasks/main.yml", "content": "---\n- name: Get Cloudera Manager API version\n uri:\n url: http://{{ groups['manager'][0] }}:{{ scm_port }}/api/version\n method: GET\n status_code: 200\n user: \"{{ scm_default_user }}\"\n password: \"{{ <PASSWORD...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 423, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/cloudera_management_services_7
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/cloudera_management_services_7/templates/cms_base.j2", "content": "{\n \"name\": \"mgmt\",\n \"type\": \"MGMT\",\n \"roles\": [\n {\n \"name\": \"mgmt-SERVICEMONITOR\",\n \"type\": \"SERVICEMONITOR\",\n \"hostRef\": {\n \"hostId\": \"{{ groups['...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3678, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/cloudera_manager
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/cloudera_manager/templates/scm.j2", "content": "{\n \"items\": [ \n {\n \"name\": \"KDC_HOST\",\n \"value\": \"{{ groups['security'][0] }}\"\n }, {\n \"name\": \"KDC_ADMIN_HOST\",\n \"value\": \"{{ groups['security'][0] }}\"\n }, {\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2225, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/cluster_install
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/cluster_install/clusters/cdp-base/vars/cluster-vars.yml", "content": "cluster_version: 7.1.4\ncluster_name: cdp-base\n\nhdfs_is_ha: yes\natlas_enabled: false\nranger_enabled: false\nknox_enabled: true\nidbroker: false\n\ncluster_services:\n\n - type: hdfs\n dfs_data_di...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 34, "total_bytes": 50650, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/cm_gethosts
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/cm_gethosts/tasks/main.yml", "content": "---\n\n- name: Get the host identifiers and names from Cloudera Manager\n uri:\n url: \"{{ cm_api_url }}/hosts\"\n method: GET\n status_code: 200\n user: \"{{ scm_default_user }}\"\n password: \"{{ scm_default_pass }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 447, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/common
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/common/vars/main.yml", "content": "timezone: \"Australia/Sydney\" ", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "ansible-playbooks/roles/common/tasks/main.yml", "content": "---\n \n - name: setup Chro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 467, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/configure_sssd
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/configure_sssd/tasks/main.yml", "content": "---\n\n- name: Set ignore group members \n ini_file:\n section: '{{ item.section }}'\n option: '{{ item.option }}'\n value: '{{ item.value }}'\n path: /etc/sssd/sssd.conf\n loop: '{{ sssd_tunables }}'\n\n- name: up...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 382, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/db_driver
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/db_driver/tasks/main.yml", "content": "---\n\n- name: make the usr/share/java folder if needed\n file:\n path: /usr/share/java\n state: directory\n owner: root\n group: root\n mode: '0755'\n \n- name: add postgres driver\n get_url:\n url: https://jdb...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 348, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/enable_autotls
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/enable_autotls/tasks/main.yml", "content": "---\n\n- include_role: \n name: cloudera_api\n\n- name: setup the json message and see if it looks right\n set_fact:\n cmca_message: \"{{ lookup('template', 'Cmca.j2') | to_nice_json }}\"\n\n- name: Fix up the json\n temp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2851, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/install_database
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/install_database/tasks/main.yml", "content": "---\n\n\n - name: add postgres 10 repo\n yum:\n name: https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm\n state: present\n ", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 183, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/ipa_java_cacert
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/ipa_java_cacert/tasks/main.yml", "content": "---\n\n- name: check if jsse needs to be created - create if it is\n copy:\n src: \"{{ java_path }}/jre/lib/security/cacerts\"\n remote_src: yes\n dest: \"{{ java_path }}/jre/lib/security/jssecacerts\"\n owner: root...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 586, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/java
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/java/tasks/main.yml", "content": "---\n\n - name: get java\n yum:\n name: \"{{ java_repo }}\"\n state: present\n\n - name: Capture installed Java provider\n raw: /usr/bin/java -version 2>&1 | egrep -o 'Java\\(TM\\)|OpenJDK' | sed 's/Java(TM)/Oracle/' | tr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2328, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/scm_agents
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/scm_agents/tasks/main.yml", "content": "- name: Install Cloudera Manager Agents\n yum:\n name:\n - cloudera-manager-daemons\n - cloudera-manager-agent\n update_cache: yes\n state: installed\n\n- debug:\n var: hostvars\n verbosity: 1\n\n- name: Configu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 517, "all_permissive": false }
ansible_role
Data-drone/terraform_secure_cluster
107049c17824e2ee2a855c9604cb519b8bf0bf0f
0
ansible-playbooks/roles/setup_ldap
75
[ "no_license" ]
[ { "path": "ansible-playbooks/roles/setup_ldap/README.md", "content": "# Bind IPA LDAP\n\nThis role needs to bind the ldap in FreeIPA to CM\n\nTasks:\n\n- create the ipa bind user - done\n- add the cacert to java - done\n- update cm settings - stuck\n\n```{bash}\n\n# curl command\ncurl -i -v -uadmin:admin -X...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 6871, "all_permissive": false }
ansible_role
nooneofcons2/baremetalserverconfigure
85707c99ea9be8f0937f74575411780b1d641ba3
0
roles/allow_ports
75
[ "no_license" ]
[ { "path": "roles/allow_ports/tasks/main.yml", "content": "---\n - block:\n - name: Enable UFW if it's not already enabled\n community.general.ufw:\n state: enabled\n\n - name: Allow port 443 through the firewall (UFW)\n community.general.ufw:\n rule: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1112, "all_permissive": false }
ansible_role
nooneofcons2/baremetalserverconfigure
85707c99ea9be8f0937f74575411780b1d641ba3
0
roles/collect_logs
75
[ "no_license" ]
[ { "path": "roles/collect_logs/tasks/main.yml", "content": "---\n - block:\n - name: Install cmd line tools (wget, unzip)\n ansible.builtin.apt:\n name:\n - wget\n - unzip\n state: present\n - name: Download the binary\n ansible.builtin.get_url:\n url: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2821, "all_permissive": false }
ansible_role
nooneofcons2/baremetalserverconfigure
85707c99ea9be8f0937f74575411780b1d641ba3
0
roles/create_users
75
[ "no_license" ]
[ { "path": "roles/create_users/tasks/main.yml", "content": "---\n - block:\n - name: Creater user devops\n ansible.builtin.user:\n name: devops\n state: present\n shell: /bin/bash\n - name: Add user to the sudo group\n ansible.builtin.user:\n name: devops\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1168, "all_permissive": false }
ansible_role
nooneofcons2/baremetalserverconfigure
85707c99ea9be8f0937f74575411780b1d641ba3
0
roles/log_shipper
75
[ "no_license" ]
[ { "path": "roles/log_shipper/tasks/main.yml", "content": "---\n - block:\n - name: Install cmd line tools (wget, unzip)\n ansible.builtin.apt:\n name:\n - wget\n - unzip\n state: present\n - name: Download Loki binary\n ansible.builtin.get_url...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2884, "all_permissive": false }
ansible_role
nooneofcons2/baremetalserverconfigure
85707c99ea9be8f0937f74575411780b1d641ba3
0
roles/ping_remote_server
75
[ "no_license" ]
[ { "path": "roles/ping_remote_server/tasks/main.yml", "content": "---\n - block:\n - name: Ping the remote server\n ansible.builtin.ping:\n tags: ping\n", "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
nooneofcons2/baremetalserverconfigure
85707c99ea9be8f0937f74575411780b1d641ba3
0
roles/web_server
75
[ "no_license" ]
[ { "path": "roles/web_server/tasks/main.yml", "content": "---\n - block:\n - name: Install nginx\n ansible.builtin.apt:\n name: nginx\n state: present\n - name: Start nginx\n ansible.builtin.service:\n name: nginx\n state: started\n enabled: true # start on...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 402, "all_permissive": false }
ansible_role
yuchiki/home-server-provisioning
3ae3c5cfcd6e2f6ea54b123a17aaa4b01f8cbd82
0
ansible/roles/create_users
75
[ "no_license" ]
[ { "path": "ansible/roles/create_users/tasks/main.yaml", "content": "- name: add user\n user:\n name: \"{{ item.name }}\"\n groups: sudo\n password: \"{{ <PASSWORD> | password_hash('<PASSWORD>') }}\"\n with_items: \"{{ users }}\"\n become: true\n- name: ssh copy id\n authorized_key:\n user: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 317, "all_permissive": false }
ansible_role
yuchiki/home-server-provisioning
3ae3c5cfcd6e2f6ea54b123a17aaa4b01f8cbd82
0
ansible/roles/disable_password_and_root_ssh
75
[ "no_license" ]
[ { "path": "ansible/roles/disable_password_and_root_ssh/tasks/main.yaml", "content": "- name: \"パスワードによるSSHの禁止\"\n lineinfile:\n path: '/etc/ssh/sshd_config'\n regexp: '^#?PasswordAuthentication yes$'\n line: 'PasswordAuthentication no'\n become: yes\n- name: \"パスワードによるSSHの禁止\"\n lineinfile:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 561, "all_permissive": false }
ansible_role
yuchiki/home-server-provisioning
3ae3c5cfcd6e2f6ea54b123a17aaa4b01f8cbd82
0
ansible/roles/enable_ansible_users_ssh_with_key
75
[ "no_license" ]
[ { "path": "ansible/roles/enable_ansible_users_ssh_with_key/tasks/main.yaml", "content": "- name: ssh user の 鍵 をコピー\n authorized_key:\n user: \"{{ ansible_ssh_user }}\"\n key: \"{{ ssh_public_key }}\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 112, "all_permissive": false }
ansible_role
yuchiki/home-server-provisioning
3ae3c5cfcd6e2f6ea54b123a17aaa4b01f8cbd82
0
ansible/roles/install-docker
75
[ "no_license" ]
[ { "path": "ansible/roles/install-docker/tasks/main.yaml", "content": "- name: install util\n apt:\n name:\n - ca-certificates\n - curl\n - gnupg\n update-cache: true\n become: true\n- name: create keyrings directory\n file:\n path: /etc/apt/keyrings\n state: directory \n beco...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1081, "all_permissive": false }
ansible_role
anskrish/vpc-ecs
55143ad6a8851d0429e0ea4023cb548d21640097
0
roles/aws-ecs-autoscale
75
[ "no_license" ]
[ { "path": "roles/aws-ecs-autoscale/tasks/main.yml", "content": "# Check pre-requisites\n- include: pre-requisites.yml\n\n# Cluster: A logical grouping of container instances that you can place tasks on\n- name: \"AWS | ECS | Provision the cluster\"\n ecs_cluster:\n name: \"{{ ecs_cluster_name }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1580, "all_permissive": false }
ansible_role
anskrish/vpc-ecs
55143ad6a8851d0429e0ea4023cb548d21640097
0
roles/aws-elb
75
[ "no_license" ]
[ { "path": "roles/aws-elb/tasks/pre-requisites.yml", "content": "- name: \"AWS | ELB | Check ELB name has been defined (elb_name)\"\n fail: msg=\"You must specify the name of the ELB you wish to create, e.g. my-elb\"\n when: elb_name is undefined\n\n- name: \"AWS | ELB | Check ELB security groups have been...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2013, "all_permissive": false }
ansible_role
anskrish/vpc-ecs
55143ad6a8851d0429e0ea4023cb548d21640097
0
roles/aws-security-groups
75
[ "no_license" ]
[ { "path": "roles/aws-security-groups/tasks/main.yml", "content": "# Check pre-requisites\n- include: pre-requisites.yml\n\n- name: \"AWS | Provision networking | Create Inbound Security Groups\"\n local_action:\n module: ec2_group\n name: \"{{ item.sg_name }}\"\n description: \"{{ item.sg_descript...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1274, "all_permissive": false }
ansible_role
anskrish/vpc-ecs
55143ad6a8851d0429e0ea4023cb548d21640097
0
roles/aws-vpc
75
[ "no_license" ]
[ { "path": "roles/aws-vpc/tasks/main.yml", "content": "# Check pre-requisites\n- include: pre-requisites.yml\n\n- name: \"AWS | VPC | Provision the VPC and subnets\"\n local_action:\n module: ec2_vpc\n region: \"{{ vpc_region }}\"\n state: present\n cidr_block: \"{{ vpc_cidr_block }}\"\n reso...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 422, "all_permissive": false }
ansible_role
data-science-tsb/ansible-spark
139cf6b559a8c975947dbb06fee029cad29f6ecf
0
roles/common
75
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yaml", "content": "---\n - name: Install Java8\n yum: \n name: java-1.8.0-openjdk \n state: latest\n\n - name: Set JAVA_HOME\n lineinfile: \n dest: \"{{ host_environment_file }}\" \n regexp: \"^export JAVA_HOME\" \n line: \"export JAVA_HOME...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1757, "all_permissive": false }
ansible_role
data-science-tsb/ansible-spark
139cf6b559a8c975947dbb06fee029cad29f6ecf
0
roles/experiment
75
[ "no_license" ]
[ { "path": "roles/experiment/tasks/main.yaml", "content": "---\n - name: Get Slave EC2 Instance Information\n ec2_remote_facts:\n aws_access_key: \"{{ aws_key_id }}\"\n aws_secret_key: \"{{ aws_key_secret }}\"\n region: \"{{ aws_region }}\"\n filters: \n instance-state-name: ru...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 402, "all_permissive": false }
ansible_role
data-science-tsb/ansible-spark
139cf6b559a8c975947dbb06fee029cad29f6ecf
0
roles/machine
75
[ "no_license" ]
[ { "path": "roles/machine/tasks/main.yaml", "content": "---\n - name: Launch Master Server\n local_action:\n module: ec2\n aws_access_key: \"{{ aws_key_id }}\"\n aws_secret_key: \"{{ aws_key_secret }}\"\n region: \"{{ aws_region }}\"\n group_id: \"{{ aws_security_group }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2505, "all_permissive": false }
ansible_role
data-science-tsb/ansible-spark
139cf6b559a8c975947dbb06fee029cad29f6ecf
0
roles/master
75
[ "no_license" ]
[ { "path": "roles/master/tasks/main.yml", "content": "---\n - name: Start Master\n shell: \"{{ spark_extract_location }}/sbin/start-master.sh\"\n\n #- name: Configure Slave List\n # template:\n # src: slaves\n # dest: \"{{ spark_extract_location }}/conf/slaves\"\n\n #- name: Start Slaves\n #...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 394, "all_permissive": false }
ansible_role
data-science-tsb/ansible-spark
139cf6b559a8c975947dbb06fee029cad29f6ecf
0
roles/slave
75
[ "no_license" ]
[ { "path": "roles/slave/tasks/main.yaml", "content": "---\n - name: Debugging Slave Start Connection\n debug:\n msg: \"Master Address: {{ groups['master'][0] }}:{{ master_port }} Slave Memory: {{ slave_memory }} Slave Port: {{ slave_port }}\"\n verbosity: 1\n\n - name: Start Slaves\n shell:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 426, "all_permissive": false }
ansible_role
data-science-tsb/ansible-spark
139cf6b559a8c975947dbb06fee029cad29f6ecf
0
roles/terminator
75
[ "no_license" ]
[ { "path": "roles/terminator/tasks/main.yaml", "content": "---\n - name: Get Slave EC2 Instance Information\n ec2_remote_facts:\n aws_access_key: \"{{ aws_key_id }}\"\n aws_secret_key: \"{{ aws_key_secret }}\"\n region: \"{{ aws_region }}\"\n filters: \n instance-state-name: ru...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 589, "all_permissive": false }
ansible_role
PolloChang/ansible-examples
e51485ca76ae745bbdbf9b50226443e6a1887884
0
roles/docker
75
[ "no_license" ]
[ { "path": "roles/docker/tasks/docker-users.yml", "content": "---\n- name: Ensure docker users are added to the docker group.\n user:\n name: vagrant\n groups: docker\n append: true", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { "path": "roles/do...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 2258, "all_permissive": false }
ansible_role
PolloChang/ansible-examples
e51485ca76ae745bbdbf9b50226443e6a1887884
0
roles/firewalld
75
[ "no_license" ]
[ { "path": "roles/firewalld/tasks/main.yml", "content": "- name: start firewalld\n become: yes\n ansible.builtin.systemd:\n state: started\n enabled: yes\n name: firewalld\n\n- include_tasks: ./tasks/checkFirewalldVersion.yml\n\n# - name: set basic firewalld source use comments\n# become: yes\n#...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 903, "all_permissive": false }
ansible_role
PolloChang/ansible-examples
e51485ca76ae745bbdbf9b50226443e6a1887884
0
roles/getInformation
75
[ "no_license" ]
[ { "path": "roles/getInformation/tasks/main.yml", "content": "---\n- name: get Information ansible_all_ipv4_addresses\n debug:\n msg: \"{{ansible_all_ipv4_addresses}}\"\n\n- name: get Information ansible_default_ipv4.address\n debug: var=hostvars[inventory_hostname]['ansible_env'].SSH_CONNECTION.split('...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 545, "all_permissive": false }
ansible_role
PolloChang/ansible-examples
e51485ca76ae745bbdbf9b50226443e6a1887884
0
roles/pufile
75
[ "no_license" ]
[ { "path": "roles/pufile/tasks/main.yml", "content": "- name: Set vars\n set_fact:\n path: '/home/ansible/test'\n\n\n- name: Ansible check directory.\n stat:\n path: \"{{ path }}\"\n register: checkFolder\n\n- name: Creates directory\n file:\n path: \"{{ path }}\"\n state: directory\n when: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 448, "all_permissive": false }
ansible_role
PolloChang/ansible-examples
e51485ca76ae745bbdbf9b50226443e6a1887884
0
roles/testGroup
75
[ "no_license" ]
[ { "path": "roles/testGroup/tasks/service-01.yml", "content": "---\n- name: set firewall 1\n debug: var=group", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 }, { "path": "roles/testGroup/tasks/main.yml", "content": "---\n- name: set firewall {{group}}1\n i...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 140, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/db_setup
75
[ "no_license" ]
[ { "path": "roles/db_setup/tasks/main.yml", "content": "---\n# Copyright 2019, VEXXHOST, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1827, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/dynamic_address_fact
75
[ "no_license" ]
[ { "path": "roles/dynamic_address_fact/tasks/main.yml", "content": "---\n# Copyright 2017, Rackspace US, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http:/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1703, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/glusterfs
75
[ "no_license" ]
[ { "path": "roles/glusterfs/vars/redhat-10.yml", "content": "---\n# Copyright 2025, Cleura AB.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 9529, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/haproxy_endpoint_manage
75
[ "no_license" ]
[ { "path": "roles/haproxy_endpoint_manage/tasks/main.yml", "content": "---\n# Copyright 2017, <NAME> <<EMAIL>>\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1425, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/journald_remote
75
[ "no_license" ]
[ { "path": "roles/journald_remote/defaults/main.yml", "content": "---\n# Copyright 2018, Rackspace US, Inc.\n# Copyright 2022, City Network International AB.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 9654, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/lxc_container_setup
75
[ "no_license" ]
[ { "path": "roles/lxc_container_setup/tasks/main.yml", "content": "---\n# Copyright 2016, Rackspace US, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 6128, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/mq_setup
75
[ "no_license" ]
[ { "path": "roles/mq_setup/tasks/main.yml", "content": "---\n# Copyright 2018, Rackspace US, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache....
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 6415, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/openstack_resources
75
[ "no_license" ]
[ { "path": "roles/openstack_resources/tasks/network_subnets.yml", "content": "---\n# Copyright 2023, Cleura AB.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http...
{ "task_files": 13, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 14, "total_bytes": 44650, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/platform_check
75
[ "no_license" ]
[ { "path": "roles/platform_check/tasks/main.yml", "content": "---\n# Copyright 2025, Adria Cloud Services.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://ww...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1285, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/service_setup
75
[ "no_license" ]
[ { "path": "roles/service_setup/tasks/setup_roles.yml", "content": "---\n# Copyright 2022, City Network International AB\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 6935, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/ssh_keypairs
75
[ "no_license" ]
[ { "path": "roles/ssh_keypairs/main.yml", "content": "---\ngalaxy_info:\n author: BBC\n description: Installation and configuration of ssh keys\n company: BBC\n license: Apache2\n min_ansible_version: 2.10\n platforms:\n - name: Ubuntu\n versions:\n - bionic\n - focal\n - name:...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 16353, "all_permissive": false }
ansible_role
openstack/openstack-ansible-plugins
c740154043f6c694ab867541f9d4bbd9ebc4e615
24
roles/unbound_clients
75
[ "no_license" ]
[ { "path": "roles/unbound_clients/tasks/main.yml", "content": "---\n# Copyright 2017, <NAME> <<EMAIL>>\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.ap...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2111, "all_permissive": false }
ansible_role
qmatiaslopez/ansible-basic-red
b033b95949f4423cd8ba953feded0ace9aae5091
0
playbook/roles/reload_dhcp
75
[ "no_license" ]
[ { "path": "playbook/roles/reload_dhcp/tasks/main.yml", "content": "---\n- name: Release the current DHCP lease\n ansible.builtin.shell: \n cmd: nmcli con down id \"{{ item }}\" && nmcli con up id \"{{ item }}\"\n with_items: \"{{ ansible_facts['interfaces'] }}\"\n when: \"'en' in item\"\n ignore_erro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 235, "all_permissive": false }
ansible_role
qmatiaslopez/ansible-basic-red
b033b95949f4423cd8ba953feded0ace9aae5091
0
playbook/roles/router_dhcp
75
[ "no_license" ]
[ { "path": "playbook/roles/router_dhcp/tasks/main.yml", "content": "---\n- name: Installation of DHCP\n dnf:\n name: dhcp-server\n state: latest\n\n- name: Copy new DHCP configuration to remote host\n ansible.builtin.template:\n src: \"{{ dhcp_conf_template }}\"\n dest: \"{{ dhcp_conf_path }}\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1317, "all_permissive": false }
ansible_role
qmatiaslopez/ansible-basic-red
b033b95949f4423cd8ba953feded0ace9aae5091
0
playbook/roles/router_network_01
75
[ "no_license" ]
[ { "path": "playbook/roles/router_network_01/tasks/main.yml", "content": "---\n- name: Set hostname to 'router'\n ansible.builtin.hostname:\n name: router\n\n- name: Add ethernet connection for internal network\n community.general.nmcli:\n conn_name: red_interna\n ifname: enp0s9\n type: etherne...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1628, "all_permissive": false }
ansible_role
qmatiaslopez/ansible-basic-red
b033b95949f4423cd8ba953feded0ace9aae5091
0
playbook/roles/server1_dns
75
[ "no_license" ]
[ { "path": "playbook/roles/server1_dns/files/obligatorio.ort.zone", "content": "$TTL 86400\n@ IN SOA ns1.obligatorio.ort. admin.obligatorio.ort. (\n 0 ; serial\n 3600 ; refresh\n 1800 ; retry\n 604800 ; expire\n 86400 ; ttl\n )\n\n@ IN NS server...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1494, "all_permissive": false }
ansible_role
qmatiaslopez/ansible-basic-red
b033b95949f4423cd8ba953feded0ace9aae5091
0
playbook/roles/server2_web_01
75
[ "no_license" ]
[ { "path": "playbook/roles/server2_web_01/tasks/main.yml", "content": "---\n- name: Instalar Python, entorno virtual y Apache HTTP Server\n dnf:\n name:\n - python3\n - httpd\n - python3-pip\n state: latest\n\n- name: Install virtualenv with pip\n pip:\n name: \n - virtualenv\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1749, "all_permissive": false }
ansible_role
qmatiaslopez/ansible-basic-red
b033b95949f4423cd8ba953feded0ace9aae5091
0
playbook/roles/server3_db
75
[ "no_license" ]
[ { "path": "playbook/roles/server3_db/tasks/main.yml", "content": "---\n- name: Install MatriaDB on db_server\n dnf:\n name: mariadb-server\n state: latest\n- name: Start the MariaDB service\n systemd:\n name: mariadb\n state: started\n enabled: yes\n- name: Allow in firewall the MariaDB ser...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 325, "all_permissive": false }
ansible_role
qmatiaslopez/ansible-basic-red
b033b95949f4423cd8ba953feded0ace9aae5091
0
playbook/roles/ssh_key_creation
75
[ "no_license" ]
[ { "path": "playbook/roles/ssh_key_creation/tasks/main.yml", "content": "---\n - name: Verify if the SSH key for Ansible exists\n stat:\n path: /root/.ssh/ansible\n register: ssh_key\n\n - name: Create the SSH key for Ansible\n command: ssh-keygen -t ed25519 -f ~/.ssh/ansible -q -N \"\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 417, "all_permissive": false }
ansible_role
qmatiaslopez/ansible-basic-red
b033b95949f4423cd8ba953feded0ace9aae5091
0
playbook/roles/ssh_keys_distribution
75
[ "no_license" ]
[ { "path": "playbook/roles/ssh_keys_distribution/vars/main.yml", "content": "---\nremote_user_ssh: root\nssh_key_file: /root/.ssh/ansible.pub", "license_type": "no_license", "detected_licenses": [], "size_bytes": 62 }, { "path": "playbook/roles/ssh_keys_distribution/tasks/main.yml", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 583, "all_permissive": false }
ansible_role
saravanaizeno/3tierapps
8e0b377c747c1eeb2239e21072d2aa8a5fec179c
0
roles/deploy-app
75
[ "no_license" ]
[ { "path": "roles/deploy-app/tasks/main.yml", "content": " - name: copy static index.html to app1 tomcat webapps/ansible/index.html\n template:\n src: index.html.app1\n dest: /usr/share/tomcat/webapps/ansible/index.html\n when: ansible_hostname == \"ip-192-199-0-26\"\n\n - name: copy static...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 444, "all_permissive": false }
ansible_role
amida-tech/dre-deploy
803fe120ef1b1fe0cc38574880b1998a4ec90b53
0
dre-phr/roles/dre-frontend
75
[ "no_license" ]
[ { "path": "dre-phr/roles/dre-frontend/tasks/main.yml", "content": "---\n- name: create user for DRE components\n user: name=dre group=users\n sudo: yes\n\n- name: install frontend\n git: repo=https://github.com/amida-tech/dre-frontend.git dest=/home/dre/dre-frontend update=yes\n sudo: yes\n sudo_user: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1211, "all_permissive": false }
ansible_role
amida-tech/dre-deploy
803fe120ef1b1fe0cc38574880b1998a4ec90b53
0
dre-phr/roles/dre-parsers
75
[ "no_license" ]
[ { "path": "dre-phr/roles/dre-parsers/handlers/main.yml", "content": "---\n- name: restart dre-parsers \n service: name=dre-parsers state=restarted\n sudo: yes\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 }, { "path": "dre-phr/roles/dre-parsers/tasks/mai...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 788, "all_permissive": false }
ansible_role
amida-tech/dre-deploy
803fe120ef1b1fe0cc38574880b1998a4ec90b53
0
dre-phr/roles/dre-services
75
[ "no_license" ]
[ { "path": "dre-phr/roles/dre-services/tasks/main.yml", "content": "---\n- name: create user for DRE components\n user: name=dre group=users\n sudo: yes\n \n- name: install parsers\n git: repo=https://github.com/amida-tech/dre-services.git dest=/home/dre/dre-services update=yes\n sudo: yes\n sudo_user:...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 816, "all_permissive": false }
ansible_role
amida-tech/dre-deploy
803fe120ef1b1fe0cc38574880b1998a4ec90b53
0
dre-phr/roles/hapi_fhir
75
[ "no_license" ]
[ { "path": "dre-phr/roles/hapi_fhir/tasks/main.yml", "content": "--- \n- name: Deploy HAPI FHIR\n get_url: url=https://www.dropbox.com/s/h4h4az6zu6s382y/hapi-fhir-jpaserver-example.war?dl=0 dest=/tmp/hapi-fhir-jpaserver-example.war force=no\n\n- name: Assure database dir\n file: path=/usr/share/tomcat/der...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 814, "all_permissive": false }
ansible_role
amida-tech/dre-deploy
803fe120ef1b1fe0cc38574880b1998a4ec90b53
0
dre-phr/roles/mongod
75
[ "no_license" ]
[ { "path": "dre-phr/roles/mongod/tasks/main.yml", "content": "---\n- name: RedHat | Add source sources\n template: src=mongodb.repo.j2 dest=/etc/yum.repos.d/mongodb-org-3.0.repo\n sudo: yes\n\n- name: Install MongoDB\n yum: name=mongodb-org state=present\n notify: restart mongod\n sudo: yes\n\n- name: S...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 520, "all_permissive": false }
ansible_role
amida-tech/dre-deploy
803fe120ef1b1fe0cc38574880b1998a4ec90b53
0
dre-phr/roles/node
75
[ "no_license" ]
[ { "path": "dre-phr/roles/node/tasks/main.yml", "content": "---\n#- name: add NodeSource official repository for CentOS\n# yum: name=https://rpm.nodesource.com/pub/el/{{ ansible_distribution_major_version }}/{{ ansible_architecture }}/nodesource-release-el{{ ansible_distribution_major_version }}-1.noarch.rp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1176, "all_permissive": false }
ansible_role
amida-tech/dre-deploy
803fe120ef1b1fe0cc38574880b1998a4ec90b53
0
dre-phr/roles/redis
75
[ "no_license" ]
[ { "path": "dre-phr/roles/redis/tasks/main.yml", "content": "---\n#file: roles/redis/tasks/main.yml\n\n- name: Install redis\n yum: name=redis enablerepo=\"epel\" state=\"latest\"\n\n- name: Start Redis\n service: name=redis enabled=yes state=started\n\n", "license_type": "no_license", "detected_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 182, "all_permissive": false }
ansible_role
amida-tech/dre-deploy
803fe120ef1b1fe0cc38574880b1998a4ec90b53
0
dre-phr/roles/tomcat
75
[ "no_license" ]
[ { "path": "dre-phr/roles/tomcat/tasks/main.yml", "content": "---\n- name: Install Java 1.7\n yum: name=java-1.7.0-openjdk state=present\n sudo: yes\n\n- name: add group \"tomcat\"\n group: name=tomcat\n sudo: yes\n\n- name: add user \"tomcat\"\n user: name=tomcat group=tomcat home=/usr/share/tomcat cre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1551, "all_permissive": false }
ansible_role
younglemon7/Raiffeisen-Homework
cb8d5f6e2b4c5979d90ea28e077e0457ca9e8ed8
0
ansible/roles/update
75
[ "no_license" ]
[ { "path": "ansible/roles/update/tasks/main.yml", "content": "---\n\n- name: Prevent packages from being upgraded\n dpkg_selections:\n name: proxmox-ve\n selection: hold\n\n- name: Perform a dist-upgrade.\n ansible.builtin.apt:\n upgrade: dist\n update_cache: yes\n\n- name: Check if a reboot is...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 457, "all_permissive": false }
ansible_role
jmczaens-tip/Zaens_PrelimExam
fa6ba9898314bb76df573f89129633faa5eb9fe7
0
roles/Create-user
75
[ "no_license" ]
[ { "path": "roles/Create-user/tasks/main.yml", "content": "---\n- name: Create a new user\n ansible.builtin.user:\n name: \"{{ username }}\"\n comment: \"{{ name }}\"\n uid: 1010\n group: sudo\n# tasks file for Create-user\n", "license_type": "no_license", "detected_licenses": [], "s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 166, "all_permissive": false }
ansible_role
jmczaens-tip/Zaens_PrelimExam
fa6ba9898314bb76df573f89129633faa5eb9fe7
0
roles/java
75
[ "no_license" ]
[ { "path": "roles/java/tasks/main.yml", "content": "---\n- name: Install Java \n apt:\n name: default-jdk\n state: latest\n update_cache: yes\n# tasks file for java\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 117, "all_permissive": false }
ansible_role
jmczaens-tip/Zaens_PrelimExam
fa6ba9898314bb76df573f89129633faa5eb9fe7
0
roles/python
75
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "---\n- name: Install python3\n apt:\n name: python3\n state: latest\n update_cache: yes\n\n- name: Install pip\n apt:\n name: python3-pip\n state: latest\n update_cache: yes\n\n- name: use pip3 as default pip\n shell: update-alternati...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 434, "all_permissive": false }
ansible_role
cuties-social/cuties-social-ansible
b1d8ead5bc9025e299b76087272dd853f9477e78
2
roles/backup
75
[ "no_license" ]
[ { "path": "roles/backup/templates/backup_paths.j2", "content": "{{ mastodon_home }}/backup.dump\n{{ mastodon_home }}/live\n/etc/nginx/sites-available\n/etc/elasticsearch/jvm.options\n/var/lib/redis/dump.rdb\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 139 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1182, "all_permissive": false }