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
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_18/roles/install-grafana
2,918
[ "no_license" ]
[ { "path": "Lesson_18/roles/install-grafana/tasks/main.yml", "content": "---\n# tasks file for install-grafana\n- name: Create garafana repo file\n template:\n dest: /etc/yum.repos.d/grafana.repo\n src: templates/grafana.repo.j2\n\n- name: Install grafana\n yum:\n name: grafana\n state: present...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 474, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_18/roles/install-node-exporter
2,918
[ "no_license" ]
[ { "path": "Lesson_18/roles/install-node-exporter/tasks/main.yml", "content": "---\n- name: Check that the somefile exists\n stat:\n path: /tmp/node_exporter-{{ version }}.linux-amd64.tar.gz\n register: stat_result\n \n- name: Download prometheus\n get_url:\n url: https://github.com/prometheus/node...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1730, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_18/roles/install-prometheus-server
2,918
[ "no_license" ]
[ { "path": "Lesson_18/roles/install-prometheus-server/handlers/main.yml", "content": "---\n# handlers file for install-prometheus-server\n- name: daemon reload\n systemd:\n daemon_reload: yes\n\n- name: start prometheus\n systemd:\n name: prometheus\n state: started\n enabled: yes\n\n- na...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 2714, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_22/roles/ospf
2,918
[ "no_license" ]
[ { "path": "Lesson_22/roles/ospf/templates/zebra.conf_r2.j2", "content": "!\n! Zebra configuration saved from vty\n! 2020/06/09 18:34:05\n!\nhostname {{ hostname_r2 }}\n!\ninterface eth0\n ipv6 nd suppress-ra\n!\ninterface eth1\n ipv6 nd suppress-ra\n!\ninterface eth2\n ipv6 nd suppress-ra\n!\ninterface lo...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 5195, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_24/roles/install-vpn
2,918
[ "no_license" ]
[ { "path": "Lesson_24/roles/install-vpn/handlers/main.yml", "content": "---\n- name: start openvpn\n systemd:\n name: openvpn@server\n state: started\n enabled: yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 103 }, { "path": "Lesson_24/roles/ins...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 783, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_26/roles/ipaclient
2,918
[ "no_license" ]
[ { "path": "Lesson_26/roles/ipaclient/tasks/main.yml", "content": "---\n- name: Install packages\n yum:\n name: \"{{ packages }}\"\n vars:\n packages:\n - ipa-client\n\n- name: Change /etc/hosts\n copy:\n src: hosts\n dest: /etc/hosts\n \n- name: resolv.conf configuring\n lineinfile:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 649, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_26/roles/ipaserver
2,918
[ "no_license" ]
[ { "path": "Lesson_26/roles/ipaserver/files/hosts", "content": "127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4\n::1 localhost localhost.localdomain localhost6 localhost6.localdomain6\n192.168.11.13 ipa.otus.local\n192.168.11.14 cl01.otus.local", "license_type": "no...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 930, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_36/roles/client
2,918
[ "no_license" ]
[ { "path": "Lesson_36/roles/client/tasks/main.yml", "content": "---\n- name: install nfs\n yum:\n name: nfs-utils\n state: present\n\n- name: create mount dir\n file:\n path: /var/nfs\n state: directory\n mode: '0777'\n \n- name: mount nfs share\n mount:\n path: /var/nfs\n src: 192...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 377, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_36/roles/firewall
2,918
[ "no_license" ]
[ { "path": "Lesson_36/roles/firewall/tasks/main.yml", "content": "---\n- name: Put SELinux in permissive mode, logging actions that would be blocked.\n selinux:\n policy: targeted\n state: permissive\n\n- name: Enable and start firewalld\n systemd:\n name: firewalld\n enabled: yes\n state: s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1022, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_36/roles/hosts
2,918
[ "no_license" ]
[ { "path": "Lesson_36/roles/hosts/tasks/main.yml", "content": "---\n- name: Add hosts\n copy:\n src: hosts\n dest: /etc/hosts\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "Lesson_36/roles/hosts/files/hosts", "content": "127.0.0.1 lo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 303, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_36/roles/server
2,918
[ "no_license" ]
[ { "path": "Lesson_36/roles/server/tasks/main.yml", "content": "---\n- name: install nfs\n yum:\n name: nfs-utils\n state: latest\n \n- name: create nfs share dir\n file:\n path: /var/nfs/upload\n state: directory\n mode: '0777'\n \n- name: config export dir\n lineinfile:\n path: /...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 465, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_7/roles/httpd
2,918
[ "no_license" ]
[ { "path": "Lesson_7/roles/httpd/tasks/main.yml", "content": "---\n- name: install epel\n yum:\n name: epel-release\n\n- name: ensure a list of packages installed\n yum:\n name: \"{{ packages }}\"\n vars:\n packages:\n - spawn-fcgi\n - php\n - php-cli\n - mod_fcgid\n - httpd\n\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2093, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_7/roles/kafka
2,918
[ "no_license" ]
[ { "path": "Lesson_7/roles/kafka/defaults/main.yml", "content": "---\n# defaults file for install-node-exporter\npassword: <PASSWORD>", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "Lesson_7/roles/kafka/tasks/main.yml", "content": "---\n- name: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1377, "all_permissive": false }
ansible_role
parshyn-dima/linux_admin
62fe74554c39001103d672647f8b8fcee524600f
1
Lesson_7/roles/timer
2,918
[ "no_license" ]
[ { "path": "Lesson_7/roles/timer/tasks/main.yml", "content": "---\n# Сервис, который будет раз в 30 секунд мониторить лог на предмет наличия ключевого слова\n- name: Copy watchdog file\n copy:\n src: watchdog\n dest: /etc/sysconfig/watchdog\n\n- name: Copy watchlog.log file\n copy:\n src: watchlog...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 797, "all_permissive": false }
ansible_role
mhmdio/ansible-nginx-letsencrypt-vagrant
9ddccd3535831bd4c64290dbce6062c7835f8de2
0
roles/letsencrypt
2,918
[ "no_license" ]
[ { "path": "roles/letsencrypt/defaults/main.yml", "content": "---\n letsencrypt_command: letsencrypt certonly -a webroot --webroot-path=\"{{ letsencrypt_domain_html }}\" -d \"{{ domain }}\" -d \"{{ domain_www }}\" --non-interactive --email=\"{{ domain_email }}\" --agree-tos\n letsencrypt_renewal_frequency:...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1129, "all_permissive": false }
ansible_role
mhmdio/ansible-nginx-letsencrypt-vagrant
9ddccd3535831bd4c64290dbce6062c7835f8de2
0
roles/nginx-http
2,918
[ "no_license" ]
[ { "path": "roles/nginx-http/tasks/main.yml", "content": "---\n- name: Install Nginx\n apt:\n name: nginx\n state: latest\n\n- name: Copy H5BP configuration files\n copy:\n src: '{{ item }}'\n dest: '{{ nginx_root_path }}/'\n with_items:\n - sites-available\n - includes\n - snippets\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1501, "all_permissive": false }
ansible_role
mhmdio/ansible-nginx-letsencrypt-vagrant
9ddccd3535831bd4c64290dbce6062c7835f8de2
0
roles/nginx-https
2,918
[ "no_license" ]
[ { "path": "roles/nginx-https/templates/ssl.conf.j2", "content": "ssl_certificate {{ letsencrypt_cert_path }}/{{ domain }}/fullchain.pem;\nssl_certificate_key {{ letsencrypt_cert_path }}/{{ domain }}/privkey.pem;\nssl_trusted_certificate {{ letsencrypt_cert_path }}/{{ domain }}/fullchain.pem;\ninclude ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1673, "all_permissive": false }
ansible_role
LucianaRadimak/LucianaRadimak-UTNFRA_SO_2do_Parcial_Radimak
3bac02f9be20e1789ffe08fa816a7fcb980910e3
0
202406/ansible/roles/2do_parcial
2,918
[ "no_license" ]
[ { "path": "202406/ansible/roles/2do_parcial/tasks/main.yml", "content": "---\n- name: Crear directorios para alumno y equipo\n file:\n path: \"/tmp/2do_parcial/{{ item }}\"\n state: directory\n mode: '0755'\n loop:\n - \"alumno\"\n - \"equipo\"\n\n- name: Crear archivo de datos del alumno\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 921, "all_permissive": false }
ansible_role
maozza/takipi-playbooks
8fd758fcd92c486863758ddce8d23ce426a790e7
0
roles/install
2,918
[ "no_license" ]
[ { "path": "roles/install/tasks/main.yml", "content": "---\n\n- name: Verify secret exist\n fail: msg=\"Variable secret is not defined use -e secret=SXXX\"\n when: secret is not defined\n\n- name: Download takipi setup scripts\n get_url:\n url: \"{{ takipi.url }}\"\n dest: /var/tmp/takipi-setup.sh\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2333, "all_permissive": false }
ansible_role
rhos-infra/dellemc-idrac
32345dd3fc5268a29bbd8c9799c407deef2aff5f
1
roles/idrac_configuration
2,918
[ "no_license" ]
[ { "path": "roles/idrac_configuration/tasks/power_action.yaml", "content": "---\n\n- name: Ensure Jobs Are Completed Before Any Restart Action\n block:\n - name: Set Facts\n set_fact:\n idrac_runnig_jobs: {}\n\n - name: Retrieve Jobs From iDRAC\n include_role:\n name: idrac_con...
{ "task_files": 10, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 11, "total_bytes": 17471, "all_permissive": false }
ansible_role
jrcichra/rpi-netboot-ansible
3efd8b29a20d6f020984f291675b492aadb36108
2
roles/build
2,918
[ "no_license" ]
[ { "path": "roles/build/tasks/main.yml", "content": "---\n- name: \"Make the tftp_dir\"\n file:\n path: \"{{ tftp_dir }}\"\n state: directory\n\n- name: \"Make a directory for the ip address\"\n file:\n path: \"{{ tftp_dir }}/{{ ip }}\"\n state: directory\n\n- name: Skip everything else if the ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2680, "all_permissive": false }
ansible_role
jrcichra/rpi-netboot-ansible
3efd8b29a20d6f020984f291675b492aadb36108
2
roles/configure
2,918
[ "no_license" ]
[ { "path": "roles/configure/tasks/main.yml", "content": "---\n- name: \"Configure /etc/hosts\"\n template:\n src: \"hosts.j2\"\n dest: \"{{ filesystem_dir }}/etc/hosts\"\n owner: root\n group: root\n mode: 0644\n become: true\n\n- name: \"Configure /etc/hostname\"\n template:\n src: \"ho...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1440, "all_permissive": false }
ansible_role
jrcichra/rpi-netboot-ansible
3efd8b29a20d6f020984f291675b492aadb36108
2
roles/download
2,918
[ "no_license" ]
[ { "path": "roles/download/tasks/main.yml", "content": "---\n\n- name: Make artifacts directory\n file:\n path: \"{{ artifacts_dir }}\"\n state: directory\n\n- name: Download Raspberry Pi OS\n get_url:\n url: \"{{ download_links[mirror][image] }}\"\n dest: \"{{ artifacts_dir }}/{{ download_link...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 287, "all_permissive": false }
ansible_role
jrcichra/rpi-netboot-ansible
3efd8b29a20d6f020984f291675b492aadb36108
2
roles/tftp
2,918
[ "no_license" ]
[ { "path": "roles/tftp/tasks/main.yml", "content": "---\n- name: \"Start a TFTP docker container\"\n docker_container:\n name: \"{{ hostvars['localhost']['tftp_container']['name'] }}\"\n image: \"{{ hostvars['localhost']['tftp_container']['image'] }}\"\n state: started\n restart_policy: unless-s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 474, "all_permissive": false }
ansible_role
daniloiskilo84/golden-image
46face65f961c52153fd88fd050d0bff692e2fc1
0
playbooks/roles/awscli
2,918
[ "no_license" ]
[ { "path": "playbooks/roles/awscli/defaults/main.yml", "content": "---\n# AWS cli\naws_cli_download_dir: /tmp/awscli\naws_cli_url_download: https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip\naws_cli_home: \"/home/{{ usuario }}\"\naws_output_format: json\naws_region: us-east-1\naws_access_key_id: YOUR_...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 971, "all_permissive": false }
ansible_role
daniloiskilo84/golden-image
46face65f961c52153fd88fd050d0bff692e2fc1
0
playbooks/roles/falcon
2,918
[ "no_license" ]
[ { "path": "playbooks/roles/falcon/vars/debian.yml", "content": "---\nfalcon_filename: \"falcon-sensor_6.39.0-13601_amd64.deb\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 60 }, { "path": "playbooks/roles/falcon/tasks/install/redhat.yml", "content": "---\n...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 1319, "all_permissive": false }
ansible_role
daniloiskilo84/golden-image
46face65f961c52153fd88fd050d0bff692e2fc1
0
playbooks/roles/ntp
2,918
[ "no_license" ]
[ { "path": "playbooks/roles/ntp/tasks/setup-RedHat.yml", "content": "---\n- name: CentOS | Install the required packages in Redhat derivatives.\n yum:\n name: chrony\n state: \"{{ chrony_pkg_state }}\"\n\n- name: CentOS | Check if ntpd service exists.\n stat: path=\"/usr/lib/systemd/system/ntpd.servi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 978, "all_permissive": false }
ansible_role
daniloiskilo84/golden-image
46face65f961c52153fd88fd050d0bff692e2fc1
0
playbooks/roles/patch-management
2,918
[ "no_license" ]
[ { "path": "playbooks/roles/patch-management/tasks/setup-RedHat.yml", "content": "---\n- name: updating CentOS cache\n yum:\n update_cache: yes\n\n- name: updating CentOS packages\n yum:\n name: '*'\n state: latest\n\n- name: installing extra dependencies\n yum:\n name:\n - git\n - z...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 289, "all_permissive": false }
ansible_role
daniloiskilo84/golden-image
46face65f961c52153fd88fd050d0bff692e2fc1
0
playbooks/roles/qualys
2,918
[ "no_license" ]
[ { "path": "playbooks/roles/qualys/defaults/main.yml", "content": "---\nqualys_install: true\nqualys_install_source: \"{{ role_path }}/files\"\nqualys_install_dir: \"/tmp\"\nqualys_cid: \"8ef3b34f-f0ec-7b99-8075-a9e8d785f3cc\"\nqualys_aid: \"4ca09212-f0ed-4bd8-a5f0-5501376f087f\"", "license_type": "no_li...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 891, "all_permissive": false }
ansible_role
daniloiskilo84/golden-image
46face65f961c52153fd88fd050d0bff692e2fc1
0
playbooks/roles/ruby
2,918
[ "no_license" ]
[ { "path": "playbooks/roles/ruby/defaults/main.yml", "content": "---\nruby_versions: \"\"\nruby_version_default: \"\"\nruby_install_prefix: \"\"\nruby_binary: \"\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 86 }, { "path": "playbooks/roles/ruby/tasks/main.yml",...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2303, "all_permissive": false }
ansible_role
daniloiskilo84/golden-image
46face65f961c52153fd88fd050d0bff692e2fc1
0
playbooks/roles/ssm-agent
2,918
[ "no_license" ]
[ { "path": "playbooks/roles/ssm-agent/handlers/main.yml", "content": "---\n- name: restart amazon-ssm-agent\n systemd: \n name: snap.amazon-ssm-agent.amazon-ssm-agent\n state: restarted\n\n- name: restart ssm-agent\n systemd:\n name: amazon-ssm-agent\n state: restarted\n", "license_type": "...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 913, "all_permissive": false }
ansible_role
zufardhiyaulhaq/Ansible-Ceph
d015d34eeff87fca57e3d31fea2ceb03b116cb0b
1
roles/ceph
2,918
[ "no_license" ]
[ { "path": "roles/ceph/handlers/main.yml", "content": "---\n# handlers file for ceph", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "roles/ceph/tasks/main.yml", "content": "---\n# tasks file for ceph\n- import_tasks: ceph.yml", "license_type...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2632, "all_permissive": false }
ansible_role
zufardhiyaulhaq/Ansible-Ceph
d015d34eeff87fca57e3d31fea2ceb03b116cb0b
1
roles/env-ceph
2,918
[ "no_license" ]
[ { "path": "roles/env-ceph/templates/sudoers.j2", "content": "stack ALL = (root) NOPASSWD:ALL\nDefaults:stack !requiretty\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 59 }, { "path": "roles/env-ceph/tasks/ssh.yml", "content": "- name: Fetch authorized key u...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 3106, "all_permissive": false }
ansible_role
786951355/ansible_practise
ed421b3928f3a1b8f45e47714ef6113f4dd7b6aa
0
roles/common
2,918
[ "no_license" ]
[ { "path": "roles/common/files/check_ulimit.sh", "content": "#!/bin/bash\n\ngrep -v '^#' /etc/security/limits.conf |grep -q '^*'\nif [ $? -eq 0 ];then\n :\nelse\ncat >> /etc/security/limits.conf <<EOF\n* soft nproc 65535 \n* hard nproc 65535 \n* soft nofile 65535 \n* hard nofile 65535 \nEOF\nfi\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 4841, "all_permissive": false }
ansible_role
786951355/ansible_practise
ed421b3928f3a1b8f45e47714ef6113f4dd7b6aa
0
roles/httpd
2,918
[ "no_license" ]
[ { "path": "roles/httpd/tasks/main.yml", "content": "---\n\n- name: install httpd\n scprit: roles/httpd/files/httpd_install.sh\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 72 }, { "path": "roles/httpd/files/httpd_install.sh", "content": " yum install -y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 503, "all_permissive": false }
ansible_role
786951355/ansible_practise
ed421b3928f3a1b8f45e47714ef6113f4dd7b6aa
0
roles/jdk
2,918
[ "no_license" ]
[ { "path": "roles/jdk/tasks/main.yml", "content": "---\n- name: cp jdk to remote\n copy: src=jdk1.6.tar.gz dest=/tmp/\n\n- name: extract archive\n command: chdir=/usr/bin/ /bin/tar xf /tmp/jdk1.6.tar.gz\n\n- name: set java env\n copy: src=java.sh dest=/etc/profile.d/\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 350, "all_permissive": false }
ansible_role
786951355/ansible_practise
ed421b3928f3a1b8f45e47714ef6113f4dd7b6aa
0
roles/memcached
2,918
[ "no_license" ]
[ { "path": "roles/memcached/tasks/main.yml", "content": "---\n\n- name: install libevent\n yum: name=libevent state=present\n\n- name: install memcached\n yum: name=memcached state=present\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 129, "all_permissive": false }
ansible_role
786951355/ansible_practise
ed421b3928f3a1b8f45e47714ef6113f4dd7b6aa
0
roles/nginx
2,918
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n\n- name: install dep packages\n yum: name=gcc state=installed\n\n- name: install dep packages\n yum: name=openssl-devel state=installed\n\n- name: install dep packages\n yum: name=pcre state=installed\n\n- name: install dep packages\n yum: name=p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1279, "all_permissive": false }
ansible_role
786951355/ansible_practise
ed421b3928f3a1b8f45e47714ef6113f4dd7b6aa
0
roles/redis
2,918
[ "no_license" ]
[ { "path": "roles/redis/files/redis_install.sh", "content": "#!/bin/bash\n\nif [ ! -f /etc/init.d/redis ];then\n\tmkdir /app/redis\n\tmkdir /var/log/redis\n\tcd /tmp/ && /bin/tar xf redis.tar.gz\n\tcd redis-3.0.7\n\tmake\n\tmkdir /usr/local/redis\n\tcp src/{redis-server,redis-cli,redis-benchmark,redis-sentin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1011, "all_permissive": false }
ansible_role
786951355/ansible_practise
ed421b3928f3a1b8f45e47714ef6113f4dd7b6aa
0
roles/tomcat
2,918
[ "no_license" ]
[ { "path": "roles/tomcat/tasks/main.yml", "content": "---\n\n- name: download tomcat\n get_url: url=http://archive.apache.org/dist/tomcat/tomcat-7/v7.0.61/bin/apache-tomcat-7.0.61.tar.gz dest=/opt/apache-tomcat-7.0.61.tar.gz\n\n- name: Extract archive\n command: chdir=/usr/local /bin/tar xf /opt/apache-tom...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 547, "all_permissive": false }
ansible_role
786951355/ansible_practise
ed421b3928f3a1b8f45e47714ef6113f4dd7b6aa
0
roles/zabbix_agent
2,918
[ "no_license" ]
[ { "path": "roles/zabbix_agent/templates/zabbix22-agent.j2", "content": "PidFile=/run/zabbix/zabbix_agentd.pid\nLogFile=/var/log/zabbix/zabbix_agentd.log\nLogFileSize=0\nServerActive=10.10.10.8\nServer=10.10.10.8\nHostname={{ ansible_default_ipv4.address }}\nUnsafeUserParameters=1\n\n", "license_type": "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 423, "all_permissive": false }
ansible_role
Sushmitha771995/practice
23c6f003b78e68cf4942ac2bf74b9200589e5bca
0
roles/cart
2,918
[ "no_license" ]
[ { "path": "roles/cart/tasks/main.yml", "content": "- name: instal node js\n yum:\n name: nodejs\n state: present\n\n- name: add aplication user\n user:\n name: roboshop\n state: present\n\n- name: craete directory to download artifacts\n file:\n path: /home/roboshop/cart\n state: direct...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 671, "all_permissive": false }
ansible_role
Sushmitha771995/practice
23c6f003b78e68cf4942ac2bf74b9200589e5bca
0
roles/catalogue
2,918
[ "no_license" ]
[ { "path": "roles/catalogue/tasks/main.yml", "content": "- name: instal node js\n yum:\n name: nodejs\n state: present\n\n- name: add aplication user\n user:\n name: roboshop\n state: present\n\n- name: create directory to download artifacts\n file:\n path: /home/roboshop/catalogue\n sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 702, "all_permissive": false }
ansible_role
Sushmitha771995/practice
23c6f003b78e68cf4942ac2bf74b9200589e5bca
0
roles/common
2,918
[ "no_license" ]
[ { "path": "roles/common/tasks/azure-artifact.yml", "content": "- name: cpy AZ repo\n template:\n src: azure-cli.repo\n dest: /etc/yum.repos.d/azure-cli.repo\n\n- name: install azure cli\n yum:\n name: [\"azure-cli\" , \"libicu\"]\n state: present\n\n- name: istall azure cli extention\n shell:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2138, "all_permissive": false }
ansible_role
Sushmitha771995/practice
23c6f003b78e68cf4942ac2bf74b9200589e5bca
0
roles/frontend
2,918
[ "no_license" ]
[ { "path": "roles/frontend/tasks/main.yml", "content": "- name: Install Nginx\n yum:\n name: nginx\n state: latest\n\n- name: Download Azure Artifacts\n include_role:\n name: common\n tasks_from: azure-artifact.yml\n vars:\n ARTIFACT_PATH: /usr/share/nginx/html\n COMPONENT: frontend\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 521, "all_permissive": false }
ansible_role
Sushmitha771995/practice
23c6f003b78e68cf4942ac2bf74b9200589e5bca
0
roles/mongo
2,918
[ "no_license" ]
[ { "path": "roles/mongo/tasks/main.yml", "content": "- name: set up mongo repo\n copy:\n src: mongo.repo\n dest: /etc/yum.repos.d/mongo.repo\n\n- name: install mongodb\n yum:\n name: mongodb-org\n state: present\n\n\n\n\n- name: replace 192.168.127.12 by 0.0.0.0\n replace:\n path: /etc/mong...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 794, "all_permissive": false }
ansible_role
Sushmitha771995/practice
23c6f003b78e68cf4942ac2bf74b9200589e5bca
0
roles/payment
2,918
[ "no_license" ]
[ { "path": "roles/payment/tasks/main.yml", "content": "- name: install python\n yum:\n name: [\"python36\" , \"gcc\" , \"python3-devel\"]\n state: present\n\n- name: add aplication user\n user:\n name: roboshop\n state: present\n\n- name: create directory to download artifacts\n file:\n pat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 876, "all_permissive": false }
ansible_role
Sushmitha771995/practice
23c6f003b78e68cf4942ac2bf74b9200589e5bca
0
roles/redis
2,918
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yml", "content": "- name : set up yum repos for redis\n yum:\n name: http://rpms.remirepo.net/enterprise/remi-release-7.rpm\n state: present\n\n- name: install redis\n yum:\n name: redis\n state: present\n enablerepo: remi\n\n- name: change the ip 127.0.0.1...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 434, "all_permissive": false }
ansible_role
Sushmitha771995/practice
23c6f003b78e68cf4942ac2bf74b9200589e5bca
0
roles/user
2,918
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yml", "content": "- name: instal node js\n yum:\n name: nodejs\n state: present\n\n- name: add aplication user\n user:\n name: roboshop\n state: present\n\n- name: carete directory to download artifacts\n file:\n path: /home/roboshop/user\n state: direct...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 671, "all_permissive": false }
ansible_role
tones7778/ansible_networking
4158716bb5bec1e06b428197b31f0d524f1bd069
0
roles/show_version
2,918
[ "permissive" ]
[ { "path": "roles/show_version/tasks/main.yml", "content": "---\n- name: run show version\n ios_command:\n commands:\n - show version | i IOS\n provider: \"{{ cli }}\"\n\n register: results_show_version\n\n- name: print out results of show version.\n debug: var=results_show_version\n", "lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 323, "all_permissive": true }
ansible_role
sayosh0512/wordpress_playbook
cb3b7669cccedd0819566c64dc1a02329b423f23
0
roles/replication
2,918
[ "no_license" ]
[ { "path": "roles/replication/tasks/main.yml", "content": "---\n-\n get_url:\n dest: /home/{{user_name | quote }}\n group: \"{{user_name | quote }}\"\n mode: 493\n owner: \"{{user_name | quote }}\"\n url: \"https://raw.githubusercontent.com/asift91/ansiblewp/master/replication.sh\"\n name: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 459, "all_permissive": false }
ansible_role
sayosh0512/wordpress_playbook
cb3b7669cccedd0819566c64dc1a02329b423f23
0
roles/woocommerce
2,918
[ "no_license" ]
[ { "path": "roles/woocommerce/tasks/main.yml", "content": "---\n-\n get_url:\n dest: /home/{{user_name | quote }}\n group: \"{{user_name | quote }}\"\n mode: 493\n owner: \"{{user_name | quote }}\"\n url: \"https://raw.githubusercontent.com/asift91/ansiblewp/master/woocommerce.sh\"\n name: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 489, "all_permissive": false }
ansible_role
sayosh0512/wordpress_playbook
cb3b7669cccedd0819566c64dc1a02329b423f23
0
roles/wordpress
2,918
[ "no_license" ]
[ { "path": "roles/wordpress/README.md", "content": "Role Name\n=============\n\nWordpress.\n\nRole Information\n-----------------\n\nThis role will create a web root and download the latest version of wordpress.\nUnzipping the wordpress and copying to the target folder.\nUpdating and replacing the wp-config....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2429, "all_permissive": false }
ansible_role
astroicers/outline-terraform-aws
3c30f461306e0853b5636dacbeeaf508ad9e72b7
23
ansible/roles/certbot
2,918
[ "no_license" ]
[ { "path": "ansible/roles/certbot/tasks/main.yml", "content": "---\n- name: Install Certbot repository\n shell: \"amazon-linux-extras install epel -y\"\n become: true\n\n- name: Install Certbot\n yum:\n name:\n - certbot\n - certbot-nginx\n state: present\n update_cache: yes\n become: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 390, "all_permissive": false }
ansible_role
astroicers/outline-terraform-aws
3c30f461306e0853b5636dacbeeaf508ad9e72b7
23
ansible/roles/common
2,918
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: Update list of available packages\n yum:\n name: '*'\n state: latest\n\n- name: Install wget and unzip\n yum:\n name:\n - wget\n - unzip\n state: present\n", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 180, "all_permissive": false }
ansible_role
astroicers/outline-terraform-aws
3c30f461306e0853b5636dacbeeaf508ad9e72b7
23
ansible/roles/nginx
2,918
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "---\n- name: Install Nginx using amazon-linux-extras\n command: amazon-linux-extras install nginx1 -y\n become: true\n\n- name: Delete Nginx default configuration\n file:\n path: /etc/nginx/conf.d/default.conf\n state: absent\n\n- name: Co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 758, "all_permissive": false }
ansible_role
astroicers/outline-terraform-aws
3c30f461306e0853b5636dacbeeaf508ad9e72b7
23
ansible/roles/node
2,918
[ "no_license" ]
[ { "path": "ansible/roles/node/tasks/main.yml", "content": "---\n- name: Add node.js repo\n yum_repository:\n name: nodejs\n description: Node JS\n baseurl: https://rpm.nodesource.com/pub_14.x/el/7/x86_64/\n enabled: 1\n gpgcheck: 1\n gpgkey: https://rpm.nodesource.com/pub/el/NODESOURCE-GP...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 713, "all_permissive": false }
ansible_role
astroicers/outline-terraform-aws
3c30f461306e0853b5636dacbeeaf508ad9e72b7
23
ansible/roles/redis
2,918
[ "no_license" ]
[ { "path": "ansible/roles/redis/tasks/main.yml", "content": "---\n\n- name: Install dependencies\n yum:\n name:\n - gcc\n - make\n state: present\n\n- name: Download and extract Redis source code\n get_url:\n url: \"http://download.redis.io/releases/redis-6.0.11.tar.gz\" # Update the UR...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 897, "all_permissive": false }
ansible_role
diogolimaelven/terraform
4726df210e96f5506af4d20edf98f1eb50550f60
0
terraform_ansible/roles/wordpress
2,918
[ "no_license" ]
[ { "path": "terraform_ansible/roles/wordpress/tasks/main.yml", "content": "---\n - name: Instalando os pacotes abaixo\n apt:\n name:\n - nginx\n - unzip\n - php7.4-zip\n - php-imagick\n - php7.4-curl\n - php7.4-fpm\n - php7.4-mbstring\n - php7.4-cli\n - p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1179, "all_permissive": false }
ansible_role
adrianord/dotfiles
520d412886eecc46e71899d630f7c90bf2b64c53
1
roles/apt
2,858
[ "no_license" ]
[ { "path": "roles/apt/tasks/main.yml", "content": "- name: Update apt cache\n apt:\n update_cache: true\n become: true\n\n- name: Upgrade apt\n apt:\n upgrade: \"yes\"\n when: package_upgrade\n become: true\n\n- name: Install apt packages\n apt:\n name: \"{{ item }}\"\n update_cache: true\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1545, "all_permissive": false }
ansible_role
adrianord/dotfiles
520d412886eecc46e71899d630f7c90bf2b64c53
1
roles/fzf
2,858
[ "no_license" ]
[ { "path": "roles/fzf/tasks/zsh.yml", "content": "- name: Ensure zsh integration\n copy:\n src: fzf.zsh\n dest: \"{{ xdg_config_home }}/zsh/.zsh.d\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 101 }, { "path": "roles/fzf/tasks/main.yml", "content": ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2173, "all_permissive": false }
ansible_role
adrianord/dotfiles
520d412886eecc46e71899d630f7c90bf2b64c53
1
roles/git
2,858
[ "no_license" ]
[ { "path": "roles/git/templates/workgitconfig.j2", "content": "[user]\n email = {{ item.git_email }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/git/tasks/main.yml", "content": "- name: Ensure git repo\n apt_repository:\n repo: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2941, "all_permissive": false }
ansible_role
adrianord/dotfiles
520d412886eecc46e71899d630f7c90bf2b64c53
1
roles/neovim
2,858
[ "no_license" ]
[ { "path": "roles/neovim/files/lua/settings/keybindings.lua", "content": "return {\n setup = function()\n local options = { noremap = true }\n local map = vim.api.nvim_set_keymap\n map('n', '<C-i>', '<C-^>', options)\n end\n}\n", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 29, "total_bytes": 16005, "all_permissive": false }
ansible_role
adrianord/dotfiles
520d412886eecc46e71899d630f7c90bf2b64c53
1
roles/node
2,858
[ "no_license" ]
[ { "path": "roles/node/tasks/main.yaml", "content": "- name: nvm\n shell: >\n curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash\n args:\n creates: \"{{ ansible_env.HOME }}/.nvm/nvm.sh\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 165, "all_permissive": false }
ansible_role
adrianord/dotfiles
520d412886eecc46e71899d630f7c90bf2b64c53
1
roles/zsh
2,858
[ "no_license" ]
[ { "path": "roles/zsh/tasks/main.yml", "content": "- name: Install zsh\n apt:\n name: zsh\n state: present\n become: true\n\n- name: Ensure zsh XDG config dir globally\n lineinfile:\n path: /etc/zsh/zshenv\n line: export ZDOTDIR=\"${XDG_CONFIG_HOME:-${HOME}/.config}/zsh\"\n become: true\n\n- ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 4967, "all_permissive": false }
ansible_role
neromorph/distributed-webapp-ansible
6dd2d44e003bfcc19d737e045d8a1c631a59d189
0
roles/flask_web
2,858
[ "no_license" ]
[ { "path": "roles/flask_web/tasks/main.yml", "content": "- name: Install Python Flask dependency\n ansible.builtin.pip:\n name: \"{{ item }}\"\n state: present\n with_items:\n - flask\n - flask-mysql\n\n- name: Copy source code\n ansible.builtin.git:\n repo: 'https://github.com/mmumshad/sim...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 687, "all_permissive": false }
ansible_role
neromorph/distributed-webapp-ansible
6dd2d44e003bfcc19d737e045d8a1c631a59d189
0
roles/mysql_db
2,858
[ "no_license" ]
[ { "path": "roles/mysql_db/tasks/main.yml", "content": "- name: Install MySQL database\n ansible.builtin.apt:\n name: \"{{ item }}\"\n state: present\n force: true\n with_items:\n - mysql-server\n - mysql-client\n\n- name: Update MySQL Configuration file to accept connections from all interf...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 890, "all_permissive": false }
ansible_role
neromorph/distributed-webapp-ansible
6dd2d44e003bfcc19d737e045d8a1c631a59d189
0
roles/python
2,858
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "- name: Install all required dependencies\n ansible.builtin.apt:\n name: \"{{ item }}\"\n state: present\n force: true\n with_items:\n - python\n - python-setuptools\n - python-dev\n - build-essential\n - python-pip\n - python...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 261, "all_permissive": false }
ansible_role
cmdrsizzlorr/ansible
b2b56121203aae7a95a9ebd8d453336803f1eef5
0
roles/common
2,858
[ "no_license" ]
[ { "path": "roles/common/tasks/home.yml", "content": "---\n\n- name: Install home packages\n apt: name={{ item }} state=present update_cache=yes\n with_items: \n - stellarium\n - finch\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 133 }, { "path": "roles...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 6703, "all_permissive": false }
ansible_role
stevecosner/ansible-vagrant-ubuntu
bdc351f50c6ca7a774adeb5860f45569319e9c48
0
roles/install
2,858
[ "no_license" ]
[ { "path": "roles/install/tasks/main.yml", "content": "- name: ensure a list of packages installed\n\n apt:\n\n name: \"{{ packages }}\"\n\n vars:\n\n packages:\n\n - htop\n\n - curl\n\n - nginx\n\n - ansible\n\n - docker.io\n", "license_type": "no_license", "detected_licenses"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 173, "all_permissive": false }
ansible_role
stevecosner/ansible-vagrant-ubuntu
bdc351f50c6ca7a774adeb5860f45569319e9c48
0
roles/user
2,858
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yml", "content": "---\n\n- name: Add the user 'steve' with a bash shell, appending the group sudo\n user:\n name: steve\n shell: /bin/bash\n groups: sudo\n append: yes\n\n- name: Set authorized key taken from file\n authorized_key:\n user: steve\n state: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 416, "all_permissive": false }
ansible_role
TahaBikanerwala/ansible
f271793ae0f987bf8b10e539f3c3e2c5c5fc4d05
0
roles/base
2,858
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yml", "content": "- name: Add ssh key for new user\n tags: always\n authorized_key:\n user: ansible_admin\n key: \"<KEY>\"\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
TahaBikanerwala/ansible
f271793ae0f987bf8b10e539f3c3e2c5c5fc4d05
0
roles/db_server
2,858
[ "no_license" ]
[ { "path": "roles/db_server/tasks/main.yml", "content": "- name: Install MariaDB(Ubuntu)\n tags: mariadb,ubuntu,db\n apt:\n name: mariadb-server\n state: latest\n when: ansible_distribution == \"Ubuntu\"\n\n- name: Install MariaDB(CentOS)\n dnf:\n name: mariadb\n tags: db,mariadb,centos\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 294, "all_permissive": false }
ansible_role
TahaBikanerwala/ansible
f271793ae0f987bf8b10e539f3c3e2c5c5fc4d05
0
roles/file_server
2,858
[ "no_license" ]
[ { "path": "roles/file_server/tasks/main.yml", "content": "- name: Install Samba(Ubuntu & CentOS)\n tags: ubuntu,centos,samba\n package:\n name: samba\n state: latest\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
TahaBikanerwala/ansible
f271793ae0f987bf8b10e539f3c3e2c5c5fc4d05
0
roles/web_server
2,858
[ "no_license" ]
[ { "path": "roles/web_server/handlers/main.yml", "content": "- name: restart_apache #same as in tasks main.yml taskbook\n service:\n name: \"{{ apache_service }}\"\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { "path": "roles/we...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1425, "all_permissive": false }
ansible_role
TahaBikanerwala/ansible
f271793ae0f987bf8b10e539f3c3e2c5c5fc4d05
0
roles/workstation
2,858
[ "no_license" ]
[ { "path": "roles/workstation/tasks/main.yml", "content": "- name: Install unzip\n tags: workstation,popos\n package:\n name: unzip\n\n- name: Install terraform\n tags: workstation,popos\n unarchive:\n src: https://releases.hashicorp.com/terraform/1.6.5/terraform_1.6.5_linux_386.zip\n dest: /usr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 320, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/apache2
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/apache2/tasks/main.yml", "content": "---\n- name: Install httpd\n apt: name=apache2 state=latest\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 59 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 59, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/docker
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/docker/tasks/main.yml", "content": "---\n\n- name: install docker apt-key\n apt_key: keyserver=hkp://p80.pool.sks-keyservers.net:80 id=58118E89F3A912897C070ADBF76221572C52609D\n\n- name: enable docker repo\n apt_repository: repo='deb https://apt.dockerproject.org/re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 432, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/jetty-solr
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/jetty-solr/tasks/main.yml", "content": "---\n\n- name: Creates nginx static file directory\n file: path=/var/www/data state=directory\n\n- name: Copy nginx conf\n copy: src=nginx.conf dest=/etc/nginx/nginx.conf\n\n- name: Restart nginx\n service: name=nginx state=r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1733, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/monarch-app
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/monarch-app/tasks/main.yml", "content": "---\n\n- name: Install git\n apt: name=git state=latest update_cache=yes\n become: true\n\n- name: Install python-software-properties\n apt: name=python-software-properties state=latest update_cache=yes\n become: true\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2726, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/monarch-mme
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/monarch-mme/tasks/main.yml", "content": "---\n\n- name: Install unzip\n apt: name=unzip state=latest update_cache=yes\n\n- name: Install git\n apt: name=git state=latest update_cache=yes\n\n- name: Add sbt repo\n command: bash -c 'echo \"deb https://dl.bintray.com/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1383, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/monarch-ttl
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/monarch-ttl/files/nginx.conf", "content": "user www-data;\nworker_processes 4;\npid /run/nginx.pid;\n\nevents {\n worker_connections 768;\n # multi_accept on;\n}\n\nhttp {\n server {\n location /static_files {\n alias /var/www/data;\n autoindex on;\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 540, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/nodejs
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/nodejs/tasks/main.yml", "content": "---\n\n- name: Install node\n command: bash -c \"source ~/.nvm/nvm.sh && nvm install v0.12.2\"\n\n- name: Ensure npm version\n command: bash -c \"source ~/.nvm/nvm.sh && nvm use v0.12.2 && npm install -g npm@3.4.0\"\n", "licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 208, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/nvm
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/nvm/tasks/main.yml", "content": "---\n\n- name: Install nvm\n command: bash -c \"wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.30.1/install.sh | bash\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 131, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/owlsim
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/owlsim/tasks/main.yml", "content": "---\n\n- name: Install git\n apt: name=git state=latest update_cache=yes\n\n- name: clone owltools github repo\n git: repo=https://github.com/owlcollab/owltools.git\n dest=/opt/owltools\n become: true\n\n- name: chown\n co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1471, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/scigraph
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/scigraph/tasks/main.yml", "content": "---\n\n- name: Creates nginx static file directory\n file: path=/var/www/data state=directory\n\n- name: Copy nginx conf\n copy: src=nginx.conf dest=/etc/nginx/nginx.conf\n\n- name: Restart nginx\n service: name=nginx state=res...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2000, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/scigraph-base
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/scigraph-base/tasks/main.yml", "content": "---\n\n- name: Creates nginx static file directory\n file: path=/var/www/data state=directory\n\n- name: Copy nginx conf\n copy: src=nginx.conf dest=/etc/nginx/nginx.conf\n\n- name: Restart nginx\n service: name=nginx stat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 986, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/scigraph-data
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/scigraph-data/tasks/main.yml", "content": "---\n\n- name: clone monarch cypher queries github repo\n git: repo=https://github.com/monarch-initiative/monarch-cypher-queries.git\n dest=/opt/monarch-cypher-queries\n become: true\n\n- name: package cypher dynamic ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1132, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/scigraph-ontology
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/scigraph-ontology/tasks/main.yml", "content": "---\n\n- name: download graph\n get_url: url=http://kato.crbs.ucsd.edu/scigraph.tgz dest=/var/www/data\n\n# local testing\n#- name: copy graph\n# copy: src=/home/jnguyenxuan/scigraph.tgz dest=/var/www/data\n\n- name: Cr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 837, "all_permissive": false }
ansible_role
DoctorBud/monarch-devops
d03957135f2db2c7a609824a5e2a5b7fd846a4f3
0
ansible/ohsu-migration/roles/supervisor
2,858
[ "no_license" ]
[ { "path": "ansible/ohsu-migration/roles/supervisor/tasks/main.yml", "content": "---\n\n- name: Install supervisor\n apt: name=supervisor state=latest\n become: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 83 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 83, "all_permissive": false }
ansible_role
lakshmaiah212/ansible-all-basic
65c8b1576aee0337480e7b81a9965fdadbfc39c7
0
ansible/roles/aerospike
2,978
[ "no_license" ]
[ { "path": "ansible/roles/aerospike/tasks/main.yml", "content": "- name: aerospike url\r\n shell: wget -O aerospike.tgz 'https://www.aerospike.com/download/server/4.6.0.4/artifact/el7'\r\n args:\r\n chdir: /opt\r\n\r\n- name: unarchive aerospike\r\n unarchive:\r\n src: /opt/aerospike.tgz\r\n des...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 777, "all_permissive": false }
ansible_role
lakshmaiah212/ansible-all-basic
65c8b1576aee0337480e7b81a9965fdadbfc39c7
0
ansible/roles/default
2,978
[ "no_license" ]
[ { "path": "ansible/roles/default/tasks/main.yml", "content": "- name: latest version of java\r\n shell: sudo amazon-linux-extras install java-openjdk11\r\n\r\n- name: Installation of git\r\n yum: \r\n name: git\r\n state: present\r\n\r\n- name: Installaion of docker \r\n yum: \r\n name: docker\r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 459, "all_permissive": false }
ansible_role
lakshmaiah212/ansible-all-basic
65c8b1576aee0337480e7b81a9965fdadbfc39c7
0
ansible/roles/elk
2,978
[ "no_license" ]
[ { "path": "ansible/roles/elk/vars/main.yml", "content": "kafka_ip:\r\nelasticsearch_ip:", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "ansible/roles/elk/templates/docker-compose.yml", "content": "version: '3.3'\r\n\r\nservices:\r\n\r\n # Elas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1801, "all_permissive": false }
ansible_role
lakshmaiah212/ansible-all-basic
65c8b1576aee0337480e7b81a9965fdadbfc39c7
0
ansible/roles/gradle
2,978
[ "no_license" ]
[ { "path": "ansible/roles/gradle/tasks/main.yml", "content": "- name: gradle installation \r\n shell: |\r\n sudo wget https://services.gradle.org/distributions/gradle-6.7-bin.zip\r\n sudo unzip gradle-6.7-bin.zip", "license_type": "no_license", "detected_licenses": [], "size_bytes": 151 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 151, "all_permissive": false }
ansible_role
lakshmaiah212/ansible-all-basic
65c8b1576aee0337480e7b81a9965fdadbfc39c7
0
ansible/roles/jenkins
2,978
[ "no_license" ]
[ { "path": "ansible/roles/jenkins/tasks/main.yml", "content": "- name: jenkins-repo\r\n shell: sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo\r\n\r\n- name: rpm package\r\n shell: sudo rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key\r\n\r\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 534, "all_permissive": false }
ansible_role
lakshmaiah212/ansible-all-basic
65c8b1576aee0337480e7b81a9965fdadbfc39c7
0
ansible/roles/mongo
2,978
[ "no_license" ]
[ { "path": "ansible/roles/mongo/tasks/main.yml", "content": "\r\n\r\n- name: Add mrepositories into the mongo\r\n yum_repository:\r\n name: MongoDB\r\n description: MongoDB YUM repo\r\n file: mongodb-org-4.4.repo \r\n baseurl: https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/4.4/x86_6...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 826, "all_permissive": false }
ansible_role
lakshmaiah212/ansible-all-basic
65c8b1576aee0337480e7b81a9965fdadbfc39c7
0
ansible/roles/nginx
2,978
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "- name: yum update\r\n shell: yum update -y\r\n\r\n- name: Installation of epel package\r\n yum: \r\n name: epel-release\r\n state: present\r\n\r\n- name: Installation of nginx \r\n yum: \r\n name: nginx\r\n state: present\r\n\r\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 426, "all_permissive": false }
ansible_role
lakshmaiah212/ansible-all-basic
65c8b1576aee0337480e7b81a9965fdadbfc39c7
0
ansible/roles/nodejs
2,978
[ "no_license" ]
[ { "path": "ansible/roles/nodejs/tasks/main.yml", "content": "- name: rpm resource\r\n shell: curl -sL https://rpm.nodesource.com/setup_10.x | sudo bash - \r\n\r\n- name: Installation of nodejs\r\n yum: \r\n name: nodejs\r\n state: present\r\n\r\n\r\n- name: Install gcc-c++ make\r\n shell: yum insta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 402, "all_permissive": false }
ansible_role
lakshmaiah212/ansible-all-basic
65c8b1576aee0337480e7b81a9965fdadbfc39c7
0
ansible/roles/postgres
2,978
[ "no_license" ]
[ { "path": "ansible/roles/postgres/tasks/main.yml", "content": "- name: Install the repository RPM\r\n shell: yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm\r\n\r\n\r\n- name: Installation of postgresql13-server\r\n yum: \r\n name: po...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 643, "all_permissive": false }
ansible_role
siva1369/ansible_playbooks
ced786ae4acd5512e06b5b03cc38080dd59a1bef
0
play-book/play-book/roles/ElasticSearch-Restart
2,978
[ "no_license" ]
[ { "path": "play-book/play-book/roles/ElasticSearch-Restart/tasks/main.yml", "content": "---\n- name: \"Executing {{ action }} of ElasticSearch server(s)\"\n command: sudo systemctl {{ action }} elasticsearch.service\n register: result\n become_method: sudo\n\n- debug:\n msg:\n - \"{{ result.stdou...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 215, "all_permissive": false }