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
lhellebr/libvirt-cr-setup
b4849b49e8639f18354d0196d782ca4a9addd492
0
roles/libvirt-install
331
[ "no_license" ]
[ { "path": "roles/libvirt-install/tasks/main.yml", "content": "---\n# tasks file for libvirt-install\n\n- name: Verify virtualization is enabled in BIOS\n shell: lscpu | grep Virtualization\n changed_when: false\n\n- name: Install required packages\n yum:\n name:\n - qemu-kvm\n - libvirt\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 581, "all_permissive": false }
ansible_role
lhellebr/libvirt-cr-setup
b4849b49e8639f18354d0196d782ca4a9addd492
0
roles/libvirt-setup
331
[ "no_license" ]
[ { "path": "roles/libvirt-setup/handlers/main.yml", "content": "---\n# handlers file for libvirt-setup", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/libvirt-setup/templates/vm_template.xml.j2", "content": "<domain type='kvm'>\n <name>{{...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2757, "all_permissive": false }
ansible_role
ilkh/vagrant-files
82efc5ba4551c0285951d52a45bddeb00f902afd
0
vagrant-ansible-lnmp/provisioning/ansible/roles/database
331
[ "no_license" ]
[ { "path": "vagrant-ansible-lnmp/provisioning/ansible/roles/database/tasks/main.yml", "content": "---\n- name: Update apt cache\n apt: update_cache=yes\n sudo: yes\n\n- name: Install the Python MySQLB module\n apt: name=python-mysqldb state=present\n sudo: yes\n\n- name: Install mariadb server \n apt: n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 393, "all_permissive": false }
ansible_role
ilkh/vagrant-files
82efc5ba4551c0285951d52a45bddeb00f902afd
0
vagrant-ansible-lnmp/provisioning/ansible/roles/webserver
331
[ "no_license" ]
[ { "path": "vagrant-ansible-lnmp/provisioning/ansible/roles/webserver/tasks/main.yml", "content": "---\n- name: Update apt cache\n apt: update_cache=yes\n sudo: yes\n\n- name: Install nginx\n apt: name=nginx state=present\n sudo: yes\n\n- name: Install php5-fpm\n apt: name=php5-fpm state=present\n sudo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1301, "all_permissive": false }
ansible_role
acbgbca/microserver-ansible-playbooks
68d145e4d62f4ba694809a2676b0e3522d1204e7
0
roles/ansible_server
333
[ "no_license" ]
[ { "path": "roles/ansible_server/tasks/main.yml", "content": "---\n- name: Install Ansible\n apt:\n name:\n - ansible\n - python3\n state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes": 95 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 95, "all_permissive": false }
ansible_role
acbgbca/microserver-ansible-playbooks
68d145e4d62f4ba694809a2676b0e3522d1204e7
0
roles/base_server
333
[ "no_license" ]
[ { "path": "roles/base_server/tasks/main.yml", "content": "---\n- name: Install Unattended Upgrades\n apt:\n pkg:\n - unattended-upgrades\n - ufw\n- block:\n - name: Add default user\n user:\n name: \"{{ default_user }}\"\n shell: /bin/bash\n - name: Add default user to the sudoers\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1432, "all_permissive": false }
ansible_role
acbgbca/microserver-ansible-playbooks
68d145e4d62f4ba694809a2676b0e3522d1204e7
0
roles/cloud_sync
333
[ "no_license" ]
[ { "path": "roles/cloud_sync/templates/cloud_sync.sh.j2", "content": "#!/bin/bash\n# Scheduled sync for all local items\n\nset -e\n\necho \"Starting Cloud Sync\"\n\n{% for item in cloud_sources.pathsToSync %}\necho \"Syncing {{ item.src }}\"\nrclone sync {{ item.src }} onedrive:{{ item.dest }} --log-level IN...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3681, "all_permissive": false }
ansible_role
acbgbca/microserver-ansible-playbooks
68d145e4d62f4ba694809a2676b0e3522d1204e7
0
roles/docker
333
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: Check if GPG key exists\n stat:\n path: /etc/apt/keyrings/docker.asc\n register: result\n- name: add GPG key\n get_url:\n url: https://download.docker.com/linux/ubuntu/gpg\n dest: /etc/apt/keyrings/docker.asc\n mode: 644\n whe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2512, "all_permissive": false }
ansible_role
acbgbca/microserver-ansible-playbooks
68d145e4d62f4ba694809a2676b0e3522d1204e7
0
roles/docker_server
333
[ "no_license" ]
[ { "path": "roles/docker_server/tasks/main.yml", "content": "---\n- name: Install git\n apt:\n name:\n - git\n - acl\n state: present\n- name: Add \"{{ default_user }}\" to \"{{ data_user }}\"\n user:\n name: \"{{ default_user }}\"\n state: present\n append: yes\n groups:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1639, "all_permissive": false }
ansible_role
acbgbca/microserver-ansible-playbooks
68d145e4d62f4ba694809a2676b0e3522d1204e7
0
roles/nfs_server
333
[ "no_license" ]
[ { "path": "roles/nfs_server/tasks/main.yml", "content": "---\n- name: Install NFS Server.\n apt:\n name: nfs-kernel-server\n state: present\n- block:\n - name: Setup bind mounts\n ansible.posix.mount:\n path: \"{{ item.path }}\"\n src: \"{{ item.src }}\"\n opts: bind,nofail\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 553, "all_permissive": false }
ansible_role
acbgbca/microserver-ansible-playbooks
68d145e4d62f4ba694809a2676b0e3522d1204e7
0
roles/samba_server
333
[ "no_license" ]
[ { "path": "roles/samba_server/tasks/main.yml", "content": "---\n- name: Install Samba Server.\n apt:\n name: samba\n state: present\n- name: Install WSDD (So computer shows on network)\n apt:\n name: wsdd-server\n state: present\n- name: Setup Samba config\n ansible.builtin.template:\n src...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 625, "all_permissive": false }
ansible_role
zollipaul/battleships-node
2ed101c8b311e58170f3eed21182f9cd894440d6
0
deploy/ansible/roles/ansible-role-certbot
333
[ "permissive" ]
[ { "path": "deploy/ansible/roles/ansible-role-certbot/vars/Ubuntu-16.04.yml", "content": "certbot_package: python-certbot-nginx\n", "license_type": "permissive", "detected_licenses": [ "Unlicense" ], "size_bytes": 38 }, { "path": "deploy/ansible/roles/ansible-role-certbot/tasks/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 190, "all_permissive": true }
ansible_role
zollipaul/battleships-node
2ed101c8b311e58170f3eed21182f9cd894440d6
0
deploy/ansible/roles/user
333
[ "permissive" ]
[ { "path": "deploy/ansible/roles/user/vars/main.yml", "content": "---\n#\n# foo: bar", "license_type": "permissive", "detected_licenses": [ "Unlicense" ], "size_bytes": 16 }, { "path": "deploy/ansible/roles/user/tasks/main.yml", "content": "---\n- name: create deployment use...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 181, "all_permissive": true }
ansible_role
sdorsett/terraform-vsphere-cds-docker-compose
a5df7de504dcbdc60c98176d782b9e815d5be70a
1
ansible/roles/cds
333
[ "no_license" ]
[ { "path": "ansible/roles/cds/vars/main.yml", "content": " \n---\n# file: roles/cds/vars/main.yml\ncds_admin_password: <PASSWORD>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 }, { "path": "ansible/roles/cds/templates/boot.sh.j2", "content": "#!/bin/bash...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2719, "all_permissive": false }
ansible_role
sdorsett/terraform-vsphere-cds-docker-compose
a5df7de504dcbdc60c98176d782b9e815d5be70a
1
ansible/roles/common
333
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n# file: roles/common/tasks/main.yml\n\n- name: Install aptitude to prevent apt warnings\n apt:\n name: aptitude\n state: present\n update_cache: true\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": 158, "all_permissive": false }
ansible_role
sdorsett/terraform-vsphere-cds-docker-compose
a5df7de504dcbdc60c98176d782b9e815d5be70a
1
ansible/roles/docker-compose
333
[ "no_license" ]
[ { "path": "ansible/roles/docker-compose/tasks/main.yml", "content": " \n---\n# file: roles/docker-compose/tasks/main.yml\n\n- name: Install docker packages\n apt:\n name: ['apt-transport-https', 'ca-certificates', 'curl', 'software-properties-common']\n state: present\n update_cache: yes\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1457, "all_permissive": false }
ansible_role
Charle-Mary/UDAPEOPLE
1dd4d5509b102ee985066a60a341af9b9985f4f0
0
.circleci/ansible/roles/configure-server
333
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/configure-server/tasks/main.yml", "content": "---\n\n- name: Update dependencies\n become: true\n apt:\n update_cache: yes\n\n- name: Upgrade dependencies\n become: true\n apt:\n upgrade: yes\n\n- name: Install nodejs\n become: true\n apt:\n name: [nodejs, n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 416, "all_permissive": false }
ansible_role
Charle-Mary/UDAPEOPLE
1dd4d5509b102ee985066a60a341af9b9985f4f0
0
.circleci/ansible/roles/deploy
333
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "---\n\n- name: Create backend Directory\n become: true\n file:\n path: /home/ubuntu/backend\n state: directory\n mode: 0755\n\n- name: Extract files to backend servers\n become: true\n unarchive:\n src: ../../artifact.tar...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 720, "all_permissive": false }
ansible_role
Veiasai/CSE-lab
ecb4eaa40c82ed08f77c14e39c74fbcc4695853f
10
lab4-deploy/roles/common
333
[ "no_license" ]
[ { "path": "lab4-deploy/roles/common/tasks/main.yml", "content": "---\n- name: Add User\n user: \n name=cse \n shell=/bin/bash\n state=present\n\n- name: Add cse user to the sudoers\n copy:\n dest: \"/etc/sudoers.d/cse\"\n content: \"cse ALL=(ALL) NOPASSWD: ALL\"\n\n- name: Add T...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1062, "all_permissive": false }
ansible_role
Veiasai/CSE-lab
ecb4eaa40c82ed08f77c14e39c74fbcc4695853f
10
lab4-deploy/roles/hadoop
333
[ "no_license" ]
[ { "path": "lab4-deploy/roles/hadoop/templates/hdfs-site.j2", "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-stylesheet type=\"text/xsl\" href=\"configuration.xsl\"?>\n\n<configuration>\n <property>\n <name>dfs.block.size</name>\n <value>16384</value>\n </property>\n \n{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2621, "all_permissive": false }
ansible_role
marta-tatiana/ansible-home
787edb6ebb6ea580420abca17f5fa4dbf5621f51
0
roles/npm_global_modules
333
[ "no_license" ]
[ { "path": "roles/npm_global_modules/tasks/main.yml", "content": "---\n- include: npm_global_modules.yml\n tags:\n - npm_global_modules\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 69 }, { "path": "roles/npm_global_modules/meta/main.yml", "content": "---\...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 256, "all_permissive": false }
ansible_role
deniz2412/AdvancedDevOpsAssignments
dd4c575b65b8eb5e0a06b6b722ef1139965b50e1
0
infrastructure/ansible/playbooks/roles/role-certification
333
[ "no_license" ]
[ { "path": "infrastructure/ansible/playbooks/roles/role-certification/templates/stop_services.j2", "content": "#!/bin/bash\n# {{ ansible_managed }}\n\n{% for item in certbot_create_standalone_stop_services %}\necho \"stopping service {{ item }}\"\nsystemctl stop {{ item }}\n{% endfor %}", "license_type":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1996, "all_permissive": false }
ansible_role
deniz2412/AdvancedDevOpsAssignments
dd4c575b65b8eb5e0a06b6b722ef1139965b50e1
0
infrastructure/ansible/playbooks/roles/role-docker
333
[ "no_license" ]
[ { "path": "infrastructure/ansible/playbooks/roles/role-docker/tasks/main.yml", "content": "---\n# tasks file for role-docker\n\n- name: Remove old versions\n apt:\n name:\n - docker-ce\n - docker-engine\n - docker-io\n state: absent\n update_cache: yes\n\n- name: Add dependencies\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1293, "all_permissive": false }
ansible_role
deniz2412/AdvancedDevOpsAssignments
dd4c575b65b8eb5e0a06b6b722ef1139965b50e1
0
infrastructure/ansible/playbooks/roles/role-jenkins
333
[ "no_license" ]
[ { "path": "infrastructure/ansible/playbooks/roles/role-jenkins/defaults/main.yml", "content": "---\n# defaults file for role-jenkins\njenkins_admin_username: admin\njenkins_admin_password: <PASSWORD>\n\n#Options for config INITIAL\njenkins_home: /var/lib/jenkins\njenkins_listen_addr: 127.0.0.1\njenkins_http...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 5030, "all_permissive": false }
ansible_role
deniz2412/AdvancedDevOpsAssignments
dd4c575b65b8eb5e0a06b6b722ef1139965b50e1
0
infrastructure/ansible/playbooks/roles/role-nginx
333
[ "no_license" ]
[ { "path": "infrastructure/ansible/playbooks/roles/role-nginx/tasks/main.yml", "content": "---\n\n- name: Install nginx webserver\n apt:\n name: nginx\n state: latest\n \n## \n- name: Create new server block\n template:\n src: nginx.conf.j2\n dest: \"/etc/nginx/sites-available/{{ domain_name }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1419, "all_permissive": false }
ansible_role
ankurgarg21/vagrant-stack
daae3b159b30d198c0912ade447f585f1f819e52
0
centos7-dev-stack-vagrant/roles/apache
333
[ "no_license" ]
[ { "path": "centos7-dev-stack-vagrant/roles/apache/templates/index.html.j2", "content": "Hello Apache & Ansible\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 23 }, { "path": "centos7-dev-stack-vagrant/roles/apache/tasks/main.yml", "content": "---\n# Include ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1695, "all_permissive": false }
ansible_role
c4pr1c3/AnsibleTutorial
e9e900c7b7b32cdcd01e1391d371e1d34c94ce02
6
manage-tasks/roles/apt
333
[ "no_license" ]
[ { "path": "manage-tasks/roles/apt/tasks/main.yml", "content": "# http://docs.ansible.com/ansible/latest/apt_module.html\n- name: install all required debs\n apt:\n name: \"{{ item }}\"\n state: present\n update_cache: yes\n cache_valid_time: 3600\n with_items: \"{{ debs }}\"\n when: ansible_o...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 256, "all_permissive": false }
ansible_role
c4pr1c3/AnsibleTutorial
e9e900c7b7b32cdcd01e1391d371e1d34c94ce02
6
manage-tasks/roles/common
333
[ "no_license" ]
[ { "path": "manage-tasks/roles/common/tasks/main.yml", "content": "# http://docs.ansible.com/ansible/latest/package_module.html\n- name: install all required pkgs\n package:\n name: \"{{ item }}\"\n state: present\n with_items: \"{{ pkgs }}\"\n- name: debug remote sysinfo\n debug:\n msg: \"{{ ans...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 353, "all_permissive": false }
ansible_role
c4pr1c3/AnsibleTutorial
e9e900c7b7b32cdcd01e1391d371e1d34c94ce02
6
manage-tasks/roles/yum
333
[ "no_license" ]
[ { "path": "manage-tasks/roles/yum/tasks/main.yml", "content": "# http://docs.ansible.com/ansible/latest/yum_module.html\n- name: install all required rpms\n yum:\n name: \"{{ item }}\"\n state: present\n with_items: \"{{ yums }}\" # loop 的一种常见写法:遍历数组\n when: # 条件判断,当“同时”满足以下所列条件时才会执行上述模块 yum 中定义的操作...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 322, "all_permissive": false }
ansible_role
c4pr1c3/AnsibleTutorial
e9e900c7b7b32cdcd01e1391d371e1d34c94ce02
6
pxe-boot/roles/pxe-masters
333
[ "no_license" ]
[ { "path": "pxe-boot/roles/pxe-masters/templates/ubuntu/bionic/ubuntu-installer/amd64/boot-screens/txt.cfg.j2", "content": "default install\nlabel install\n\tmenu label ^Install\n\tmenu default\n\tkernel ubuntu-installer/amd64/linux \n\tappend vga=788 netcfg/get_hostname={{ txt.cfg.netcfg.get_hostname }} net...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 4726, "all_permissive": false }
ansible_role
shahidshabir11349/.Net_DevOps_Pipelines_Project
aee39ec56cb9e3fde628f1d38bd1faafd6d9858b
1
Ansible/roles/win_command
333
[ "no_license" ]
[ { "path": "Ansible/roles/win_command/defaults/main.yml", "content": "---\n# defaults file for win_compress\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "Ansible/roles/win_command/vars/main.yml", "content": "---\n# vars file for win_compress...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 377, "all_permissive": false }
ansible_role
shahidshabir11349/.Net_DevOps_Pipelines_Project
aee39ec56cb9e3fde628f1d38bd1faafd6d9858b
1
Ansible/roles/win_filesync
333
[ "no_license" ]
[ { "path": "Ansible/roles/win_filesync/tasks/win_robocopy.yml", "content": "---\n- name: Windows File Sync\n win_robocopy:\n src: '{{source}}'\n dest: '{{destination}}'\n flags: '{{flags}}'\n...\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 120 }, { "path...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 430, "all_permissive": false }
ansible_role
shahidshabir11349/.Net_DevOps_Pipelines_Project
aee39ec56cb9e3fde628f1d38bd1faafd6d9858b
1
Ansible/roles/win_iis
333
[ "no_license" ]
[ { "path": "Ansible/roles/win_iis/handlers/main.yml", "content": "---\n# handlers file for win_iis_site\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "Ansible/roles/win_iis/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: ...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 1765, "all_permissive": false }
ansible_role
shahidshabir11349/.Net_DevOps_Pipelines_Project
aee39ec56cb9e3fde628f1d38bd1faafd6d9858b
1
Ansible/roles/win_service
333
[ "no_license" ]
[ { "path": "Ansible/roles/win_service/tasks/service_state.yml", "content": "---\n- name: Service state Admin Role\n win_service:\n name: '{{service_name}}'\n state: '{{state}}'\n tags:\n - state\n...\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 125 }, { ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 658, "all_permissive": false }
ansible_role
MrRuch/Ansible-eval
4b46717c8c7ef2308fc9086fcc9a1d4cc2a4b3c8
0
roles/wordpress_deploy
333
[ "permissive" ]
[ { "path": "roles/wordpress_deploy/tasks/setup_wordpress.yml", "content": "- name: Télécharger WordPress\n get_url:\n url: \"{{ wordpress_download_url }}\"\n dest: /tmp/latest.zip\n mode: \"0644\"\n\n- name: Décompresser WordPress\n unarchive:\n src: /tmp/latest.zip\n dest: /tmp\n remote_...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 10368, "all_permissive": true }
ansible_role
unbam/ansible-develop
b4387a7bd88968176249274a6a45f09c05e84840
0
roles/centos7
333
[ "no_license" ]
[ { "path": "roles/centos7/tasks/main.yml", "content": "- name: disabled selinux\n selinux: state=disabled\n\n- name: install command\n yum: name={{ packages }} state=present\n vars:\n packages:\n - net-tools\n - tree\n - zip\n - unzip\n", "license_type": "no_license", "detec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 196, "all_permissive": false }
ansible_role
unbam/ansible-develop
b4387a7bd88968176249274a6a45f09c05e84840
0
roles/firewall
333
[ "no_license" ]
[ { "path": "roles/firewall/tasks/main.yml", "content": "- name: start firewalld\n systemd:\n name: firewalld.service\n state: started\n daemon_reload: yes\n enabled: yes\n\n- name: add service http\n firewalld: service=http permanent=true state=enabled immediate=true\n\n- name: add service http...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 472, "all_permissive": false }
ansible_role
unbam/ansible-develop
b4387a7bd88968176249274a6a45f09c05e84840
0
roles/httpd
333
[ "no_license" ]
[ { "path": "roles/httpd/tasks/main.yml", "content": "- name: install httpd\n yum: name=httpd\n\n- name: install mod_ssl\n yum: name=mod_ssl\n\n- name: check autoindex.conf\n stat:\n path: /etc/httpd/conf.d/autoindex.conf\n register: check_autoindex\n\n- name: rename autoindex.conf\n command: mv /etc/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 665, "all_permissive": false }
ansible_role
unbam/ansible-develop
b4387a7bd88968176249274a6a45f09c05e84840
0
roles/mysql
333
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "- name: install mysql repository\n yum: name=https://dev.mysql.com/get/mysql80-community-release-el7-1.noarch.rpm state=present\n\n- name: install mysql\n yum: name=mysql-community-server state=present enablerepo=mysql80-community\n\n- name: backup my.cn...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 789, "all_permissive": false }
ansible_role
unbam/ansible-develop
b4387a7bd88968176249274a6a45f09c05e84840
0
roles/node
333
[ "no_license" ]
[ { "path": "roles/node/tasks/main.yml", "content": "- name: install node\n yum: name={{ packages }} state=present enablerepo=epel\n vars:\n packages:\n - nodejs\n - npm\n\n- name: install n\n npm: name=n global=yes\n\n- name: check version\n command: node -v\n changed_when: False\n registe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 366, "all_permissive": false }
ansible_role
unbam/ansible-develop
b4387a7bd88968176249274a6a45f09c05e84840
0
roles/php
333
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "- name: install php\n yum: name={{ packages }} state=present enablerepo=remi,remi-php72\n vars:\n packages:\n - php\n - php-common\n - php-cli\n - php-gd\n - php-mbstring\n - php-pdo\n - php-pdo_pgsql\n - php-mysq...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 693, "all_permissive": false }
ansible_role
unbam/ansible-develop
b4387a7bd88968176249274a6a45f09c05e84840
0
roles/repo
333
[ "no_license" ]
[ { "path": "roles/repo/tasks/main.yml", "content": "- name: install epel repository\n yum: name=https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm state=present\n\n- name: install remi repository\n yum: name=http://rpms.famillecollet.com/enterprise/remi-release-7.rpm state=present\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 248, "all_permissive": false }
ansible_role
tomoyaogura/raspi_setup
e5d814032cfb707787baae6e433c44d5682473a3
0
roles/common
336
[ "no_license" ]
[ { "path": "roles/common/tasks/vim.yml", "content": "# Install vim\n- name: Install vim \n apt: \n name: vim \n become: yes\n\n- name: Copy vimrc \n copy: \n src: \"../files/vimrc\" \n dest: \"/home/{{ ansible_user }}/.vimrc\"\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1324, "all_permissive": false }
ansible_role
tomoyaogura/raspi_setup
e5d814032cfb707787baae6e433c44d5682473a3
0
roles/git
336
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "###\n# Clones or pulls the repo from a public or private Git repository\n##\n- name: ensure Git is installed via the system package\n apt: \n name: git-core\n state: present\n update_cache: yes\n become: yes\n\n- name: create git key directory if ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1430, "all_permissive": false }
ansible_role
tomoyaogura/raspi_setup
e5d814032cfb707787baae6e433c44d5682473a3
0
roles/hostname
336
[ "no_license" ]
[ { "path": "roles/hostname/tasks/main.yml", "content": "---\n- name: Set the hostname on the node\n shell: hostname {{ hostname }}\n become: yes\n\n- name: Persist the hostname\n lineinfile:\n dest: /etc/hostname\n regexp: .*\n line: '{{ hostname }}'\n state: present\n become: yes\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 375, "all_permissive": false }
ansible_role
tomoyaogura/raspi_setup
e5d814032cfb707787baae6e433c44d5682473a3
0
roles/rf_devices
336
[ "no_license" ]
[ { "path": "roles/rf_devices/tasks/main.yml", "content": "##\n# Based off of https://www.samkear.com/hardware/control-power-outlets-wirelessly-raspberry-pi\n##\n- apt: update_cache=yes\n become: yes\n\n- name: Download WiringPi\n git:\n repo: git://git.drogon.net/wiringPi\n accept_hostkey: yes\n d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 709, "all_permissive": false }
ansible_role
Emojomaker/medicine
5089bb466a642d1a6b44587782e63ed3617c3c4b
0
installer/roles/backend
336
[ "no_license" ]
[ { "path": "installer/roles/backend/templates/medicine.service.j2", "content": "[Unit]\nDescription=medicine\nAfter=network.target\n\n[Service]\nType=simple\nWorkingDirectory=/home/{{ ansible_user }}\nExecStart=/home/{{ ansible_user }}/{{ venv_name }}/bin/gunicorn --bind {{ backend_ip }}:8000 api:app --log-f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3718, "all_permissive": false }
ansible_role
Emojomaker/medicine
5089bb466a642d1a6b44587782e63ed3617c3c4b
0
installer/roles/db
336
[ "no_license" ]
[ { "path": "installer/roles/db/templates/migrations.sql.j2", "content": "CREATE USER {{ app_db_user }} with password '{{ <PASSWORD> }}';\n\nGRANT ALL PRIVILEGES ON DATABASE medicine TO {{ app_db_user }};\n\nDROP TABLE IF EXISTS drugs;\n\nCREATE TABLE IF NOT EXISTS drugs (\n\tmedicine_id serial PRIMARY KEY,\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1988, "all_permissive": false }
ansible_role
Emojomaker/medicine
5089bb466a642d1a6b44587782e63ed3617c3c4b
0
installer/roles/provisioning
336
[ "no_license" ]
[ { "path": "installer/roles/provisioning/tasks/main.yml", "content": "- name: Configure hosts\n block:\n\n - name: remove hosts into hosts file\n lineinfile:\n path: /etc/hosts\n line: \"{{ backend_ip }} {{ backend_hostname }}\\n{{ database_ip }} {{ database_hostname }}\"\n stat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 690, "all_permissive": false }
ansible_role
ruralinnovation/carto
f88c97794332562b8e0e1fcded93fa5e2337f36d
0
roles/cartodb
336
[ "no_license" ]
[ { "path": "roles/cartodb/tasks/postgis.yml", "content": "- name: PostGIS | clone repo\n apt_repository:\n repo: ppa:cartodb/gis\n state: present\n become: true\n\n- name: PostGIS | Install PostGIS packages\n apt:\n name: \"{{ packages }}\"\n update_cache: yes\n vars:\n packages:\n - po...
{ "task_files": 11, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 13, "total_bytes": 6299, "all_permissive": false }
ansible_role
HendrikLouw/atheneum-api
687d9680823359852dfd9b47c087d6f0f7405e26
0
ansible/roles/mongodb
336
[ "no_license" ]
[ { "path": "ansible/roles/mongodb/tasks/main.yml", "content": "---\n- name: Install mongoDB\n apt: name=mongo state=present\n sudo: yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 71, "all_permissive": false }
ansible_role
ProfessionalTiger/TowerPlaybooks
f17c8445262f905b3898931ac40a27f9225d3477
0
roles/terraform
336
[ "no_license" ]
[ { "path": "roles/terraform/tasks/main.yml", "content": "---\n- name: plan\n terraform:\n project_path: '/usr/local/bin/'\n plan_file: 'tfplan'\n lock: true\n state: planned\n\n- name: apply\n terraform:\n project_path: '/usr/local/bin/'\n lock: true\n state: present\n\n- name: destroy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 322, "all_permissive": false }
ansible_role
marcelpfig/docker-swarm-setup
271646b00ed0003b28ea8d6f651cafd2fe9c2583
0
roles/docker-rhel
336
[ "no_license" ]
[ { "path": "roles/docker-rhel/handlers/main.yaml", "content": "- name: reload_firewalld\n ansible.builtin.service:\n name: firewalld\n state: reloaded\n\n- name: start_docker\n ansible.builtin.service:\n name: docker\n state: started\n enabled: yes", "license_type": "no_license", "de...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1003, "all_permissive": false }
ansible_role
marcelpfig/docker-swarm-setup
271646b00ed0003b28ea8d6f651cafd2fe9c2583
0
roles/swarm-worker-setup
336
[ "no_license" ]
[ { "path": "roles/swarm-worker-setup/tasks/main.yaml", "content": "- name: copy join file from host to remote\n ansible.builtin.copy:\n src: ./join/join.sh\n dest: /root/join.sh\n mode: '0700'\n\n- name: run join file on remote\n ansible.builtin.shell: /root/join.sh", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 203, "all_permissive": false }
ansible_role
yaroslav-tsuprak/AnsibleForNginx
748e3d2c4e4a995afd64940b018b8d875291e711
1
roles/nginx
336
[ "no_license" ]
[ { "path": "roles/nginx/tasks/vhosts.yml", "content": "---\n- name: Remove default nginx vhost config file\n file:\n path: \"{{ nginx_default_vhost_path }}\"\n state: absent\n when: nginx_remove_default_vhost\n notify: Restart Nginx\n\n- name: Add managed vhost config file\n template:\n src: \"v...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 12, "total_bytes": 5882, "all_permissive": false }
ansible_role
CiscoDevNet/data-center-development
543ec7d09fe5a41e1fec086524323333500811af
8
intersight/ansible-intersight/roles/intersight
336
[ "no_license" ]
[ { "path": "intersight/ansible-intersight/roles/intersight/tasks/main.yaml", "content": "---\n- name: List UCS Domains\n intersight_rest:\n key_id: \"{{ intersight_key_id }}\"\n secret_key: \"{{ intersight_secret_key }}\"\n path: /ucs-central/DomainProfiles\n method: GET\n register: ucs_domains...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 295, "all_permissive": false }
ansible_role
gdha/cfgmgmt-intro
f13e31c3de870ad662dfb8d40a4c5069d481abfd
0
vagrant/ansible/roles/ubuntu18
336
[ "no_license" ]
[ { "path": "vagrant/ansible/roles/ubuntu18/tasks/main.yml", "content": "---\n# tasks file for ubuntu18\n\n# Add various helpful configuration files\n- name: Install the hosts file\n copy: src=hosts dest=/etc/hosts mode=0644\n\n- include_tasks: create_users.yml\n", "license_type": "no_license", "dete...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1355, "all_permissive": false }
ansible_role
jeremiehuchet/wifi-hotspot-playbook
fe88600656f1d38c7415d493b2cb7cfd4c60b5a5
0
roles/dnsmasq
336
[ "no_license" ]
[ { "path": "roles/dnsmasq/tasks/main.yml", "content": "---\n- name: install dnsmasq\n package: name=dnsmasq state=present\n\n- name: enable dnsmasq service\n service: name=dnsmasq enabled=yes\n\n- name: configure dnsmasq\n template: src=dnsmasq.conf dest=/etc/dnsmasq.conf\n notify: restart dnsmasq\n\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 414, "all_permissive": false }
ansible_role
jeremiehuchet/wifi-hotspot-playbook
fe88600656f1d38c7415d493b2cb7cfd4c60b5a5
0
roles/hotspot
336
[ "no_license" ]
[ { "path": "roles/hotspot/handlers/main.yml", "content": "---\n- name: restart wifi hotspot\n service: name=hostapd state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "roles/hotspot/tasks/main.yml", "content": "---\n- name: instal...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 572, "all_permissive": false }
ansible_role
jeremiehuchet/wifi-hotspot-playbook
fe88600656f1d38c7415d493b2cb7cfd4c60b5a5
0
roles/munin
336
[ "no_license" ]
[ { "path": "roles/munin/handlers/main.yml", "content": "---\n- name: restart munin\n service: name=munin-node state=restarted\n\n- name: restart lighttpd\n service: name=lighttpd state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 136 }, { "path": "r...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1059, "all_permissive": false }
ansible_role
jeremiehuchet/wifi-hotspot-playbook
fe88600656f1d38c7415d493b2cb7cfd4c60b5a5
0
roles/p54usb_dongle
336
[ "no_license" ]
[ { "path": "roles/p54usb_dongle/handlers/main.yml", "content": "---\n- name: reload p54usb module\n modprobe: name=p54usb state=present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "roles/p54usb_dongle/tasks/main.yml", "content": "---\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 589, "all_permissive": false }
ansible_role
jeremiehuchet/wifi-hotspot-playbook
fe88600656f1d38c7415d493b2cb7cfd4c60b5a5
0
roles/router
336
[ "no_license" ]
[ { "path": "roles/router/tasks/main.yml", "content": "---\n- name: enable ip forwarding\n sysctl: name=net.ipv4.ip_forward value=1 state=present\n\n- name: install shorewall packages\n package: name=shorewall state=present\n\n- name: enable shorewall service\n service: name=shorewall enabled=yes\n\n- name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 893, "all_permissive": false }
ansible_role
queensaver/photobox
476c1fb5cea78da63f371632e5c3d5ec63c53517
0
ansible/roles/read-only
336
[ "no_license" ]
[ { "path": "ansible/roles/read-only/tasks/main.yml", "content": "# instructions from: https://medium.com/swlh/make-your-raspberry-pi-file-system-read-only-raspbian-buster-c558694de79\n- name: add tmpfs to fstab\n blockinfile:\n path: /etc/fstab\n block: |\n tmpfs /tmp tmpfs no...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2023, "all_permissive": false }
ansible_role
mickengland/ansible-apache
ff2b53499900721ebc327cd1438ea62fd4e18070
0
roles/achaussier.apache
336
[ "no_license" ]
[ { "path": "roles/achaussier.apache/tests/test.yml", "content": "---\n\n# Tests for ntp role\n\n- hosts: localhost\n remote_user: root\n roles:\n - ansible-role-apache\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 101 }, { "path": "roles/achaussier.apache/t...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1170, "all_permissive": false }
ansible_role
abhishekr700/ansible
9e764bb2ed5419aef650948b6ed5ce4ae1c8807c
0
roles/debian-install-docker
340
[ "no_license" ]
[ { "path": "roles/debian-install-docker/defaults/main.yml", "content": "---\n# Default user to add to docker group\ndocker_user: \"{{ ansible_user }}\"\n\n# Default Docker daemon configuration\ndocker_daemon_config:\n log-driver: \"json-file\"\n log-opts:\n max-size: \"100m\"\n max-file: \"3\"\n def...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 7431, "all_permissive": false }
ansible_role
abhishekr700/ansible
9e764bb2ed5419aef650948b6ed5ce4ae1c8807c
0
roles/debian-shell-utilities
340
[ "no_license" ]
[ { "path": "roles/debian-shell-utilities/README.md", "content": "# debian-shell-utilities\n\nThis role installs various shell utilities on Debian-based systems.\n\n## Example Playbook\n\n```yaml\n- hosts: servers\n roles:\n - debian-shell-utilities\n```\n\n## License\n\nMIT\n\n## Author Information\n\n<N...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1464, "all_permissive": false }
ansible_role
abhishekr700/ansible
9e764bb2ed5419aef650948b6ed5ce4ae1c8807c
0
roles/git-setup
340
[ "no_license" ]
[ { "path": "roles/git-setup/tasks/main.yml", "content": "---\n- name: Git setup user.email\n community.general.git_config:\n name: user.email\n scope: global\n value: <EMAIL>\n\n- name: Git setup user.name\n community.general.git_config:\n name: user.name\n scope: global\n value: <NAME>\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 430, "all_permissive": false }
ansible_role
SyntaXScrib3/AWS-Infra-Terraform-Ansible
e93ac7f10373353ed34a06437fc8764e7d704076
0
ansible/roles/common
340
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "- name: Update apt cache\n apt:\n update_cache: yes\n force_apt_get: yes\n\n- name: Install common packages\n apt:\n name:\n - git\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_byt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 158, "all_permissive": false }
ansible_role
SyntaXScrib3/AWS-Infra-Terraform-Ansible
e93ac7f10373353ed34a06437fc8764e7d704076
0
ansible/roles/flaskapp
340
[ "no_license" ]
[ { "path": "ansible/roles/flaskapp/templates/flask.env.j2", "content": "APP_HOST={{ app_host }}\nAPP_PORT={{ app_port }}\nREDIS_HOST={{ redis_host }}\nREDIS_PORT={{ redis_port }}\nAPP_DEBUG={{ app_debug }}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 }, { "pa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1301, "all_permissive": false }
ansible_role
SyntaXScrib3/AWS-Infra-Terraform-Ansible
e93ac7f10373353ed34a06437fc8764e7d704076
0
ansible/roles/nginx
340
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "- name: Install nginx\n apt:\n name: nginx\n state: present\n\n- name: Configure Nginx for Flask\n template:\n src: flaskapp.nginx.conf.j2\n dest: /etc/nginx/sites-available/flaskapp.conf\n\n- name: Enable the new Flask site\n file:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 480, "all_permissive": false }
ansible_role
SyntaXScrib3/AWS-Infra-Terraform-Ansible
e93ac7f10373353ed34a06437fc8764e7d704076
0
ansible/roles/redis
340
[ "no_license" ]
[ { "path": "ansible/roles/redis/tasks/main.yml", "content": "- name: Install Redis\n apt:\n name: redis-server\n state: present\n\n- name: Enable and start Redis\n service:\n name: redis-server\n state: started\n enabled: yes\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
occrp-attic/moldova-meta-search
760ebf15315e7d057aa0f27bbb285a78d8a6f380
1
ansible/roles/app
340
[ "no_license" ]
[ { "path": "ansible/roles/app/tasks/main.yml", "content": "---\r\n# application tasks to be customized and to run after the main provision\r\n\r\n- name: Install dependencies (npm)\r\n shell: cd /vagrant/client && npm install\r\n\r\n- name: Install dependencies (bower)\r\n shell: cd /vagrant/client && bowe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 981, "all_permissive": false }
ansible_role
occrp-attic/moldova-meta-search
760ebf15315e7d057aa0f27bbb285a78d8a6f380
1
ansible/roles/golang
340
[ "no_license" ]
[ { "path": "ansible/roles/golang/tasks/main.yml", "content": "---\r\n\r\n- name: Add ppa Repository\r\n apt_repository: repo=ppa:ubuntu-lxc/lxd-stable\r\n\r\n- name: Update apt\r\n apt: update_cache=yes\r\n\r\n- name: Install golang\r\n apt: pkg=golang state=latest\r\n\r\n", "license_type": "no_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 192, "all_permissive": false }
ansible_role
occrp-attic/moldova-meta-search
760ebf15315e7d057aa0f27bbb285a78d8a6f380
1
ansible/roles/nodejs
340
[ "no_license" ]
[ { "path": "ansible/roles/nodejs/tasks/setup-Debian.yml", "content": "---\r\n- name: Make sure nodesource_distribution is set correctly.\r\n assert:\r\n that: nodesource_distribution in [ \"0.10\", \"0.12\", \"4.x\" ]\r\n\r\n- name: Add Nodesource apt key.\r\n apt_key:\r\n url: https://deb.nodesource...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1267, "all_permissive": false }
ansible_role
Otus-DevOps-2020-05/IsieIam_infra
fa0d10b76de3ad2c5934da8128077c25cf58c6b9
1
ansible/roles/app
340
[ "no_license" ]
[ { "path": "ansible/roles/app/tasks/ruby.yml", "content": "---\n- name: Install ruby and rubygems and git\n apt:\n package: ['ruby-full', 'ruby-bundler', 'build-essential', 'git']\n update_cache: true\n tags: ruby\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 15...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 244, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/app
340
[ "no_license" ]
[ { "path": "roles/app/handlers/main.yml", "content": "# Reload Daemon\r\n- name: Reload Daemon\r\n systemd: \r\n daemon_reload: yes\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "roles/app/meta/main.yml", "content": "---\r\ndependencie...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 455, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/docker-compose
340
[ "no_license" ]
[ { "path": "roles/docker-compose/vars/main.yml", "content": "docker_compose_version: 1.25.3", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "roles/docker-compose/tasks/main.yml", "content": "---\r\n- name: Install Docker Compose\r\n get_url:\r\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 272, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/golang
340
[ "no_license" ]
[ { "path": "roles/golang/tasks/main.yaml", "content": "---\n- name: Set Directory Names\n set_fact:\n parent_directory:\n - \"golibs\"\n - \"goprojects\"\n sub_directories:\n - \"bin\"\n - \"src\"\n - \"pkg\"\n\n- name: Create Directories\n file:\n path: \"{{ ansible_env.PWD }}/{{it...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 871, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/grafana
340
[ "no_license" ]
[ { "path": "roles/grafana/tasks/main.yml", "content": "- name: Install Grafana Key\r\n apt_key: \r\n url: https://packages.grafana.com/gpg.key \r\n state: present\r\n\r\n- name: Add Grafana Source Repo\r\n apt_repository: \r\n repo: deb https://packages.grafana.com/oss/deb stable main\r\n state: pr...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1156, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/jenkins
340
[ "no_license" ]
[ { "path": "roles/jenkins/vars/main.yml", "content": "---\r\njenkins_admin: \r\n username: samuel\r\n password: <PASSWORD>\r\n\r\njenkins_plugins:\r\n - ace-editor\r\n - analysis-core\r\n - ansible\r\n - ansicolor\r\n - ant\r\n - aws-credentials\r\n - blueocean\r\n - blueocean-autofavorite\r\n - b...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 6523, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/kubernetes
340
[ "no_license" ]
[ { "path": "roles/kubernetes/tasks/main.yaml", "content": "---\n- name: Install Kuberenetes Key\n apt_key: \n url: https://packages.cloud.google.com/apt/doc/apt-key.gpg \n state: present\n\n- name: Add Kuberenetes Source Repo\n apt_repository: \n repo: deb http://apt.kubernetes.io/ kubernetes-{{a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 861, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/minikube
340
[ "no_license" ]
[ { "path": "roles/minikube/tasks/main.yaml", "content": "- name: Install Minikube\n unarchive:\n src: https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64\n dest: /usr/local/bin/minikube\n remote_src: yes \n state: present", "license_type": "no_license", "detecte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 198, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/mongo
340
[ "no_license" ]
[ { "path": "roles/mongo/handlers/main.yaml", "content": "---\n# Start Services\n- name: Stop Mongo\n service: \n name: mongod \n state: stopped \n\n# Start Services\n- name: Start Mongo\n service: \n name: mongod \n state: started \n enabled: yes\n\n# Restart Services\n- name: Restart Mong...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 732, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/nginx
340
[ "no_license" ]
[ { "path": "roles/nginx/templates/jenkins.conf.j2", "content": "server {\r\n listen 80;\r\n server_name {{ansible_host}};\r\n return 301 https://$server_name$request_uri;\r\n}\r\n\r\nserver {\r\n listen 443 ssl;\r\n\r\n server_name {{ansible_host}};\r\n ssl_certificate /etc/nginx/ssl/{{ ansible_host }}...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 2971, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/node-exporter
340
[ "no_license" ]
[ { "path": "roles/node-exporter/vars/main.yml", "content": "---\r\nRELEASE: 0.18.1", "license_type": "no_license", "detected_licenses": [], "size_bytes": 20 }, { "path": "roles/node-exporter/handlers/main.yml", "content": "# Stop Services\r\n- name: Stop Node Exporter\r\n service: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2313, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/packer
340
[ "no_license" ]
[ { "path": "roles/packer/tasks/main.yaml", "content": "---\n- name: Install Packer\n unarchive:\n src: https://releases.hashicorp.com/packer/1.4.4/packer_1.4.4_linux_amd64.zip\n dest: /usr/local/bin\n remote_src: yes \n state: present\n\n ", "license_type": "no_license", "detected_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 193, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/prometheus
340
[ "no_license" ]
[ { "path": "roles/prometheus/vars/main.yml", "content": "---\r\nRELEASE: 2.17.1", "license_type": "no_license", "detected_licenses": [], "size_bytes": 20 }, { "path": "roles/prometheus/handlers/main.yml", "content": "# Stop Services\r\n- name: Stop Prometheus\r\n service: \r\n na...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2931, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/ruby
340
[ "no_license" ]
[ { "path": "roles/ruby/tasks/main.yml", "content": "---\r\n- name: Install Package and its Dependencies\r\n apt: \r\n name: ['ruby2.3', 'build-essential'] \r\n state: present\r\n force_apt_get: yes\r\n update_cache: yes\r\n\r\n- name: Install Gem Required Packages\r\n gem: \r\n name: serverspec\r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 264, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/terraform
340
[ "no_license" ]
[ { "path": "roles/terraform/tasks/main.yaml", "content": "---\n- name: Install Terraform\n unarchive:\n src: https://releases.hashicorp.com/terraform/0.11.14/terraform_0.11.14_linux_amd64.zip\n dest: /usr/local/bin\n remote_src: yes \n state: present\n\n ", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 206, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/utils
340
[ "no_license" ]
[ { "path": "roles/utils/tasks/main.yml", "content": "---\n- name: Install Requisite Packages\n apt:\n name: ['apt-transport-https', 'ca-certificates', 'curl', 'git', 'software-properties-common']\n state: present\n update_cache: yes\n\n- name: Add User to Existing Groups\n user:\n name: \"{{ans...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 343, "all_permissive": false }
ansible_role
knoxknot/ansible-roles
8b28dffe1241090ff3549618618df166b16bc8a6
2
roles/vagrant
340
[ "no_license" ]
[ { "path": "roles/vagrant/vars/main.yaml", "content": "vagrant_version: 2.2.6", "license_type": "no_license", "detected_licenses": [], "size_bytes": 22 }, { "path": "roles/vagrant/tasks/main.yaml", "content": "---\n- name: Uninstall Existing Vagrant\n apt:\n name: vagrant==1.8.5\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 310, "all_permissive": false }
ansible_role
shan5a6/wordpress-mariadb
55c122456c45d983afa0d7fc33dbfbb9a7d19056
0
amazon-ami-2/roles/app
340
[ "no_license" ]
[ { "path": "amazon-ami-2/roles/app/handlers/main.yaml", "content": "---\n- name: apache restart\n systemd:\n state: restarted\n name: httpd\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 75 }, { "path": "amazon-ami-2/roles/app/tasks/main.yaml", "conten...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 741, "all_permissive": false }
ansible_role
shan5a6/wordpress-mariadb
55c122456c45d983afa0d7fc33dbfbb9a7d19056
0
amazon-ami-2/roles/db
340
[ "no_license" ]
[ { "path": "amazon-ami-2/roles/db/tasks/main.yaml", "content": "---\n- name: Install the latest version of mariadb\n yum: name=\"{{item}}\" state=present\n loop:\n - MySQL-python\n - mariadb-server\n\n- name: enable mariadb service\n systemd:\n enabled: yes\n name: mariadb\n\n- name: start mar...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 536, "all_permissive": false }
ansible_role
shan5a6/wordpress-mariadb
55c122456c45d983afa0d7fc33dbfbb9a7d19056
0
centos/roles/app
340
[ "no_license" ]
[ { "path": "centos/roles/app/tasks/main.yaml", "content": "---\n- name: installing remi repository\n yum:\n name: https://rpms.remirepo.net/enterprise/remi-release-7.rpm\n state: present\n\n- name: Disable selinux\n selinux:\n state: disabled \n\n- name: enable latest php version and install ph...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1082, "all_permissive": false }
ansible_role
DASturm/ansible
e78fd0cbd1b109ba4eeb38c928c958d541dabdd2
0
roles/common
340
[ "no_license" ]
[ { "path": "roles/common/tasks/aptupdate.yaml", "content": "---\n- hosts: all\n gather_facts: yes\n tasks:\n - name: Adding Apt Repositories\n apt_repository:\n repo: \"{{ item.id }}\"\n state: present\n with_items: \"{{ hostvars[inventory_hostname]['aptrepos'] }}\"\n\n - name...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2197, "all_permissive": false }
ansible_role
Ashfaqzaheer/ansible-project-repo
471b428b5dbeeae3064caf0ba0a458d7bd4bcb0c
0
roles/apache_web
340
[ "no_license" ]
[ { "path": "roles/apache_web/templates/index.html.j2", "content": "<!DOCTYPE html>\n<html>\n<head>\n <title>{{ site_title }}</title>\n</head>\n<body>\n <h1>Welcome to {{ site_title }}</h1>\n <p>{{ description }}</p>\n <p>Environment: <strong>{{ env_type }}</strong></p>\n <p>Hostname: <strong>{...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1128, "all_permissive": false }
ansible_role
Ashfaqzaheer/ansible-project-repo
471b428b5dbeeae3064caf0ba0a458d7bd4bcb0c
0
roles/aws_creds
340
[ "no_license" ]
[ { "path": "roles/aws_creds/tasks/main.yml", "content": "---\n# tasks file for roles/aws_creds\n- name: Ensure .aws directory exists\n file:\n path: \"/home/{{ ansible_user }}/.aws\"\n state: directory\n mode: '0700'\n\n- name: Create AWS credentials file\n copy:\n dest: \"/home/{{ ansible_user...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 1146, "all_permissive": false }
ansible_role
Ashfaqzaheer/ansible-project-repo
471b428b5dbeeae3064caf0ba0a458d7bd4bcb0c
0
roles/linux_users
340
[ "no_license" ]
[ { "path": "roles/linux_users/tasks/main.yml", "content": "- name: Ensure users exist\n user:\n name: \"{{ item.name }}\"\n shell: \"{{ item.shell }}\"\n state: present\n create_home: yes\n loop: \"{{ users }}\"\n\n- name: Create .ssh directory\n file:\n path: \"/home/{{ item.name }}/.ssh\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 808, "all_permissive": false }
ansible_role
Ashfaqzaheer/ansible-project-repo
471b428b5dbeeae3064caf0ba0a458d7bd4bcb0c
0
roles/patching
340
[ "no_license" ]
[ { "path": "roles/patching/patching/README.md", "content": "## Role: patching\n\nThis role applies system updates and safely manages Apache restarts.\n\n### Features\n- Stops Apache before updates\n- Uses `wait_for` to simulate reboot\n- Starts Apache after\n- Fully tagged\n\n### Run with tag:\n```bash\nansi...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 886, "all_permissive": false }
ansible_role
ssteve-dev/easydetectionlab
66f389e58864367fad2c257036812afc8325e7d3
0
DETECTIONLAB/DetectionLab/ESXi/ansible/roles/exchange
335
[ "no_license" ]
[ { "path": "DETECTIONLAB/DetectionLab/ESXi/ansible/roles/exchange/tasks/main.yml", "content": "---\n\n- name: Hostname -> EXCHANGE\n win_hostname:\n name: EXCHANGE\n register: res\n\n- name: Reboot\n win_reboot:\n when: res.reboot_required\n\n- name: Set HostOnly IP Address\n win_shell: \"If (-not(ge...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3735, "all_permissive": false }