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
trueproof/dev-env-playbook
920fe87c115b6a28af0e28ce25cca7c5465f8dc9
0
roles/dotfiles
576
[ "no_license" ]
[ { "path": "roles/dotfiles/tasks/main.yml", "content": "---\n- name: copy files to home dir\n copy:\n src: \"{{ item }}\"\n dest: \"{{ ansible_env.HOME }}\"\n loop:\n - .bash_profile\n - .config\n - .tmux.conf\n - .vim\n - .vimrc\n- name: update .gitconfig\n git_config:\n name: \"{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1862, "all_permissive": false }
ansible_role
trueproof/dev-env-playbook
920fe87c115b6a28af0e28ce25cca7c5465f8dc9
0
roles/packages
576
[ "no_license" ]
[ { "path": "roles/packages/tasks/main.yml", "content": "---\n- name: ensure packages are installed\n become: true\n package:\n name: \"{{ item }}\"\n state: present\n when:\n ansible_os_family != 'Darwin'\n loop:\n - curl\n - git\n - tig\n - tmux\n - vim\n \n- name: ensure pack...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 419, "all_permissive": false }
ansible_role
mahmoudalide/vpn_project
65da23fb6ef5a80242b3de02476b12bdaef4b437
0
ansible/roles/openvpn
576
[ "no_license" ]
[ { "path": "ansible/roles/openvpn/tasks/main.yml", "content": "- name: Install dependencies\n apt:\n name:\n - curl\n - iptables\n - openssl\n - ca-certificates\n update_cache: yes\n\n- name: Disable IPv6 at the kernel level\n sysctl:\n name: net.ipv6.conf.all.disable_ipv6\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 5045, "all_permissive": false }
ansible_role
peeperklip/ansibles
a62c461d968a73dd9ae433d19bc34ab95a34dbfc
0
roles/add_systemd_unit_file
576
[ "no_license" ]
[ { "path": "roles/add_systemd_unit_file/tasks/main.yml", "content": "---\n- name: \"Create reload_services unit file\"\n ansible.builtin.template:\n src: templates/unitfile\n dest: /lib/reload_services/system/{{ description }}.service\n\n", "license_type": "no_license", "detected_licenses": []...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 168, "all_permissive": false }
ansible_role
peeperklip/ansibles
a62c461d968a73dd9ae433d19bc34ab95a34dbfc
0
roles/apt
576
[ "no_license" ]
[ { "path": "roles/apt/tasks/main.yml", "content": "---\n- name: Update packages\n hosts: webservers\n become: true\n tasks:\n - name: Run apt-get update\n apt:\n update_cache: yes\n - name: Run apt-get upgrade\n apt:\n force_apt_get: yes\n - name: Run apt-get auto-remove\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 351, "all_permissive": false }
ansible_role
peeperklip/ansibles
a62c461d968a73dd9ae433d19bc34ab95a34dbfc
0
roles/go-webserver
576
[ "no_license" ]
[ { "path": "roles/go-webserver/tasks/main.yml", "content": "---\n- name: \"Create reload_services unit file\"\n ansible.builtin.template:\n src: templates/nginx_conf\n dest: /etc/nginx/sites-available/{{ domain }}\n- name: \"Symlink the config\"\n ansible.builtin.file:\n src: /etc/nginx/sites-avai...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 321, "all_permissive": false }
ansible_role
peeperklip/ansibles
a62c461d968a73dd9ae433d19bc34ab95a34dbfc
0
roles/go_make
576
[ "no_license" ]
[ { "path": "roles/go_make/tasks/main.yml", "content": "---\n- name: \"Finish deploy of golang project\"\n ansible.builtin.shell: \"/usr/local/go/bin/go build\"\n args:\n chdir: \"{{ dest }}\"", "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
peeperklip/ansibles
a62c461d968a73dd9ae433d19bc34ab95a34dbfc
0
roles/install_go
576
[ "no_license" ]
[ { "path": "roles/install_go/tasks/main.yml", "content": "---\n- name: Remove existing versions\n become: true\n ansible.builtin.file:\n path: /usr/local/go\n state: absent\n\n- name: Ensure dir exists\n become: true\n ansible.builtin.file:\n path: /usr/local/go\n state: directory\n mode: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 773, "all_permissive": false }
ansible_role
peeperklip/ansibles
a62c461d968a73dd9ae433d19bc34ab95a34dbfc
0
roles/reload_services
576
[ "no_license" ]
[ { "path": "roles/reload_services/tasks/main.yml", "content": "---\n- name: Reload NGNIX\n ansible.builtin.systemd:\n name: nginx.service\n state: reloaded\n- name: Reload backend\n ansible.builtin.systemd:\n name: \"{{ service }}.service\"\n state: restarted", "license_type": "no_license",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 200, "all_permissive": false }
ansible_role
peeperklip/ansibles
a62c461d968a73dd9ae433d19bc34ab95a34dbfc
0
roles/update_project
576
[ "no_license" ]
[ { "path": "roles/update_project/tasks/main.yml", "content": "---\n- name: \"Ensure dir exists, clone or pull the project\"\n ansible.builtin.file:\n path: \"{{ dest }}\"\n state: directory\n mode: '0755'\n- name: Pull the latest changes\n ansible.builtin.git:\n repo: \"{{ repo }}\"\n dest: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 341, "all_permissive": false }
ansible_role
peeperklip/ansibles
a62c461d968a73dd9ae433d19bc34ab95a34dbfc
0
roles/webserver
576
[ "no_license" ]
[ { "path": "roles/webserver/partials/nginx.yml", "content": "- name: \"Install the web server\"\n apt:\n name: nginx\n state: present\n- name: \"Copy NGINX config file\"\n template:\n src: ../templates/serverconfig/nginx\n dest: /etc/nginx/sites-available/default\n", "license_type": "no_lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1337, "all_permissive": false }
ansible_role
cloudcodger/ubuntu
9165fa86ab49722430ce8a524b0baf205990ae4e
0
roles/apt_mirror
576
[ "no_license" ]
[ { "path": "roles/apt_mirror/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Install 'apt-mirror' and configure it.\n license: GPL-2.0-or-later\n min_ansible_version: '2.10'\n\n platforms:\n - name: Ubuntu\n versions:\n - jammy\n\n galaxy_tags:\n - infrastruct...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 9226, "all_permissive": false }
ansible_role
cloudcodger/ubuntu
9165fa86ab49722430ce8a524b0baf205990ae4e
0
roles/initial_apt_update
576
[ "no_license" ]
[ { "path": "roles/initial_apt_update/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Perform a one time only initial 'apt dist-upgrade' and reboot if required.\n license: GPL-2.0-or-later\n min_ansible_version: '2.10'\n\n platforms:\n - name: Ubuntu\n versions:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2729, "all_permissive": false }
ansible_role
cloudcodger/ubuntu
9165fa86ab49722430ce8a524b0baf205990ae4e
0
roles/keepalived
576
[ "no_license" ]
[ { "path": "roles/keepalived/templates/keepalived.conf.j2", "content": "vrrp_instance VI_1 {\n state {{ 'MASTER' if inventory_hostname in groups['keepalived_primary'] else 'BACKUP' }}\n interface {{ ansible_default_ipv4.interface }}\n virtual_router_id {{ keepalived_virtual_id }}\n priority {{ '100' if i...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3326, "all_permissive": false }
ansible_role
cloudcodger/ubuntu
9165fa86ab49722430ce8a524b0baf205990ae4e
0
roles/minio
576
[ "no_license" ]
[ { "path": "roles/minio/defaults/main.yml", "content": "---\nminio_browser_redirect_url: \"\" # Example: http://miniolb/minio/ui/\nminio_data_base_dir: /data\nminio_data_dir: \"{{ minio_data_base_dir }}/minio\"\nminio_data_drive: \"\"\nminio_opts: \"--console-address :9001\"\nminio_root_user: admin\nminio_ro...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 4581, "all_permissive": false }
ansible_role
cloudcodger/ubuntu
9165fa86ab49722430ce8a524b0baf205990ae4e
0
roles/netboot_xyz
576
[ "no_license" ]
[ { "path": "roles/netboot_xyz/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: Install tftpd-hpa and download netboot.xyz files to be served out for PXE network boot.\n license: GPL-2.0-or-later\n min_ansible_version: '2.10'\n\n platforms:\n - name: Ubuntu\n versions:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1867, "all_permissive": false }
ansible_role
cloudcodger/ubuntu
9165fa86ab49722430ce8a524b0baf205990ae4e
0
roles/nginx
576
[ "no_license" ]
[ { "path": "roles/nginx/templates/internal_only_index.html.j2", "content": "<!DOCTYPE html>\n<html>\n<head>\n<title>Internal Use ONLY!</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>I...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 14, "total_bytes": 22276, "all_permissive": false }
ansible_role
kriipke/infra-workstation-main-roles
24d53d69c77acf7225890fb606a75a3381699643
0
roles/fontconfig
576
[ "no_license" ]
[ { "path": "roles/fontconfig/tasks/main.yml", "content": "---\n\n- name: pkg | fontconfig\n package: name=fontconfig state=present\n\n #\n # TASKS: INSTALL NEW FONT\n #\n\n- name: fontconfig | install TrueType font\n block:\n\n - name: download | TTF font file archive\n get_url:\n url: \"{{ fon...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3131, "all_permissive": false }
ansible_role
kriipke/infra-workstation-main-roles
24d53d69c77acf7225890fb606a75a3381699643
0
roles/hsetroot
576
[ "no_license" ]
[ { "path": "roles/hsetroot/tasks/main.yml", "content": "---\n - name: pkgs | install dependencies\n package: name={{ build_deps | map(attribute='name') | list }} state=present\n \n - name: git | clone source repository\n git: repo={{ git_url }} dest={{ src_dir }} version={{ git_tag }}\n \n - name: make |...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 308, "all_permissive": false }
ansible_role
kriipke/infra-workstation-main-roles
24d53d69c77acf7225890fb606a75a3381699643
0
roles/neovim
576
[ "no_license" ]
[ { "path": "roles/neovim/tasks/cfg-nvim.yml", "content": "---\n- name: install nvim-related OS packages\n package: name={{ item }} state=present\n loop:\n - git\n - curl\n - \"{{ ctags }}\"\n - gcc\n - make\n\n\n- name: install NVIM-related Python packages\n pip: name={{ item }} virtualenv=...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1972, "all_permissive": false }
ansible_role
kriipke/infra-workstation-main-roles
24d53d69c77acf7225890fb606a75a3381699643
0
roles/ovftool
576
[ "no_license" ]
[ { "path": "roles/ovftool/handlers/main.yml", "content": "---\n# handlers file for ovftool", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "roles/ovftool/vars/main.yml", "content": "---\n# vars file for ovftool\n\nbundle_file: VMware-ovftool-4.4....
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 533, "all_permissive": false }
ansible_role
gonoph/openshift-cns-demo
c607575fe4b2f53a8cfea5ddaae08cdaaed7708b
2
roles/dns
576
[ "permissive" ]
[ { "path": "roles/dns/templates/certserv.service.j2", "content": "[Unit]\nDescription=certificate http service \nAfter=docker.service\nRequires=docker.service\nPartOf=docker.service\n\n[Service]\nExecStartPre=-/usr/bin/docker rm -f {{ certserv_container_name }}\nExecStart=/usr/bin/docker run --name={{ certse...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 5731, "all_permissive": true }
ansible_role
gonoph/openshift-cns-demo
c607575fe4b2f53a8cfea5ddaae08cdaaed7708b
2
roles/localconfig
576
[ "permissive" ]
[ { "path": "roles/localconfig/tasks/main.yml", "content": "# vim: ts=2 sw=2 expandtab ai\n---\n\n- set_fact:\n storage_devices: \"{{ storage_devices | default([]) }}\"\n sshconfig_clean: \"{{ sshconfig_clean | default(False) | bool }}\"\n local_custom_certificates: \"{{ local_custom_certificates | b...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 6142, "all_permissive": true }
ansible_role
gonoph/openshift-cns-demo
c607575fe4b2f53a8cfea5ddaae08cdaaed7708b
2
roles/postconfig
576
[ "permissive" ]
[ { "path": "roles/postconfig/tasks/asb_cleanup_tasks.yml", "content": "# vim: ts=2 sw=2 expandtab ai\n---\n- name: Ansible Service Broker - check that etcd PVC has a storageclass or is bound\n run_once: true\n connection: local\n command: \"/usr/bin/oc get pvc -n {{ ans }} etcd -o json\"\n changed_when: ...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 12531, "all_permissive": true }
ansible_role
gonoph/openshift-cns-demo
c607575fe4b2f53a8cfea5ddaae08cdaaed7708b
2
roles/rhel
576
[ "permissive" ]
[ { "path": "roles/rhel/tasks/seed_docker_task.yml", "content": "# vim: ts=2 sw=2 expandtab ai\n---\n- name: \"seeding {{ type }}\"\n docker_image:\n name: \"{{ item }}\"\n with_items: \"{{ images }}\"\n loop_control:\n label: \"{{ item }}\"\n", "license_type": "permissive", "detected_license...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 8996, "all_permissive": true }
ansible_role
AbhraSinha/Devopsaws_repo
6b540f1b27a037ef7eff848486cb72ca6df14671
0
roles/apache
556
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n- name: Ensure that the httpd package is not installed\n yum:\n name: httpd\n state: absent\n- name: httpd tools is not installed on the system\n yum:\n name: httpd-tools\n state: absent", "license_type": "n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 221, "all_permissive": false }
ansible_role
AbhraSinha/Devopsaws_repo
6b540f1b27a037ef7eff848486cb72ca6df14671
0
roles/php
556
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n# tasks file for php\n- name: Install PHP7 with the most common packages\n yum:\n name: \"{{ item }}\"\n state: present\n with_items:\n - php70\n - php70-gd\n - php70-imap\n - php70-mbstring\n - php70-mysqlnd\n - php70-opcache\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 591, "all_permissive": false }
ansible_role
airshipit/vino
83374ffbf1df86ad46a59ffba3073197359becd5
1
roles/vino-build-images
556
[ "permissive" ]
[ { "path": "roles/vino-build-images/tasks/main.yaml", "content": "# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unles...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1799, "all_permissive": true }
ansible_role
airshipit/vino
83374ffbf1df86ad46a59ffba3073197359becd5
1
roles/vino-describe-kubernetes-objects
556
[ "permissive" ]
[ { "path": "roles/vino-describe-kubernetes-objects/tasks/main.yaml", "content": "# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1661, "all_permissive": true }
ansible_role
airshipit/vino
83374ffbf1df86ad46a59ffba3073197359becd5
1
roles/vino-publish-images
556
[ "permissive" ]
[ { "path": "roles/vino-publish-images/tasks/main.yaml", "content": "# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1576, "all_permissive": true }
ansible_role
airshipit/vino
83374ffbf1df86ad46a59ffba3073197359becd5
1
vino-builder/assets/playbooks/roles/ipam
556
[ "permissive" ]
[ { "path": "vino-builder/assets/playbooks/roles/ipam/tasks/main.yaml", "content": "\n ##################################################\n # REMOVE ONCE OPERATOR IS SUPPLYING THIS DATA ##\n ##################################################\n - name: initialize ipam\n set_fact:\n ipam: {}\n # g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4682, "all_permissive": true }
ansible_role
airshipit/vino
83374ffbf1df86ad46a59ffba3073197359becd5
1
vino-builder/assets/playbooks/roles/libvirt
556
[ "permissive" ]
[ { "path": "vino-builder/assets/playbooks/roles/libvirt/tasks/create-domain.yaml", "content": "- name: get state of existing volumes\n shell: |\n virsh vol-list vino-default\n register: vol_list\n\n- name: DEBUG domain.interfaces\n debug:\n var: domain.interfaces\n\n\n- name: DEBUG domain\n debug:\...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 9910, "all_permissive": true }
ansible_role
Enzo-Mealla/TP_AySO_Integral_Mealla
32765dba92a7078dea31aa9f87828549e3cfcafe
0
ansible/roles/TP_INI
556
[ "no_license" ]
[ { "path": "ansible/roles/TP_INI/tasks/main.yml", "content": "---\n# tasks file for TP_INI\n\n - name: \"Rol: TP_INI - Grupo: {{ Nombre_Grupo }}\"\n debug:\n msg: \"Inicio de tareas dentro del Rol: TP_INI\"\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 144 }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 609, "all_permissive": false }
ansible_role
maheshn0205/ansible
c8439435be9f309eb98b9184761f4fe9a774bcd7
0
roles/apache
556
[ "no_license" ]
[ { "path": "roles/apache/tasks/firewall_rule.yml", "content": "---\n- name: Add {{ http_rule }} to open firewall\n firewalld:\n service: \"{{ http_rule }}\"\n state: enabled\n permanent: true\n immediate: true\n...\n", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 1299, "all_permissive": false }
ansible_role
privacybydesign/surfidp
885b9c4e71729f8cf322ea7b276afe884b6f6e58
0
roles/preliminary
556
[ "no_license" ]
[ { "path": "roles/preliminary/handlers/main.yml", "content": "- name: restart nginx\n service: name=nginx state=reloaded\n become: yes\n\n- name: restart php-fpm\n service: name=php-fpm state=restarted\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 152 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3855, "all_permissive": false }
ansible_role
privacybydesign/surfidp
885b9c4e71729f8cf322ea7b276afe884b6f6e58
0
roles/ssp
556
[ "no_license" ]
[ { "path": "roles/ssp/tasks/main.yml", "content": "- name: Check for presence of SimpleSAMLphp git repo\n become: yes\n stat: path=/opt/simplesamlphp/composer.json\n register: ssp\n\n- name: Install SimpleSAMLphp from git\n become: yes\n git:\n repo: \"https://github.com/simplesamlphp/simplesamlphp.g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2820, "all_permissive": false }
ansible_role
raktim00/Ansible-AWS-HAProxy
4b656f5fd837815f52147b2b6778282f573f7680
0
aws-ansible/roles/webserver
556
[ "no_license" ]
[ { "path": "aws-ansible/roles/webserver/tasks/main.yml", "content": "---\n# tasks file for webserver\n\n- name: Install httpd and php program\n package:\n name:\n - httpd\n - php\n state: present\n\n- name: Deploying Code from GitHub\n get_url:\n url: https://raw.githubusercontent.com/ra...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 376, "all_permissive": false }
ansible_role
christian-draeger/spring-boot-ready
1584bef238598ef0dcdb015bf1cca4f4df16ac74
0
deployment/roles/install_adminserver
556
[ "no_license" ]
[ { "path": "deployment/roles/install_adminserver/tasks/main.yml", "content": "---\n- group:\n name: adminserver\n state: present\n\n- user:\n name: adminserver\n group: adminserver\n shell: /usr/sbin/nologin\n\n- name: ensure that there is a folder to install the admin ui in\n file: path=/opt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 626, "all_permissive": false }
ansible_role
christian-draeger/spring-boot-ready
1584bef238598ef0dcdb015bf1cca4f4df16ac74
0
deployment/roles/install_application
556
[ "no_license" ]
[ { "path": "deployment/roles/install_application/tasks/main.yml", "content": "---\n- group:\n name: \"{{ application_name }}\"\n state: present\n\n- user:\n name: \"{{ application_name }}\"\n group: \"{{ application_name }}\"\n shell: /usr/sbin/nologin\n\n- name: ensure that there is a folder ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 733, "all_permissive": false }
ansible_role
christian-draeger/spring-boot-ready
1584bef238598ef0dcdb015bf1cca4f4df16ac74
0
deployment/roles/install_netdata
556
[ "no_license" ]
[ { "path": "deployment/roles/install_netdata/tasks/main.yml", "content": "---\n - name: fetch netdata installer\n get_url:\n url: https://my-netdata.io/kickstart-static64.sh\n dest: /tmp/netdata-installer.sh\n mode: 0777\n\n - name: install netdata\n shell: /tmp/netdata-installer.sh --...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 281, "all_permissive": false }
ansible_role
olegvodyanov/sysadm
ef50dbc5a8b8b592da36082cd8dbed75076098e1
0
ansible/roles/nginx
556
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# tasks file for nginx\n- name: install nginx\n apt:\n name: \"nginx\"\n state: present\n\n- block:\n - name: template linux-proxy-nginx\n template:\n src: linux-proxy-nginx/upstream\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1104, "all_permissive": false }
ansible_role
olegvodyanov/sysadm
ef50dbc5a8b8b592da36082cd8dbed75076098e1
0
ansible/roles/packages
556
[ "no_license" ]
[ { "path": "ansible/roles/packages/tasks/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# tasks file for packages\n- name: install packages\n apt:\n name: \"{{ item }}\"\n state: present\n loop:\n - net-tools\n - dnsutils\n - wget\n - curl\n - mc\n - rsync\n", "lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 218, "all_permissive": false }
ansible_role
mattstruble/infra
eb17722e17a3f3a78096fb9eded5bba5f2434471
1
ansible/roles/cloudflare
556
[ "no_license" ]
[ { "path": "ansible/roles/cloudflare/handlers/main.yml", "content": "---\n- name: Restart ddclient\n service:\n name: ddclient\n state: restarted\n\n- name: Enable ddclient\n service:\n name: ddclient\n state: started\n enabled: true\n", "license_type": "no_license", "detected_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1862, "all_permissive": false }
ansible_role
mattstruble/infra
eb17722e17a3f3a78096fb9eded5bba5f2434471
1
ansible/roles/fail2ban
556
[ "no_license" ]
[ { "path": "ansible/roles/fail2ban/tasks/jail.yml", "content": "---\n- name: Set default fail2ban jail.conf\n community.general.ini_file:\n path: /etc/fail2ban/jail.local\n section: DEFAULT\n option: \"{{ item.option }}\"\n value: \"{{ item.value }}\"\n loop:\n - { option: \"bantime\", value...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1517, "all_permissive": false }
ansible_role
mattstruble/infra
eb17722e17a3f3a78096fb9eded5bba5f2434471
1
ansible/roles/java
556
[ "no_license" ]
[ { "path": "ansible/roles/java/tasks/main.yml", "content": "---\n- name: include OS-specific variables\n include_vars: \"{{ item }}\"\n with_first_found:\n - \"{{ ansible_distribution }}.yml\"\n - \"{{ ansible_os_family }}.yml\"\n\n- name: install Java dependencies\n package:\n name: \"{{ depende...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 299, "all_permissive": false }
ansible_role
mattstruble/infra
eb17722e17a3f3a78096fb9eded5bba5f2434471
1
ansible/roles/minecraft
556
[ "no_license" ]
[ { "path": "ansible/roles/minecraft/vars/ec2/t2_micro.yml", "content": "---\nfail:\n msg: \"t2.micro is too small to support Minecraft\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 62 }, { "path": "ansible/roles/minecraft/vars/ec2/t2_medium.yml", "content...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 5026, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/SSL-install-setup
556
[ "no_license" ]
[ { "path": "ansible/roles/SSL-install-setup/tasks/main.yml", "content": "- name: Install Python Package\n apt: name=python3 update_cache=yes state=latest\n\n- name: Install Let's Encrypt Package\n apt: name=python3-certbot-apache update_cache=yes state=latest\n\n- name: Create and Install Cert Using apache...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 350, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/apache-config
556
[ "no_license" ]
[ { "path": "ansible/roles/apache-config/templates/web.conf.j2", "content": "<VirtualHost *:80>\n ServerAdmin {{ sever_admin }}\n ServerName {{ server_name }}\n ServerAlias {{ server_alias }}\n\n DocumentRoot /var/www/html/{{ laravel_app }}/\n\n <Directory /var/www/html/{{ laravel_app }}>\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1836, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/clone-laravel-app-repo
556
[ "no_license" ]
[ { "path": "ansible/roles/clone-laravel-app-repo/tasks/main.yml", "content": "- name: Clone github repository\n git:\n repo: https://github.com/f1amy/laravel-realworld-example-app.git\n dest: /var/www/{{ laravel_app }}\n clone: yes\n update: no\n", "license_type": "no_license", "detecte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 176, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/composer-install-setup
556
[ "no_license" ]
[ { "path": "ansible/roles/composer-install-setup/tasks/main.yml", "content": "- name: Dowload php-composer\n get_url: \n url: https://getcomposer.org/installer\n dest: /tmp/installer\n- name: verify installatiion script is safe \n command: php -r \"if (hash_file('sha384', 'composer-setup.php') === '55c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 849, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/migrate-database
556
[ "no_license" ]
[ { "path": "ansible/roles/migrate-database/tasks/main.yml", "content": "- name: Composer update\n shell: composer update --no-interaction\n args:\n chdir: /var/www/html/{{ laravel_app }}\n\n- name: Composer Install\n shell: composer update --no-interaction\n args:\n chdir: /var/www/html/{{ laravel_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 526, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/mysql-config
556
[ "no_license" ]
[ { "path": "ansible/roles/mysql-config/tasks/main.yml", "content": "\n- name: start and enable mysql service\n service:\n name: mysql\n state: started\n enabled: yes\n- name: Change the auhentication plugin of mysql root user to mysql_native_password\n shell: mysql -u root -e 'UPDATE mysql.user SE...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 724, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/mysql-install
556
[ "no_license" ]
[ { "path": "ansible/roles/mysql-install/tasks/main.yml", "content": "---\n\n- name: install mysql-server\n apt: \n name: mysql-server\n state: present\n- name: install mysql-client\n apt: \n name: mysql-client\n state: present\n- name: install python3-pymysql\n apt: \n name: python3-pymysql...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 425, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/mysql-user-database
556
[ "no_license" ]
[ { "path": "ansible/roles/mysql-user-database/tasks/main.yml", "content": "\n- name: Creates new user\n mysql_user:\n login_host: 'localhost'\n name: \"{{ mysql_username }}\"\n password: \"{{ <PASSWORD> }}\"\n state: present\n login_user: root\n login_password: \"{{ mysql_root_password }}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 672, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/packages-install
556
[ "no_license" ]
[ { "path": "ansible/roles/packages-install/tasks/main.yml", "content": "- name: update \"apt\" \n apt: \n update_cache: yes \n autoclean: yes\n autoremove: yes \n- name: install (git, wget, apache, ufw, unzip, curl)\n apt:\n pkg:\n - git\n - wget\n - apache2\n - ufw\n - unzip\n - curl\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 221, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/php-install
556
[ "no_license" ]
[ { "path": "ansible/roles/php-install/tasks/main.yml", "content": "- name: Add php repository \n apt_repository:\n repo: 'ppa:ondrej/php'\n- name: Updating the repo\n apt: update_cache=yes \n- name: Install PHP \n apt: name=php8.1 state=latest\n- name: Install PHP MB\n apt: name=php8.1-mbstring state=l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1288, "all_permissive": false }
ansible_role
jubril-adeyi/deploy-laravelapp-using-ansible
aa44a175dfb0bbfda7be546cd592c35b5b671835
0
ansible/roles/ufw-config
556
[ "no_license" ]
[ { "path": "ansible/roles/ufw-config/tasks/main.yml", "content": "---\n\n- name: UFW - Allow HTTP on port 80\n ufw:\n rule: allow\n port: \"80\"\n proto: tcp\n- name: UFW - Allow SSH on port 22\n ufw:\n rule: allow\n port: \"22\"\n proto: tcp\n- name: UFW - Allow HTTPS\n ufw:\n rule:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 315, "all_permissive": false }
ansible_role
wouterla/workshop-docker-jenkins
0357e3d1599fac671d0560159b016d8db4d9d5ca
6
roles/jenkins
556
[ "no_license" ]
[ { "path": "roles/jenkins/vars/main.yml", "content": "jenkins_public_url: http://jenkins\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/jenkins/tasks/main.yml", "content": "- name: Create target directory\n file: path={{ playbook_dir }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3142, "all_permissive": false }
ansible_role
wouterla/workshop-docker-jenkins
0357e3d1599fac671d0560159b016d8db4d9d5ca
6
roles/jenkins-jobs
556
[ "no_license" ]
[ { "path": "roles/jenkins-jobs/files/jobs/jobs.yml", "content": "- defaults:\n name: global\n project-type: freestyle\n properties:\n - delivery-pipeline:\n stage: '{pipeline-stage}'\n scm:\n - git:\n name: origin\n url: 'https://github.com/wouterla/{gitrepo}....
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2186, "all_permissive": false }
ansible_role
wouterla/workshop-docker-jenkins
0357e3d1599fac671d0560159b016d8db4d9d5ca
6
roles/jenkins-slave
556
[ "no_license" ]
[ { "path": "roles/jenkins-slave/tasks/main.yml", "content": "- name: install private key for access to github\n copy: src=../../jenkins/files/id_rsa dest=/home/ubuntu/.ssh/\n\n- name: install public key\n copy: src=../../jenkins/files/id_rsa.pub dest=/home/ubuntu/.ssh/\n\n", "license_type": "no_license...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 208, "all_permissive": false }
ansible_role
benjisho/ansible-openvpn
f2e4226ff636d931a7e3c455f223ee0f7251feb5
0
roles/easy_rsa
556
[ "no_license" ]
[ { "path": "roles/easy_rsa/tasks/main.yml", "content": "---\n- name: Install Easy-RSA package\n apt:\n name: \"{{ easy_rsa_package_name }}\"\n state: present\n when: ansible_system == \"Linux\"\n\n- name: Copy the Easy-RSA files to the OpenVPN directory\n copy:\n src: \"{{ easy_rsa_source_dir }}/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1108, "all_permissive": false }
ansible_role
benjisho/ansible-openvpn
f2e4226ff636d931a7e3c455f223ee0f7251feb5
0
roles/openvpn_client
556
[ "no_license" ]
[ { "path": "roles/openvpn_client/tasks/main.yml", "content": "---\n- name: Generate client certificate\n command: ./easyrsa build-client-full {{ client_name }} nopass\n args:\n chdir: /etc/openvpn/easy-rsa\n\n- name: Create .ovpn file for the client\n template:\n src: client.ovpn.j2\n dest: \"{{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 985, "all_permissive": false }
ansible_role
benjisho/ansible-openvpn
f2e4226ff636d931a7e3c455f223ee0f7251feb5
0
roles/openvpn_server
556
[ "no_license" ]
[ { "path": "roles/openvpn_server/vars/main.yml", "content": "# Example variables for the OpenVPN server\nopenvpn_server_network: \"10.8.0.0 255.255.255.0\"\nopenvpn_cipher: \"AES-256-CBC\"\n\n# Example variable definitions\nopenvpn_package_name: openvpn\npackage_state: present\nserver_conf_template: server.c...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1393, "all_permissive": false }
ansible_role
piolotorrecampo/CPE-243_HOA_8.1
456a3503219b42702fafe681abcdd74feee3daaf
0
roles/ubuntu
556
[ "no_license" ]
[ { "path": "roles/ubuntu/tasks/main.yml", "content": "\n- name: Installing wireshark\n apt: \n name: tshark\n\n# this directory will hold the PCAP file\n- name: Creating a directory in managed node\n file:\n path: /home/managed_node_one/pcaps/\n state: directory\n\n- name: Creating folder in contr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1009, "all_permissive": false }
ansible_role
Pure-Storage-Solutions/spark-hive-pg
b28b632746025392b1b57b8dfb43c7d845f8324f
0
roles/install
556
[ "no_license" ]
[ { "path": "roles/install/templates/hive-site.xml.j2", "content": "<property>\n <name>sys:hive.log.dir</name>\n <value>logs</value>\n</property>\n<property>\n <name>system:java.io.tmpdir</name>\n <value>/tmp/hive/java</value>\n</property>\n<property>\n <name>system:user.name</name>\n <value>${user.name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 9686, "all_permissive": false }
ansible_role
Pure-Storage-Solutions/spark-hive-pg
b28b632746025392b1b57b8dfb43c7d845f8324f
0
roles/start
556
[ "no_license" ]
[ { "path": "roles/start/tasks/main.yml", "content": "- name: Start Apache Spark and Validate Hive Integration\n hosts: all\n become: yes\n\n tasks:\n\n - name: Start Spark Master Node\n shell: \"{{ spark_home }}/sbin/start-master.sh\"\n args:\n executable: /bin/bash\n environment:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2458, "all_permissive": false }
ansible_role
Pure-Storage-Solutions/spark-hive-pg
b28b632746025392b1b57b8dfb43c7d845f8324f
0
roles/stop
556
[ "no_license" ]
[ { "path": "roles/stop/tasks/main.yml", "content": "- name: Check if Trino process is running\n become: yes\n shell: ps -few | grep trino|grep java|grep -v grep|wc -l\n register: trino_status\n failed_when: false\n\n- name: print trino_status\n debug: \n var: trino_status.stdout_lines[0]\n\n- name: S...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 461, "all_permissive": false }
ansible_role
btison/rhte2019-kogito-install
edf28801e946fca26dea2f423db8dd806a8fe53c
0
ansible/roles/openshift_kafka_cluster
574
[ "no_license" ]
[ { "path": "ansible/roles/openshift_kafka_cluster/tasks/main.yml", "content": "---\n\n- import_role:\n name: kafka_cluster\n\n- name: wait until topic-operator is active\n shell: \"{{ openshift_cli }} get deployment kafka-cluster-entity-operator -o template --template={{ json_template }} -n {{ namespace ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 382, "all_permissive": false }
ansible_role
btison/rhte2019-kogito-install
edf28801e946fca26dea2f423db8dd806a8fe53c
0
ansible/roles/openshift_monitoring
574
[ "no_license" ]
[ { "path": "ansible/roles/openshift_monitoring/tasks/uninstall.yml", "content": "---\n\n- name: remove application monitoring cr\n oc_obj:\n state: absent\n kind: ApplicationMonitoring\n name: \"{{ application_monitoring_cr }}\"\n oc_binary: \"{{ openshift_cli }}\"\n namespace: \"{{ namespace...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 14488, "all_permissive": false }
ansible_role
btison/rhte2019-kogito-install
edf28801e946fca26dea2f423db8dd806a8fe53c
0
ansible/roles/openshift_strimzi_operator
574
[ "no_license" ]
[ { "path": "ansible/roles/openshift_strimzi_operator/tasks/uninstall.yml", "content": "---\n\n- import_role:\n name: strimzi_cluster_provisioner\n tasks_from: uninstall\n\n- import_role:\n name: strimzi_cluster_operator\n tasks_from: uninstall\n\n- name: delete project\n oc_project:\n oc_bina...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 625, "all_permissive": false }
ansible_role
btison/rhte2019-kogito-install
edf28801e946fca26dea2f423db8dd806a8fe53c
0
ansible/roles/strimzi_cluster_operator
574
[ "no_license" ]
[ { "path": "ansible/roles/strimzi_cluster_operator/tasks/main.yml", "content": "---\n\n- name: make sure we can pull from registry\n shell: oc secrets link builder imagestreamsecret -n openshift\n\n- name: ensure container registry credentials can be mounted in builds\n shell: oc get secret imagestreamsecr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 6668, "all_permissive": false }
ansible_role
btison/rhte2019-kogito-install
edf28801e946fca26dea2f423db8dd806a8fe53c
0
ansible/roles/strimzi_cluster_provisioner
574
[ "no_license" ]
[ { "path": "ansible/roles/strimzi_cluster_provisioner/tasks/main.yml", "content": "---\n\n# TODO: make provisioner admin in project\n\n- name: assign user {{ cluster_provisioner }} as project admin in {{ namespace_kafka_cluster }}\n oc_adm_policy_user:\n oc_binary: \"{{ openshift_cli }}\"\n state: pre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1144, "all_permissive": false }
ansible_role
Nandaung/swen426-assignment1
472d753bbcc72c45d6294d0c2298cc2d51fec11b
0
provisioning/roles/nandaaung.common
574
[ "no_license" ]
[ { "path": "provisioning/roles/nandaaung.common/tasks/main.yml", "content": "---\n# tasks file for nandaaung.common\n- name: Make sure we can connect to the VM\n ansible.builtin.ping:\n- name: Install required tools\n ansible.builtin.apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - unz...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 380, "all_permissive": false }
ansible_role
Nandaung/swen426-assignment1
472d753bbcc72c45d6294d0c2298cc2d51fec11b
0
provisioning/roles/nandaaung.mysql
574
[ "no_license" ]
[ { "path": "provisioning/roles/nandaaung.mysql/tests/test.yml", "content": "---\n# test file for nandaaung.mysql\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "provisioning/roles/nandaaung.mysql/defaults/main.yml", "content": "---\n# defaults...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1307, "all_permissive": false }
ansible_role
Nandaung/swen426-assignment1
472d753bbcc72c45d6294d0c2298cc2d51fec11b
0
provisioning/roles/nandaaung.nginx
574
[ "no_license" ]
[ { "path": "provisioning/roles/nandaaung.nginx/vars/main.yml", "content": "---\n# vars file for nandaaung.nginx\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "provisioning/roles/nandaaung.nginx/tasks/main.yml", "content": "---\n# tasks file f...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 634, "all_permissive": false }
ansible_role
Nandaung/swen426-assignment1
472d753bbcc72c45d6294d0c2298cc2d51fec11b
0
provisioning/roles/nandaaung.php
574
[ "no_license" ]
[ { "path": "provisioning/roles/nandaaung.php/tasks/main.yml", "content": "---\n# tasks file for nandaaung.php\n- name: Add the ondrej PHP PPA\n ansible.builtin.apt_repository:\n repo: ppa:ondrej/php\n- name: Update the apt cache\n ansible.builtin.apt:\n update_cache: true\n cache_valid_time: 3600\n- ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 754, "all_permissive": false }
ansible_role
Nandaung/swen426-assignment1
472d753bbcc72c45d6294d0c2298cc2d51fec11b
0
provisioning/roles/nandaaung.wordpress
574
[ "no_license" ]
[ { "path": "provisioning/roles/nandaaung.wordpress/vars/main.yml", "content": "---\n# vars file for nandaaung.wordpress\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "provisioning/roles/nandaaung.wordpress/handlers/main.yml", "content": "---\...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2713, "all_permissive": false }
ansible_role
Tunji-L/ansible-config-mgt-copy
c20b759744ddd711060865555c195e9122199d95
0
roles/nginx
574
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n# Variable setup.\n- name: Include OS-specific variables.\n include_vars: \"Debian.yml\"\n\n- name: Define nginx_user.\n set_fact:\n nginx_user: \"{{ __nginx_user }}\"\n when: nginx_user is not defined\n\n# Setup/install tasks.\n- include_tasks:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1445, "all_permissive": false }
ansible_role
fostermadeco/rokanan
bc94cb6eeb29ab205db549b4e5ae4375d9bdbcf7
0
dependencies/ansible/roles/lamp
574
[ "no_license" ]
[ { "path": "dependencies/ansible/roles/lamp/tasks/install_mysql.yaml", "content": "---\n- name: ensure mysql is installed\n become: yes\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - mysql-server\n - libmysqlclient-dev\n - python3-mysqldb\n\n- name: ensure mysql is started...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 7273, "all_permissive": false }
ansible_role
fostermadeco/rokanan
bc94cb6eeb29ab205db549b4e5ae4375d9bdbcf7
0
dependencies/ansible/roles/nosql
574
[ "no_license" ]
[ { "path": "dependencies/ansible/roles/nosql/tasks/install_mongodb.yaml", "content": "---\n- name: set mongodb key IDs by version\n set_fact:\n mongodb_key_ids:\n 3.4: <KEY>\n 3.6: 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5\n 4.0: 9DA31620334BD75D9DCB49F368818C72E52529D4\n\n- name: set mongo...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2270, "all_permissive": false }
ansible_role
fostermadeco/rokanan
bc94cb6eeb29ab205db549b4e5ae4375d9bdbcf7
0
dependencies/ansible/roles/queue
574
[ "no_license" ]
[ { "path": "dependencies/ansible/roles/queue/templates/activemq.service.j2", "content": "[Unit]\nDescription=Apache ActiveMQ\nAfter=network-online.target\nDocumentation=http://activemq.apache.org/\n\n[Service]\nType=forking\nWorkingDirectory=/usr/local/lib/activemq/bin\nExecStart=/usr/local/lib/activemq/bin/...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4314, "all_permissive": false }
ansible_role
fostermadeco/rokanan
bc94cb6eeb29ab205db549b4e5ae4375d9bdbcf7
0
dependencies/ansible/roles/search
574
[ "no_license" ]
[ { "path": "dependencies/ansible/roles/search/tasks/install_sphinx.yaml", "content": "---\n- name: stat sphinx\n stat:\n path: /usr/local/bin/searchd\n register: sphinx\n tags:\n - sphinx\n\n- block:\n - name: install packages required to build sphinx with mysql and re support\n become: yes\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1274, "all_permissive": false }
ansible_role
fostermadeco/rokanan
bc94cb6eeb29ab205db549b4e5ae4375d9bdbcf7
0
dependencies/ansible/roles/system
574
[ "no_license" ]
[ { "path": "dependencies/ansible/roles/system/templates/mailhog.service.j2", "content": "[Unit]\nDescription=Installation of Mailhog\nAfter=network.target\nDocumentation=https://github.com/mailhog/MailHog\n\n[Service]\nType=simple\nUser=root\nGroup=staff\n\nExecStart=/usr/local/bin/mailhog [ -smtp-bind-addr ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2094, "all_permissive": false }
ansible_role
gamiP/ansible-provision
2fabb008cc11d63168953241ccbd76c1b9558bd1
0
centOS7-nginx-php7-mysql7/provisioning/roles/ansible
574
[ "no_license" ]
[ { "path": "centOS7-nginx-php7-mysql7/provisioning/roles/ansible/tasks/main.yml", "content": "---\n# This playbook contains common plays that will be run on all nodes.\n- name: Ansibleをインストール\n yum: name={{item.name}} state=present enablerepo={{item.repo}}\n with_items:\n - name: ansible\n repo: ep...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 832, "all_permissive": false }
ansible_role
gamiP/ansible-provision
2fabb008cc11d63168953241ccbd76c1b9558bd1
0
centOS7-nginx-php7-mysql7/provisioning/roles/nginx
574
[ "no_license" ]
[ { "path": "centOS7-nginx-php7-mysql7/provisioning/roles/nginx/tasks/main.yml", "content": "---\n# This playbook contains common plays that will be run on all nodes.\n- name: nginxをインストールする\n yum: name={{item.name}} state=present enablerepo={{item.repo}}\n with_items:\n - name: nginx\n repo: epel\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 504, "all_permissive": false }
ansible_role
gamiP/ansible-provision
2fabb008cc11d63168953241ccbd76c1b9558bd1
0
centOS7-nginx-php7-mysql7/provisioning/roles/php7
574
[ "no_license" ]
[ { "path": "centOS7-nginx-php7-mysql7/provisioning/roles/php7/templates/www.conf.j2", "content": "; Start a new pool named 'www'.\n; the variable $pool can we used in any directive and will be replaced by the\n; pool name ('www' here)\n[www]\n\nenv[MOGRA_APP_TYPE] = 'all'\nenv[MOGRA_APP_ENV] = 'local'\nenv[A...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2017, "all_permissive": false }
ansible_role
gamiP/ansible-provision
2fabb008cc11d63168953241ccbd76c1b9558bd1
0
centOS7-nginx-php7-mysql7/provisioning/roles/wordpress
574
[ "no_license" ]
[ { "path": "centOS7-nginx-php7-mysql7/provisioning/roles/wordpress/tasks/main.yml", "content": "- name: \n file:\n state: directory\n path: /var/www/html\n owner: root\n group: root\n mode: 0755\n become: yes\n\n- name: Check if WordPress directory exists in /var/www\n stat: path=/var/www/h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1626, "all_permissive": false }
ansible_role
ufuksh/app
d1ba2e5f8e429e8b79ac1a759e4a4f62eea88e01
0
jenkins-ansible-project/ansible/roles/common
574
[ "no_license" ]
[ { "path": "jenkins-ansible-project/ansible/roles/common/templates/config.j2", "content": "# This file is a Jinja2 template for generating configuration files dynamically based on variables.\n\n[DEFAULT]\nhost = {{ host }}\nport = {{ port }}\nusername = {{ username }}\npassword = {{ <PASSWORD> }}\n\n[setting...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 665, "all_permissive": false }
ansible_role
xadlien/digitalocean-passbolt
db7c625bc4db5855fb3e95d50cafb995330fed06
0
ansible/playbooks/roles/passbolt
574
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/passbolt/templates/docker-compose.yml.j2", "content": "version: '3.3'\nservices:\n db:\n image: mariadb:10.3\n restart: unless-stopped\n environment:\n MYSQL_RANDOM_ROOT_PASSWORD: \"true\"\n MYSQL_DATABASE: \"passbolt\"\n MYSQL_USER: \"passbolt\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2713, "all_permissive": false }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/ansible/appsmith_playbook/roles/base
574
[ "permissive" ]
[ { "path": "deploy/ansible/appsmith_playbook/roles/base/tasks/setup-ubuntu.yml", "content": "---\n- name: Ensure old versions of Docker are not installed.\n package:\n name:\n - docker\n - docker-engine\n state: absent\n\n- name: Ensure dependencies are installed.\n apt:\n name:\n -...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1196, "all_permissive": true }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/ansible/appsmith_playbook/roles/domain_ssl
574
[ "permissive" ]
[ { "path": "deploy/ansible/appsmith_playbook/roles/domain_ssl/tasks/main.yml", "content": "---\n- name: Copy init_letsencrypt template\n template: \n src=\"init_letsencrypt.sh.j2\" \n dest=\"{{ install_dir }}/init_letsencrypt.sh\"\n mode=\"0755\"\n when: ssl_enable | bool\n become: yes\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 3183, "all_permissive": true }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/ansible/appsmith_playbook/roles/generate_template
574
[ "permissive" ]
[ { "path": "deploy/ansible/appsmith_playbook/roles/generate_template/defaults/main.yml", "content": "---\n# Default installation dir\ninstall_dir: /home/ubuntu/appsmith", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 65 }, { "path": "deploy/a...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3209, "all_permissive": true }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/ansible/appsmith_playbook/roles/start_app
574
[ "permissive" ]
[ { "path": "deploy/ansible/appsmith_playbook/roles/start_app/handlers/main.yml", "content": "---\n - name: Send request to integromat when start app with docker\n uri:\n url: \"{{ analytics_webhook_uri }}\"\n method: POST\n body: \"{\\\"userId\\\":\\\"{{ app_installation_id.conte...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 576, "all_permissive": true }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/test-scripts/aws-ami/aws_ami_ansible_playbook/roles/bundle_ami
574
[ "permissive" ]
[ { "path": "deploy/test-scripts/aws-ami/aws_ami_ansible_playbook/roles/bundle_ami/tasks/main.yml", "content": "---\n- name: Register AMI\n ec2_ami:\n instance_id: \"{{ new_created_instance_id }}\"\n region: \"{{ default_region_id }}\"\n state: present\n description: Register AMI for auto scaling...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 369, "all_permissive": true }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/test-scripts/aws-ami/aws_ami_ansible_playbook/roles/copy_base_install
574
[ "permissive" ]
[ { "path": "deploy/test-scripts/aws-ami/aws_ami_ansible_playbook/roles/copy_base_install/tasks/main.yml", "content": "- name: Create installation folder\n file:\n path: \"{{ install_dir }}\"\n state: directory\n\n- name: Copy base-install.sh\n copy:\n src: \"{{ ci_project_dir }}/deploy/aws_ami/bas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 311, "all_permissive": true }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/test-scripts/aws-ami/aws_ami_ansible_playbook/roles/disable_analytics
574
[ "permissive" ]
[ { "path": "deploy/test-scripts/aws-ami/aws_ami_ansible_playbook/roles/disable_analytics/tasks/main.yml", "content": "---\n- name: Copy template file disable analytics\n copy:\n src: \"disable-analytics.sh\"\n dest: \"{{ install_dir }}/appsmith/scripts/disable-analytics.sh\"\n owner: \"ubuntu\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 298, "all_permissive": true }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/test-scripts/aws-ami/aws_ami_ansible_playbook/roles/setup_instance
574
[ "permissive" ]
[ { "path": "deploy/test-scripts/aws-ami/aws_ami_ansible_playbook/roles/setup_instance/tasks/main.yml", "content": "---\n - name: Create ec2 instance from scratch & update to inventory/aws_host file\n block:\n - import_tasks: setup_instance.yml\n \n - name: Refresh inventory\n meta: ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1157, "all_permissive": true }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/test-scripts/aws-ami/aws_ami_ansible_playbook/roles/setup_instance_from_ami
574
[ "permissive" ]
[ { "path": "deploy/test-scripts/aws-ami/aws_ami_ansible_playbook/roles/setup_instance_from_ami/tasks/setup_instance.yml", "content": "---\n- name: Create EC2 instances\n ec2:\n key_name: \"{{ default_key }}\"\n region: \"{{ default_region_id }}\"\n instance_type: \"{{ default_instance_type_id }}\"\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1146, "all_permissive": true }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/test-scripts/aws-ami/teardown_aws_ami_ansible_playbook/roles/terminate_ami
574
[ "permissive" ]
[ { "path": "deploy/test-scripts/aws-ami/teardown_aws_ami_ansible_playbook/roles/terminate_ami/tasks/main.yml", "content": "---\n - name: Terminate ami\n ec2_ami:\n state: absent\n region: \"{{ default_region_id }}\"\n image_id: \"{{ ami_id }}\"\n", "license_type": "permissive...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 142, "all_permissive": true }
ansible_role
geekup-legodevops/lego-wf
d40221548a6076c17c729a841adc3b5186d84821
0
deploy/test-scripts/aws-ami/teardown_aws_ami_ansible_playbook/roles/terminate_instance
574
[ "permissive" ]
[ { "path": "deploy/test-scripts/aws-ami/teardown_aws_ami_ansible_playbook/roles/terminate_instance/tasks/main.yml", "content": "---\n - name: Terminate instance\n ec2:\n state: absent\n region: \"{{ default_region_id }}\"\n instance_ids: \"{{ instance_id }}\"\n", "license_typ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 152, "all_permissive": true }