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
legorovers/ev3dev-ap
c57cacd17f9354da56711551aa02e220316e179b
0
roles/ros
7,800
[ "no_license" ]
[ { "path": "roles/ros/tasks/main.yml", "content": "---\n\n # Roughly following https://github.com/moriarty/ros-ev3/blob/master/brickstrap-build-status.md\n\n - apt: name=apt-utils #update_cache=yes\n - apt: name=build-essential\n - apt: name=cmake\n - apt: name=initramfs-tools\n - apt: name=libboost-al...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2257, "all_permissive": false }
ansible_role
legorovers/ev3dev-ap
c57cacd17f9354da56711551aa02e220316e179b
0
roles/setup
7,800
[ "no_license" ]
[ { "path": "roles/setup/handlers/main.yml", "content": "---\n\n - name: reboot\n command: shutdown -r now \"Reboot triggered by Ansible\"\n async: 0\n poll: 0\n sudo: yes\n ignore_errors: true\n notify: wait for restart\n\n - name: wait for restart\n local_action:\n module: wait_f...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 723, "all_permissive": false }
ansible_role
legorovers/ev3dev-ap
c57cacd17f9354da56711551aa02e220316e179b
0
roles/webrover1
7,800
[ "no_license" ]
[ { "path": "roles/webrover1/tasks/main.yml", "content": "# sudo vi /etc/apt/sources.list\n# deb http://ftp.debian.org/debian jessie-backports main\n# sudo apt-get update\n# sudo apt-get -t jessie-backports install nginx-full\n# sudo vi /etc/nginx/nginx.conf\n# ssl_prefer_server_ciphers off;\n\n# sudo vi /etc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4039, "all_permissive": false }
ansible_role
fla84git/aws
f132907b450eb3974ba7ee86adfc315271635de7
0
ansible/roles/awscloudwatch
7,800
[ "no_license" ]
[ { "path": "ansible/roles/awscloudwatch/tasks/main.yml", "content": "---\n\n- name: install cloudwatch requisites\n yum: name={{ item }} state=present\n with_items:\n - perl-Switch\n - perl-DateTime\n - perl-Sys-Syslog\n - perl-LWP-Protocol-https\n - unzip\n\n- file:\n path: /opt/awsscrip...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 702, "all_permissive": false }
ansible_role
klausmeyer/ansible-homelab
1917354cfe9712c3e66d86ec50ae2ac642511d6f
0
roles/baseline
7,800
[ "no_license" ]
[ { "path": "roles/baseline/tasks/main.yml", "content": "- name: Update SSH config\n ansible.builtin.copy:\n src: ssh/config\n dest: \"{{ ansible_user_dir }}/.ssh/config\"\n owner: \"{{ ansible_user }}\"\n group: \"{{ ansible_user }}\"\n mode: \"0600\"\n\n- name: Set authorized keys\n ansible...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 510, "all_permissive": false }
ansible_role
klausmeyer/ansible-homelab
1917354cfe9712c3e66d86ec50ae2ac642511d6f
0
roles/containerd
7,800
[ "no_license" ]
[ { "path": "roles/containerd/tasks/main.yml", "content": "- name: Install needed packages\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg2\n\n- name: Add docker GPG key\n apt_key:\n url: https://download.docker.com/linux/debian/gpg\n state: present...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1359, "all_permissive": false }
ansible_role
klausmeyer/ansible-homelab
1917354cfe9712c3e66d86ec50ae2ac642511d6f
0
roles/debian
7,800
[ "no_license" ]
[ { "path": "roles/debian/tasks/main.yml", "content": "- name: Install baseline packages\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - apt-transport-https\n - ca-certificates\n - curl\n - git\n - gnupg\n - htop\n - ncdu\n - sudo\n - tig\n - tmux\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 253, "all_permissive": false }
ansible_role
klausmeyer/ansible-homelab
1917354cfe9712c3e66d86ec50ae2ac642511d6f
0
roles/docker
7,800
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Add docker GPG key\n apt_key:\n url: https://download.docker.com/linux/debian/gpg\n state: present\n\n- name: Add docker apt repository\n apt_repository:\n repo: \"deb [arch={{ 'arm64' if ansible_facts.architecture == 'aarch64' else 'am...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 608, "all_permissive": false }
ansible_role
klausmeyer/ansible-homelab
1917354cfe9712c3e66d86ec50ae2ac642511d6f
0
roles/haproxy
7,800
[ "no_license" ]
[ { "path": "roles/haproxy/tasks/main.yml", "content": "- name: Install package\n apt:\n name: haproxy\n\n- name: Create config file\n ansible.builtin.copy:\n src: haproxy.cfg\n dest: /etc/haproxy/haproxy.cfg\n register: haproxy_config\n\n- name: Restart haproxy\n ansible.builtin.systemd:\n na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1372, "all_permissive": false }
ansible_role
klausmeyer/ansible-homelab
1917354cfe9712c3e66d86ec50ae2ac642511d6f
0
roles/kubernetes
7,800
[ "no_license" ]
[ { "path": "roles/kubernetes/tasks/roles/worker.yml", "content": "- name: Find join command\n shell: |\n kubeadm token create --print-join-command\n run_once: true\n delegate_to: \"{{ (hostvars.values() | list | selectattr('k8s_node_type', 'defined') | selectattr('k8s_node_type', 'equalto', 'control-pl...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3643, "all_permissive": false }
ansible_role
zyiqian/harbor
c337805b20d45a45b19f851c4431ba8601c6e6a5
0
roles/ansible-role-harbor
7,800
[ "no_license" ]
[ { "path": "roles/ansible-role-harbor/templates/docker-compose.yml.j2", "content": "version: '2.3'\nservices:\n log:\n image: goharbor/harbor-log:v2.2.1\n container_name: harbor-log\n restart: always\n dns_search: .\n cap_drop:\n - ALL\n cap_add:\n - CHOWN\n - DAC_OVERRIDE\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 8338, "all_permissive": false }
ansible_role
EcommerceCoZam/vm-devops-provisioning
6dbcbef26363921d6d9bb3233a8becd7cb1052b8
0
ansible/roles/argocd
7,802
[ "no_license" ]
[ { "path": "ansible/roles/argocd/templates/argocd-server-config.yml.j2", "content": "url: \"http://{{ ansible_host }}:{{ argocd_port }}\"\napplication.instanceLabelKey: argocd.argoproj.io/instance\nserver.rbac.log.enforce.enable: false\nserver.enable.grpc.web: true\n", "license_type": "no_license", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2201, "all_permissive": false }
ansible_role
EcommerceCoZam/vm-devops-provisioning
6dbcbef26363921d6d9bb3233a8becd7cb1052b8
0
ansible/roles/docker
7,802
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n- name: Stop Docker service if running\n systemd:\n name: docker\n state: stopped\n ignore_errors: yes\n\n- name: Remove all Docker packages completely\n shell: |\n apt-get purge -y docker* containerd* runc || true\n apt-get au...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1990, "all_permissive": false }
ansible_role
EcommerceCoZam/vm-devops-provisioning
6dbcbef26363921d6d9bb3233a8becd7cb1052b8
0
ansible/roles/grafana
7,802
[ "no_license" ]
[ { "path": "ansible/roles/grafana/templates/datasources.yml.j2", "content": "version: '3.8'\n\nservices:\n grafana:\n image: grafana/grafana:latest\n container_name: grafana\n ports:\n - \"{{ grafana_port }}:3000\"\n environment:\n - GF_SECURITY_ADMIN_PASSWORD=<PASSWORD>\n - GF_US...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2026, "all_permissive": false }
ansible_role
EcommerceCoZam/vm-devops-provisioning
6dbcbef26363921d6d9bb3233a8becd7cb1052b8
0
ansible/roles/jenkins
7,802
[ "no_license" ]
[ { "path": "ansible/roles/jenkins/templates/plugins.txt.j2", "content": "# Essential plugins\nblueocean\npipeline-stage-view\nworkflow-aggregator\npipeline-utility-steps\n\n# Docker integration\ndocker-plugin\ndocker-workflow\n\n# Kubernetes integration\nkubernetes\nkubernetes-cli\n\n# Git and SCM\ngit\ngith...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 6805, "all_permissive": false }
ansible_role
EcommerceCoZam/vm-devops-provisioning
6dbcbef26363921d6d9bb3233a8becd7cb1052b8
0
ansible/roles/prometheus
7,802
[ "no_license" ]
[ { "path": "ansible/roles/prometheus/templates/docker-compose.yml.j2", "content": "version: '3.8'\n\nservices:\n prometheus:\n image: prom/prometheus:latest\n container_name: prometheus\n ports:\n - \"{{ prometheus_port }}:9090\"\n volumes:\n - ./prometheus.yml:/etc/prometheus/promethe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1699, "all_permissive": false }
ansible_role
EcommerceCoZam/vm-devops-provisioning
6dbcbef26363921d6d9bb3233a8becd7cb1052b8
0
ansible/roles/sonarqube
7,802
[ "no_license" ]
[ { "path": "ansible/roles/sonarqube/tasks/main.yml", "content": "---\n- name: Create SonarQube directory\n file:\n path: \"{{ devops_dir }}/sonarqube\"\n state: directory\n mode: '0755'\n\n- name: Create SonarQube data directories\n file:\n path: \"{{ devops_dir }}/sonarqube/{{ item }}\"\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2028, "all_permissive": false }
ansible_role
EcommerceCoZam/vm-devops-provisioning
6dbcbef26363921d6d9bb3233a8becd7cb1052b8
0
ansible/roles/trivy
7,802
[ "no_license" ]
[ { "path": "ansible/roles/trivy/templates/trivy-server.yaml.j2", "content": "# Trivy Server Configuration\nserver:\n listen: \"0.0.0.0:{{ trivy_port }}\"\n \ncache:\n dir: \"/cache\"\n \ndb:\n repository: \"ghcr.io/aquasecurity/trivy-db\"\n \njava-db:\n repository: \"ghcr.io/aquasecurity/trivy-java-db...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3684, "all_permissive": false }
ansible_role
ReyMedvedev/ansible
d80c7dccc9b88e2d1a8b060469a21ae3ade25bb3
1
with-roles/roles/db
7,802
[ "no_license" ]
[ { "path": "with-roles/roles/db/tasks/main.yml", "content": "---\n# tasks file for db\n- name: Install PostgreSQL and Python packages\n become: yes\n ansible.builtin.apt:\n name:\n - postgresql\n - postgresql-contrib\n - python3-psycopg2\n - acl\n update_cache: yes\n\n- name: Ensu...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1779, "all_permissive": false }
ansible_role
ReyMedvedev/ansible
d80c7dccc9b88e2d1a8b060469a21ae3ade25bb3
1
with-roles/roles/server
7,802
[ "no_license" ]
[ { "path": "with-roles/roles/server/vars/main.yml", "content": "---\n# vars file for server\napp_path: /var/www/html\napp_repo: https://github.com/Practical-DevOps/app-for-devops\napache_user: www-data\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 135 }, { "pa...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3562, "all_permissive": false }
ansible_role
andayalyka/HOA15.1
b1c43e3a601a02c077fbab5379e4ada84ad8252d
0
roles/neutron
7,802
[ "no_license" ]
[ { "path": "roles/neutron/tasks/prereq.yml", "content": "- name: Creating neutron database\n mysql_db:\n name: neutron\n state: present\n become: true\n become_user: root\n when: ansible_distribution == \"CentOS\"\n\n- name: Granting privileges on neutron database\n mysql_user:\n name: neutron\...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4009, "all_permissive": false }
ansible_role
rukmanit/TIBCO_MDM_9.1_Install_Configure
34b399925693d769cb9e5c9c948e967245aeb2b6
0
roles/Apache
7,802
[ "no_license" ]
[ { "path": "roles/Apache/meta/main.yml", "content": "---\ndependencies:\n#- { role: jboss }\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/Apache/tasks/main.yml", "content": "---\n- name: Install Apache \n yum:\n pkg: httpd\n sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 5762, "all_permissive": false }
ansible_role
rukmanit/TIBCO_MDM_9.1_Install_Configure
34b399925693d769cb9e5c9c948e967245aeb2b6
0
roles/ECM
7,802
[ "no_license" ]
[ { "path": "roles/ECM/defaults/main.yml", "content": "artifactory_username: admin\nartifactory_password: <PASSWORD>\nartificatory_url: \ndirectory_list:\n - \"{{ jboss_download_dir }}\"\nsoftware_download_dict:\n \"{{ jboss_installer_url }}\": \"{{ software_location }}\"\nsoftware_unarchive_dict:\n \"{{ s...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3473, "all_permissive": false }
ansible_role
rukmanit/TIBCO_MDM_9.1_Install_Configure
34b399925693d769cb9e5c9c948e967245aeb2b6
0
roles/Ignite
7,802
[ "no_license" ]
[ { "path": "roles/Ignite/defaults/main.yml", "content": "---\nartifactory_username: admin\nartifactory_password: <PASSWORD>\nartificatory_url: \nartificatory_ignite_url: ignite.zip \ndirectory_list:\n - \"{{ install_mdm_dir }}\"\n - \"{{ software_location }}\"\n - \"{{ ignite_log_dir }}\"\nsoftware_dow...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 60698, "all_permissive": false }
ansible_role
rukmanit/TIBCO_MDM_9.1_Install_Configure
34b399925693d769cb9e5c9c948e967245aeb2b6
0
roles/jboss
7,802
[ "no_license" ]
[ { "path": "roles/jboss/tasks/main.yml", "content": "---\n# Create the Software install directory\n- name: Create Installer directory\n file:\n path: \"{{ item }}\"\n state: directory\n mode: 0755\n loop: \"{{ directory_list }}\"\n\n# Download and Unarchive the MDM Installable\n- name: Download In...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 7392, "all_permissive": false }
ansible_role
satoknj/ca-ansible-sample
10afeb5ae6506474254ae19b8b02b69a098739ae
0
roles/ca
7,802
[ "no_license" ]
[ { "path": "roles/ca/tasks/create-crl.yml", "content": "- name: put serial file\n copy:\n src: crlnumber\n dest: \"{{ ca_root }}/crlnumber\"\n owner: root\n group: root\n- name: generate client key and crt\n shell: \"{{ item }}\"\n args:\n executable: /bin/bash\n chdir: \"{{ ca_root }}\"...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 3802, "all_permissive": false }
ansible_role
satoknj/ca-ansible-sample
10afeb5ae6506474254ae19b8b02b69a098739ae
0
roles/common
7,802
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: install common softwares\n yum: name={{ item }} state=latest\n with_items:\n - vim\n - openssl\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 107 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 107, "all_permissive": false }
ansible_role
Draskown/devops_reif
db82a9afb429b7c29b716c209fd5395a090a5717
0
ansible/roles/update-os
7,802
[ "no_license" ]
[ { "path": "ansible/roles/update-os/vars/main.yml", "content": "---\n\n# vars file for update-os\nkernel_versions_to_keep: 2\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 58 }, { "path": "ansible/roles/update-os/tasks/main.yml", "content": "---\n# Tasks file...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1681, "all_permissive": false }
ansible_role
dmizuno55/ambient-monitor-provision
c769da31b62aec495d4a16ce9f998b51bbc068bf
0
playbooks/roles/common
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/common/tasks/main.yml", "content": "- name: add ja._JP.UTF8 to locale.gen\n locale_gen: name=ja_JP.UTF-8 state=present\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 84 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 84, "all_permissive": false }
ansible_role
dmizuno55/ambient-monitor-provision
c769da31b62aec495d4a16ce9f998b51bbc068bf
0
playbooks/roles/github
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/github/vars/main.yml", "content": "secret_key: \"{{ vault_secret_key }}\"\ngithub_user: vagrant\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 58 }, { "path": "playbooks/roles/github/tasks/main.yml", "content": "- include_vars: vau...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 425, "all_permissive": false }
ansible_role
dmizuno55/ambient-monitor-provision
c769da31b62aec495d4a16ce9f998b51bbc068bf
0
playbooks/roles/mongodb
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/mongodb/tasks/main.yml", "content": "- name: import public key \n apt_key: keyserver=keyserver.ubuntu.com id=7F0CEB10\n\n- name: create mongodb sources list\n shell: echo \"deb http://repo.mongodb.org/apt/debian wheezy/mongodb-org/3.0 main\" | sudo tee /etc/apt/sources.list.d/mo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 336, "all_permissive": false }
ansible_role
dmizuno55/ambient-monitor-provision
c769da31b62aec495d4a16ce9f998b51bbc068bf
0
playbooks/roles/nodejs
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/nodejs/tasks/main.yml", "content": "- name: install curl\n apt: name=curl state=present update_cache=yes\n\n- name: prepare nodejs v4.x\n shell: curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -\n\n- name: install nodejs\n apt: name=nodejs state=present\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 316, "all_permissive": false }
ansible_role
ranson21/ansible-openvpn
d1570cf0b456d9d13fca6bb7fa8c45b3069e764d
0
playbooks/roles/base
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/base/README.md", "content": "# Base Role\n\nConfigures basic system settings and installs required packages.\n\n## Requirements\n\n- Debian 11 or later\n- Python 3\n\n## Role Variables\n\n```yaml\nbase_packages:\n - openvpn\n - easy-rsa\n - nginx\n - python3-pip\n - git\n - ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 951, "all_permissive": false }
ansible_role
ranson21/ansible-openvpn
d1570cf0b456d9d13fca6bb7fa8c45b3069e764d
0
playbooks/roles/nginx
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/nginx/templates/configure-runtime.sh.j2", "content": "#!/bin/bash\nset -euo pipefail\n\n# Read runtime configuration from instance metadata\nEXTERNAL_IP=$(curl -H \"Metadata-Flavor: Google\" \"http://metadata.google.internal/computeMetadata/v1/instance/network-interfaces/0/access-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 6535, "all_permissive": false }
ansible_role
ranson21/ansible-openvpn
d1570cf0b456d9d13fca6bb7fa8c45b3069e764d
0
playbooks/roles/openvpn
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/openvpn/templates/server.conf.j2", "content": "{{ lookup('file', 'server.conf') }}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "playbooks/roles/openvpn/defaults/main.yml", "content": "openvpn_port: 1194\nopenvpn_pr...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4310, "all_permissive": false }
ansible_role
ranson21/ansible-openvpn
d1570cf0b456d9d13fca6bb7fa8c45b3069e764d
0
playbooks/roles/web_interface
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/web_interface/templates/vpn-web.service.j2", "content": "{{ lookup('file', 'vpn-web.service') }}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "playbooks/roles/web_interface/README.md", "content": "# Web Interface Ro...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2663, "all_permissive": false }
ansible_role
broskos/mirror-demo
c9f21ad562e8ccc42c917c6294ab13ccd946a5da
0
roles/quay_list_org_repositories
7,802
[ "no_license" ]
[ { "path": "roles/quay_list_org_repositories/handlers/main.yml", "content": "---\n# handlers file for quay_list_org_repositories\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 }, { "path": "roles/quay_list_org_repositories/tests/test.yml", "content": "---\...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2240, "all_permissive": false }
ansible_role
broskos/mirror-demo
c9f21ad562e8ccc42c917c6294ab13ccd946a5da
0
roles/quay_mirror_repo
7,802
[ "no_license" ]
[ { "path": "roles/quay_mirror_repo/tasks/main.yml", "content": "---\n# tasks file for quay_mirror_repo\n- name: Ensure the organization exists\n infra.quay_configuration.quay_organization:\n name: \"{{ quay_mirror_repo_quay_organization }}\"\n state: present\n quay_host: \"{{ quay_mirror_repo_quay_...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 3344, "all_permissive": false }
ansible_role
broskos/mirror-demo
c9f21ad562e8ccc42c917c6294ab13ccd946a5da
0
roles/quay_org
7,802
[ "no_license" ]
[ { "path": "roles/quay_org/tasks/default_perms.yml", "content": "---\n- name: Ensure the default permissions exist\n infra.quay_configuration.quay_default_perm:\n organization: \"{{ quay_org_name }}\"\n name: \"{{ quay_org_name + '+' + item['name']\n if '+' not in item['name'] and item['type'] ==...
{ "task_files": 10, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 15, "total_bytes": 33439, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/apache
7,802
[ "no_license" ]
[ { "path": "roles/apache/templates/site-available.j2", "content": "<VirtualHost {{ localip }}:{{ httpd_port }}>\n ServerName {{ domain_name }}\n DocumentRoot /var/www/{{ domain_name }}\n ErrorLog ${APACHE_LOG_DIR}/error.log\n CustomLog ${APACHE_LOG_DIR}/access.log combined\n</VirtualHost>\n", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2194, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/composer
7,802
[ "no_license" ]
[ { "path": "roles/composer/tasks/main.yml", "content": "---\n# tasks file for composer\n\n- name: Installing composer\n shell: curl -sS https://getcomposer.org/installer | php && mv -f ./composer.phar /usr/local/bin/composer\n args:\n creates: /usr/local/bin/composer\n\n- name: Make Composer executabl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 294, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/misc
7,802
[ "no_license" ]
[ { "path": "roles/misc/tasks/main.yml", "content": "---\n# tasks file for misc\n\n- name: install notepadqq\n apt_repository: repo=\"ppa:notepadqq-team/notepadqq\" state=present\n\n- name: install python and aptitude\n apt: name={{ item }} state=present\n with_items:\n - python-software-properties\n - p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1207, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/mysql
7,802
[ "no_license" ]
[ { "path": "roles/mysql/templates/my.cnf.j2", "content": "user=root\npassword={{ <PASSWORD> }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "roles/mysql/tasks/main.yml", "content": "---\n# tasks file for mysql\n\n- name: Installing mysql\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 924, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/nginx
7,802
[ "no_license" ]
[ { "path": "roles/nginx/templates/index.html", "content": "<!DOCTYPE html>\n<html>\n<head>\n<title>Welcome to nginx!</title>\n<style>\n body {\n width: 35em;\n margin: 0 auto;\n font-family: Tahoma, Verdana, Arial, sans-serif;\n }\n</style>\n</head>\n<body>\n<h1>Welcome to nginx!</...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1097, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/nodejs
7,802
[ "no_license" ]
[ { "path": "roles/nodejs/tasks/main.yml", "content": "---\n# tasks file for nodejs\n\n- name: Add node key\n apt_key:\n url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key\n state: present\n- name: Add Nodesource Apt Sources\n become: yes\n apt_repository:\n repo: '{{ item }}'\n state:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 660, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/php
7,802
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n# tasks file for php\n\n- name: installing php5.6\n apt: name={{ item }} state=present\n with_items:\n - php5.6\n - php5.6-mysql\n - php5.6-gd\n - php5.6-xml\n - php5.6-mbstring\n - php5.6-curl\n - php5.6-fpm\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 668, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/phpmyadmin
7,802
[ "no_license" ]
[ { "path": "roles/phpmyadmin/tasks/main.yml", "content": "---\n# tasks file for phpmyadmin\n\n- name: Installing phpmyadmin\n apt: name=phpmyadmin state=present\n\n- name: Moving configuration file\n template: src=phpmyadmin.conf dest=/etc/nginx/conf.d/phpmyadmin.conf\n\n- name: create directory\n file: p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 281, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/phppgadmin
7,802
[ "no_license" ]
[ { "path": "roles/phppgadmin/vars/main.yml", "content": "---\n# vars file for phppgadmin", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "roles/phppgadmin/tasks/main.yml", "content": "---\n# tasks file for phppgadmin\n\n- name: Install phppgadmin...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 682, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/postgresql
7,802
[ "no_license" ]
[ { "path": "roles/postgresql/tasks/main.yml", "content": "---\n# tasks file for postgresql\n\n- name: Install postgresql\n apt: name={{ item }} state=present\n with_items:\n - postgresql\n - postgresql-contrib\n - libpq-dev\n - php5.6-pgsql\n - python3-psycopg2\n\n- name: Ensure the PostgreSQL service...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1737, "all_permissive": false }
ansible_role
premryp007/ubuntu-ansible
37515f1e28b8376868097449922663fb0701fa71
0
roles/skype
7,802
[ "no_license" ]
[ { "path": "roles/skype/tasks/main.yml", "content": "---\n# tasks file for skype\n\n- name: Install dependenice\n apt: name=libqtwebkit4 state=present\n\n- name: Install add i386 Arc\n command: dpkg --add-architecture i386\n args:\n creates: /var/lib/dpkg/arch\n when: ansible_architecture != 'i386'\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 453, "all_permissive": false }
ansible_role
sotudeko/nxrm3-repository-config
a1f0d7c085f129e5ac5eb8cfcae39c9bda27d794
0
playbooks/roles/blobstore-create
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/blobstore-create/files/blobstore-config.json", "content": "{\n \"nxrm3_blob_name\": \"maven\",\n \"nxrm3_blob_path\": \"maven\",\n \"nxrm3_blob_softQuota\": {\n \"type\": \"string\",\n \"limit\": 0\n }\n}\n\n", "license_type": "no_license", "detected_licenses": [...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 863, "all_permissive": false }
ansible_role
sotudeko/nxrm3-repository-config
a1f0d7c085f129e5ac5eb8cfcae39c9bda27d794
0
playbooks/roles/nexus-iq-config
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/nexus-iq-config/handlers/main.yml", "content": "---\n# handlers file for nexus-iq-config", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "playbooks/roles/nexus-iq-config/tests/test.yml", "content": "---\n- hosts: local...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 597, "all_permissive": false }
ansible_role
sotudeko/nxrm3-repository-config
a1f0d7c085f129e5ac5eb8cfcae39c9bda27d794
0
playbooks/roles/repository-create
7,802
[ "no_license" ]
[ { "path": "playbooks/roles/repository-create/vars/main.yml", "content": "---\n# vars file for repository-create", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "playbooks/roles/repository-create/tests/test.yml", "content": "---\n- hosts: localho...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 3897, "all_permissive": false }
ansible_role
itlinux/pure-storage
c4aff57364f9bc23ea60661105e7e087ee31a5dd
0
roles/pure
7,802
[ "no_license" ]
[ { "path": "roles/pure/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - pure\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 63 }, { "path": "roles/pure/README.md", "content": "Role Pure – Controllers\n=========\nThis ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2109, "all_permissive": false }
ansible_role
itlinux/pure-storage
c4aff57364f9bc23ea60661105e7e087ee31a5dd
0
roles/pure-computes
7,802
[ "no_license" ]
[ { "path": "roles/pure-computes/handlers/main.yml", "content": "---\n- name: Restart OpenStack services\n become: yes\n command: openstack-service restart\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 }, { "path": "roles/pure-computes/tests/test.yml", "...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 879, "all_permissive": false }
ansible_role
kapilsthakkar25/ansible-example
ea18750d691d3d5def8d6059c658ffbb96bcc718
0
devopslab/roles/task.reboot
7,802
[ "no_license" ]
[ { "path": "devopslab/roles/task.reboot/tasks/reboot-windows.yml", "content": "\r\n- name: reboot windows instance\r\n win_reboot:\r\n reboot_timeout: \"{{ reboot_timeout }}\"\r\n ", "license_type": "no_license", "detected_licenses": [], "size_bytes": 96 }, { "path": "devopslab/roles...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1006, "all_permissive": false }
ansible_role
cyberfantom/kube-tasks
67df5673b30f4a8de77a76a25b384e99a34f8b09
3
roles/postinstall
7,802
[ "no_license" ]
[ { "path": "roles/postinstall/tasks/debian.yml", "content": "---\n\n- name: install pip\n apt:\n name: python-pip\n state: present\n update_cache: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 94 }, { "path": "roles/postinstall/tasks/redhat.yml", ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 364, "all_permissive": false }
ansible_role
cyberfantom/kube-tasks
67df5673b30f4a8de77a76a25b384e99a34f8b09
3
roles/preinstall
7,802
[ "no_license" ]
[ { "path": "roles/preinstall/tasks/debian.yml", "content": "---\n\n- name: Run \"apt-get update\"\n apt:\n update_cache: yes\n\n- name: Upgrade all packages to the latest version\n apt:\n upgrade: dist", "license_type": "no_license", "detected_licenses": [], "size_bytes": 139 }, { ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 345, "all_permissive": false }
ansible_role
ChathamDaleJ/ansible
8b02ef24b625b32e38bdbf08e36baa96a99a70e2
0
roles/provisioning
7,802
[ "no_license" ]
[ { "path": "roles/provisioning/tasks/raspian-apt.yml", "content": "- name: Install latest version of ansible\n ansible.builtin.apt:\n name: ansible\n state: latest\n become: true\n\n- name: Install latest version of git\n ansible.builtin.apt:\n name: git\n state: latest\n become: true\n\n- na...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1540, "all_permissive": false }
ansible_role
quaquazzzzzz/ansible-mern-setup
2c46470fa8eb3603424f32b73da6946a2c9afb88
1
roles/database
7,802
[ "no_license" ]
[ { "path": "roles/database/tasks/main.yml", "content": "---\n- name: Install MongoDB\n apt:\n name: mongodb\n state: present\n update_cache: yes\n become: yes # Führt den Task als Superuser aus\n\n- name: Ensure MongoDB is running\n service:\n name: mongodb\n state: started\n enabled: y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 497, "all_permissive": false }
ansible_role
quaquazzzzzz/ansible-mern-setup
2c46470fa8eb3603424f32b73da6946a2c9afb88
1
roles/frontend
7,802
[ "no_license" ]
[ { "path": "roles/frontend/tasks/main.yml", "content": "---\n- name: Clone React application from Git\n git:\n repo: https://github.com/quaquazzzzzz/react_app.git\n dest: /home/ubuntu/myapp\n force: yes\n\n- name: Install PM2 with npm\n npm:\n name: pm2\n global: yes\n become: yes\n\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 461, "all_permissive": false }
ansible_role
ziaurrehman72/custom-ansible-role
790f874d5a3f34edc8b6729c4d36d3a6c4feb09d
0
roles/custom-module-role
7,803
[ "no_license" ]
[ { "path": "roles/custom-module-role/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - custom-module-role", "license_type": "no_license", "detected_licenses": [], "size_bytes": 76 }, { "path": "roles/custom-module-role/tasks/main.yml", "content...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 2296, "all_permissive": false }
ansible_role
Race4Hospiz/teamcontrol-reader
96ed4aff6384283faf055b02ad17a804b766206b
0
provisioning/roles/application
7,803
[ "no_license" ]
[ { "path": "provisioning/roles/application/files/.xsession", "content": "#!/bin/bash\nxset -dpms # disable DPMS (Energy Star) features.\nxset s off # disable screen saver \nxset s noblank # don't blank the video device\nNODE_ENV=production npm start --prefix /home/pi/teamcontrol-reader/ &\nmatchbox-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2180, "all_permissive": false }
ansible_role
Race4Hospiz/teamcontrol-reader
96ed4aff6384283faf055b02ad17a804b766206b
0
provisioning/roles/setup
7,803
[ "no_license" ]
[ { "path": "provisioning/roles/setup/tasks/main.yml", "content": "---\n- name: Set locale de_DE.UTF-8\n locale_gen:\n name: de_DE.UTF-8\n state: present\n- name: Set timezone Europe/Berlin\n timezone:\n name: Europe/Berlin\n\n- name: Set boot options\n lineinfile:\n dest: /boot/config.txt\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 839, "all_permissive": false }
ansible_role
Afsarali1803/ansible
c3b95961ad8393318b57ecc41a595d05e01fa06d
0
roles/cart
7,803
[ "no_license" ]
[ { "path": "roles/cart/tasks/main.yaml", "content": "\n- name: Config NodeJs \n ansible.builtin.include_role:\n name: common\n tasks_from: nodejs\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 }, { "path": "roles/cart/vars/main.yaml", "content": "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 113, "all_permissive": false }
ansible_role
Afsarali1803/ansible
c3b95961ad8393318b57ecc41a595d05e01fa06d
0
roles/common
7,803
[ "no_license" ]
[ { "path": "roles/common/tasks/nodejs.yaml", "content": "- name: Configure the Yum Repos \n ansible.builtin.shell: curl --silent --location https://rpm.nodesource.com/setup_16.x | sudo bash -\n\n- name: Install NodeJS \n ansible.builtin.yum:\n name: \"{{item}}\"\n state: present \n loop: \n - no...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1278, "all_permissive": false }
ansible_role
Afsarali1803/ansible
c3b95961ad8393318b57ecc41a595d05e01fa06d
0
roles/frontend
7,803
[ "no_license" ]
[ { "path": "roles/frontend/vars/main.yaml", "content": "component : frontend", "license_type": "no_license", "detected_licenses": [], "size_bytes": 20 }, { "path": "roles/frontend/tasks/main.yml", "content": "- name: Installing Nginx\n ansible.builtin.package:\n name: nginx\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1123, "all_permissive": false }
ansible_role
Afsarali1803/ansible
c3b95961ad8393318b57ecc41a595d05e01fa06d
0
roles/mongodb
7,803
[ "no_license" ]
[ { "path": "roles/mongodb/vars/main.yaml", "content": "component : mongodb", "license_type": "no_license", "detected_licenses": [], "size_bytes": 19 }, { "path": "roles/mongodb/tasks/main.yaml", "content": "- name: Copy MongoDB repo file \n ansible.builtin.copy:\n src: mongo.repo ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1272, "all_permissive": false }
ansible_role
Afsarali1803/ansible
c3b95961ad8393318b57ecc41a595d05e01fa06d
0
roles/user
7,803
[ "no_license" ]
[ { "path": "roles/user/vars/main.yaml", "content": "component : user", "license_type": "no_license", "detected_licenses": [], "size_bytes": 16 }, { "path": "roles/user/tasks/main.yaml", "content": "- name: Config NodeJs \n ansible.builtin.include_role:\n name: common\n tasks_fr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1342, "all_permissive": false }
ansible_role
giridharanu9/ansibleTask
af3a8d4545564e0548c8e45358c12aa757b64454
0
analyticsZoo/roles/analytics_zoo
7,803
[ "no_license" ]
[ { "path": "analyticsZoo/roles/analytics_zoo/tasks/main.yml", "content": "---\n- name: Download and Unarchive Spark 2.2.0\n unarchive:\n src: https://archive.apache.org/dist/spark/spark-2.2.0/spark-2.2.0-bin-hadoop2.7.tgz\n dest: /usr/lib/spark_2.2.0 \n remote_src: yes\n- name: Download and Unarchi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 531, "all_permissive": false }
ansible_role
giridharanu9/ansibleTask
af3a8d4545564e0548c8e45358c12aa757b64454
0
bigdl/roles/bigdl
7,803
[ "no_license" ]
[ { "path": "bigdl/roles/bigdl/tasks/main.yml", "content": "---\n# Download Bigdl Repo\n- name: Download Bigdl Repo - 0.6.0\n get_url: url=https://repo1.maven.org/maven2/com/intel/analytics/bigdl/dist-spark-1.6.2-scala-2.10.5-all/0.6.0/dist-spark-1.6.2-scala-2.10.5-all-0.6.0-dist.zip dest=/etc/dist-spark-1.6...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 554, "all_permissive": false }
ansible_role
gadiroff/creating_container_app_metricbeat_node_exporter
e94c5acb780a1e64990253a97c586e8c819e00e0
0
roles/metricbeat
7,803
[ "no_license" ]
[ { "path": "roles/metricbeat/tasks/main.yml", "content": "---\n\n\n- name: Add Elasticsearch apt key\n apt_key:\n url: \"https://artifacts.elastic.co/GPG-KEY-elasticsearch\" \n state: present\n\n\n- name: Adding Elasticsearch repo\n apt_repository:\n repo: deb https://artifacts.elastic.co/packages...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 902, "all_permissive": false }
ansible_role
gadiroff/creating_container_app_metricbeat_node_exporter
e94c5acb780a1e64990253a97c586e8c819e00e0
0
roles/node_ex
7,803
[ "no_license" ]
[ { "path": "roles/node_ex/tasks/main.yml", "content": "---\n# tasks file for node_ex\n\n- name: Download Node_exporter\n copy:\n src: node_exporter-0.18.1.linux-amd64\n dest: /tmp\n\n- name: Copy file ..\n copy:\n src: node_exporter-0.18.1.linux-amd64/node_exporter\n dest: /usr/loca...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 593, "all_permissive": false }
ansible_role
oatakan/ansible-rhosp-packstack
778eae6f03306f4010a78ce7b95ae5701ece51f3
0
roles/common
7,803
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: add hosts entry\n lineinfile:\n dest: /etc/hosts\n line: \"{{ ansible_default_ipv4.address }} {{ ansible_fqdn }} {{ ansible_hostname }}\"\n\n- name: set hostname to inventory name\n hostname:\n name: \"{{ inventory_hostname }}\"\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1247, "all_permissive": false }
ansible_role
oatakan/ansible-rhosp-packstack
778eae6f03306f4010a78ce7b95ae5701ece51f3
0
roles/post-install
7,803
[ "no_license" ]
[ { "path": "roles/post-install/tasks/upload_image.yml", "content": "---\n\n- name: check if image exists\n shell: source /root/keystonerc_admin && openstack image list | grep \"{{ os_image.name }}\" | grep active\n register: check_image\n failed_when: false\n changed_when: false\n\n\n#- name: extract ima...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 7861, "all_permissive": false }
ansible_role
tonymnp/mini-projet-ansible
e554bb62be20eeea11103a3b1b3fad398450222d
0
mini-projet-ansible/roles/webapp
7,803
[ "no_license" ]
[ { "path": "mini-projet-ansible/roles/webapp/handlers/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# handlers file for webapp\n\n- name: restart docker\n systemd:\n name: docker\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 136 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1409, "all_permissive": false }
ansible_role
geminigith/ansible_playbooks
88b1738e5094e770cffaeb73445f5066a6f48f61
0
roles/check_create_ai_user_group
7,803
[ "no_license" ]
[ { "path": "roles/check_create_ai_user_group/tasks/main.yml", "content": "#Ansible script to check and create Ab-Initio user group and account\r\n\r\n- name: Ensure the log file exists\r\n file:\r\n path: /tmp/ansible_logs/logs_check_create_user_grp.txt\r\n state: touch\r\n become: yes\r\n\r\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2138, "all_permissive": false }
ansible_role
geminigith/ansible_playbooks
88b1738e5094e770cffaeb73445f5066a6f48f61
0
roles/create_ab_dir
7,803
[ "no_license" ]
[ { "path": "roles/create_ab_dir/tasks/main.yml", "content": "# Check and create required Ab-Initio Directories\r\n\r\n- name: Ensure the directory log file exists\r\n file:\r\n path: /tmp/ansible_logs/logs_ab_dir.txt\r\n state: touch\r\n become: yes\r\n\r\n- name: Checking if Ab Initio working direct...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 8507, "all_permissive": false }
ansible_role
geminigith/ansible_playbooks
88b1738e5094e770cffaeb73445f5066a6f48f61
0
roles/create_mounts
7,803
[ "no_license" ]
[ { "path": "roles/create_mounts/vars/main.yml", "content": "fstype_name: ext4\n\ndevice_name_1: /dev/nvme1n1p1\ndevice_name_2: /dev/nvme1n1p2\ndevice_name_3: /dev/nvme1n1p3\ndevice_name_4: /dev/nvme1n1p4\n\npath_for_device_1_mount: /abinitio/apps\npath_for_device_2_mount: /abinitio/mfs\npath_for_device_3_mou...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3673, "all_permissive": false }
ansible_role
geminigith/ansible_playbooks
88b1738e5094e770cffaeb73445f5066a6f48f61
0
roles/create_partition
7,803
[ "no_license" ]
[ { "path": "roles/create_partition/tasks/main.yml", "content": "# Create partitions with parted module\r\n\r\n - name: Creating log file for partitions creation\r\n become: no\r\n file:\r\n dest: /tmp/ansible_logs/logs_partitions.txt\r\n state: touch\r\n delegate_to: localhost\r\n\r\n - name: Che...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2589, "all_permissive": false }
ansible_role
geminigith/ansible_playbooks
88b1738e5094e770cffaeb73445f5066a6f48f61
0
roles/instal_cc
7,803
[ "no_license" ]
[ { "path": "roles/instal_cc/tasks/main.yml", "content": "#Task to install Control-Center\r\n\r\n- name: Creating log file\r\n become: False\r\n file:\r\n dest: /tmp/ansible_logs/logs_install_cc.txt\r\n state: touch\r\n delegate_to: localhost\r\n\r\n- name: Copy and extract Installer Package from S3\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 7458, "all_permissive": false }
ansible_role
geminigith/ansible_playbooks
88b1738e5094e770cffaeb73445f5066a6f48f61
0
roles/install_ag
7,803
[ "no_license" ]
[ { "path": "roles/install_ag/tasks/main.yml", "content": "---\r\n- name: Creating log file\r\n become: no\r\n file:\r\n dest: /tmp/ansible_logs/logs_ag_install.txt\r\n state: touch\r\n delegate_to: localhost\r\n\r\n- name: Copy and extract Installer Package from S3\r\n aws_s3:\r\n bucket: '{{ s3...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 11468, "all_permissive": false }
ansible_role
geminigith/ansible_playbooks
88b1738e5094e770cffaeb73445f5066a6f48f61
0
roles/install_coop
7,803
[ "no_license" ]
[ { "path": "roles/install_coop/templates/apphubrc.j2", "content": "# /abinitio/opt/abinitio-app-hub/config/apphubrc: created by abinst\r\n\r\nAB_COOPERATING_SYSTEMS : abinst-V{{ ai_version }}\r\nAB_DISPLAY_NAME @ abinst-V{{ ai_version }} : V{{ ai_version }}\r\nAB_DESCRIPTION @ abinst-V{{ ai_version }} : Use ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 7565, "all_permissive": false }
ansible_role
geminigith/ansible_playbooks
88b1738e5094e770cffaeb73445f5066a6f48f61
0
roles/install_pkgs
7,803
[ "no_license" ]
[ { "path": "roles/install_pkgs/tasks/main.yml", "content": "# Ansible task to install Java Pkg\n\n- name: Ensure log directory exists\n become: yes\n file:\n path: /tmp/ansible_logs\n state: directory\n mode: '0755'\n delegate_to: localhost\n\n- name: Creating log file for Java Installation\n be...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1737, "all_permissive": false }
ansible_role
nmedija/terraform-kubernetes-aws
cd89f373c55136b06e2042839a41523f2fcf58a9
0
ansible/roles/common
7,803
[ "permissive" ]
[ { "path": "ansible/roles/common/tasks/main.yaml", "content": "---\n- name: update apt cache\n apt:\n update_cache: True\n cache_valid_time: 3600\n\n- name: install common dependencies\n apt:\n name: [\n \"software-properties-common\",\n \"apt-transport-https\",\n \"ca-certificates\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 574, "all_permissive": true }
ansible_role
nmedija/terraform-kubernetes-aws
cd89f373c55136b06e2042839a41523f2fcf58a9
0
ansible/roles/docker
7,803
[ "permissive" ]
[ { "path": "ansible/roles/docker/tasks/main.yaml", "content": "---\n- name: install dependencies\n apt:\n name: [\n \"software-properties-common\",\n \"apt-transport-https\",\n \"ca-certificates\"\n ]\n state: latest\n\n- name: add docker apt key\n apt_key:\n url: \"https://downl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 630, "all_permissive": true }
ansible_role
nmedija/terraform-kubernetes-aws
cd89f373c55136b06e2042839a41523f2fcf58a9
0
ansible/roles/kubernetes-common
7,803
[ "permissive" ]
[ { "path": "ansible/roles/kubernetes-common/tasks/main.yaml", "content": "---\n- name: add docker apt key\n apt_key:\n url: \"https://packages.cloud.google.com/apt/doc/apt-key.gpg\"\n state: present\n\n- name: add docker apt repository\n apt_repository:\n repo: \"deb https://apt.kubernetes.io/ kub...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 519, "all_permissive": true }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/backup
7,803
[ "no_license" ]
[ { "path": "roles/backup/files/backup.sh", "content": "#!/bin/bash\n\n# Script to create snapshot of disk\nyc compute snapshot create --folder-id {{ folder_id }} --name web-snapshot --description \"Snapshot of web server disk\"\n", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 312, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/bastion
7,803
[ "no_license" ]
[ { "path": "roles/bastion/tasks/main.yml", "content": "---\n- name: Configure bastion host\n hosts: bastion\n become: yes\n\n tasks:\n - name: Install SSH server\n apt:\n name: openssh-server\n state: present\n\n - name: Configure SSH access\n template:\n src: templates/sshd_config....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 388, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/common
7,803
[ "no_license" ]
[ { "path": "roles/common/handlers/main.yml", "content": "---\n- name: Restart common services\n ansible.builtin.service:\n name: \"{{ item }}\"\n state: restarted\n loop:\n - sshd # Пример сервиса, настройте под ваши нужды\n become: true", "license_type": "no_license", "detected_licenses...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1531, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/elasticsearch
7,803
[ "no_license" ]
[ { "path": "roles/elasticsearch/templates/elasticsearch.yml.j2", "content": "cluster.name: my-cluster\nnode.name: {{ inventory_hostname }}\nnetwork.host: {{ ansible_host }}\nhttp.port: 9200\npath.logs: /var/log/elasticsearch\npath.data: /var/lib/elasticsearch\ncluster.initial_master_nodes: [\"{{ ansible_host...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3040, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/filebeat
7,803
[ "no_license" ]
[ { "path": "roles/filebeat/tasks/main.yml", "content": "---\n- name: Ensure ubuntu user can use sudo without password\n ansible.builtin.lineinfile:\n path: /etc/sudoers.d/ubuntu\n line: \"ubuntu ALL=(ALL) NOPASSWD:ALL\"\n create: yes\n mode: \"0440\"\n owner: root\n group: root\n become: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2785, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/kibana
7,803
[ "no_license" ]
[ { "path": "roles/kibana/tasks/main.yml", "content": "- name: Add Elastic repository (Yandex Mirror 7.x)\n ansible.builtin.shell: |\n echo \"deb [trusted=yes] https://mirror.yandex.ru/mirrors/elastic/7/ stable main\" | tee /etc/apt/sources.list.d/elastic-7.x.list\n args:\n creates: /etc/apt/sources.l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1102, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/load_balancer
7,803
[ "no_license" ]
[ { "path": "roles/load_balancer/tasks/main.yml", "content": "---\n- name: Configure load balancer\n hosts: localhost\n gather_facts: no\n\n tasks:\n - name: Create target group\n uri:\n url: \"https://load-balancer.api.cloud.yandex.net/load-balancer/v1/targetGroups\"\n method: POST\n he...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1383, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/nat_gateway
7,803
[ "no_license" ]
[ { "path": "roles/nat_gateway/templates/nat_gateway.json", "content": "{\n \"name\": \"web-nat-gateway\",\n \"description\": \"NAT gateway for web servers\",\n \"labels\": {},\n \"folderId\": \"{{ folder_id }}\",\n \"regionId\": \"ru-central1\",\n \"natGateway\": {\n \"type\": \"NAT\",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 660, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/nginx
7,803
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "- name: Install Nginx\n apt:\n name: nginx\n state: present\n\n- name: Copy static site files\n copy:\n src: \"{{ ansible_dir }}/roles/nginx/files/index.html\"\n dest: /var/www/html/index.html\n owner: www-data\n group: www-data\n mo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 575, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/security_groups
7,803
[ "no_license" ]
[ { "path": "roles/security_groups/tasks/main.yml", "content": "---\n- name: Configure security groups\n hosts: localhost\n gather_facts: no\n\n tasks:\n - name: Create security group\n uri:\n url: \"https://vpc.api.cloud.yandex.net/vpc/v1/securityGroups\"\n method: POST\n headers:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 677, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/snapshots
7,803
[ "no_license" ]
[ { "path": "roles/snapshots/tasks/main.yml", "content": "---\n- name: Gather instance info\n yandex_compute_instance_info:\n folder_id: \"{{ yandex_folder_id }}\"\n register: instances\n\n- name: Create snapshot\n yandex_compute_snapshot:\n folder_id: \"{{ yandex_folder_id }}\"\n source_disk_id: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 415, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/terraform
7,803
[ "no_license" ]
[ { "path": "roles/terraform/tasks/main.yml", "content": "---\n- name: Initialize Terraform\n command: terraform init\n\n- name: Apply Terraform configuration\n command: terraform apply -auto-approve\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 139 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 139, "all_permissive": false }
ansible_role
Alex2nder/diplom_neto
170d98bf801922d6b7acad774c7f8db28fb38899
0
roles/web
7,803
[ "no_license" ]
[ { "path": "roles/web/handlers/main.yml", "content": "---\n- name: Restart Nginx\n ansible.builtin.service:\n name: nginx\n state: restarted\n become: true\n\n- name: Restart Zabbix Agent\n service:\n name: zabbix-agent\n state: restarted\n\n- name: Restart Elasticsearch\n service:\n name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 3295, "all_permissive": false }