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
Raju-Talukder/build-linux
b1507e3b3d844caed3ba10df833535cae8b79684
0
roles/general_config
7,891
[ "no_license" ]
[ { "path": "roles/general_config/files/tmux.conf", "content": "# Initial setup\nset -g default-terminal xterm-256color\nset -g status-keys vi\n\n# use C-j and C-f for the prefix.\nset-option -g prefix C-j\nset-option -g prefix2 C-f\nunbind-key C-j\nbind-key C-j send-prefix\nset -g base-index 1\n\n# Use Alt-a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4575, "all_permissive": false }
ansible_role
Raju-Talukder/build-linux
b1507e3b3d844caed3ba10df833535cae8b79684
0
roles/github-tools
7,891
[ "no_license" ]
[ { "path": "roles/github-tools/tasks/main.yml", "content": "# Downloading tools from github\n\n- name: Fetch the latest release data from GitHub\n uri:\n url: https://api.github.com/repos/ropnop/kerbrute/releases/latest\n return_content: yes\n headers:\n Accept: application/vnd.github.v3+json\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1804, "all_permissive": false }
ansible_role
Raju-Talukder/build-linux
b1507e3b3d844caed3ba10df833535cae8b79684
0
roles/tools
7,891
[ "no_license" ]
[ { "path": "roles/tools/tasks/main.yml", "content": "- name: Add Sublime Text GPG key\n become: yes\n apt_key:\n url: https://download.sublimetext.com/sublimehq-pub.gpg\n state: present\n\n- name: Add Sublime Text apt repository\n become: yes\n apt_repository:\n repo: deb https://download.sublim...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 799, "all_permissive": false }
ansible_role
eli-bi/ansible-lab
5664208ea0234f11991eab071ab06ba5cad6b53d
0
4-roles/roles/flask_web
7,891
[ "no_license" ]
[ { "path": "4-roles/roles/flask_web/tasks/main.yml", "content": "- name: Install python flusk dependencies\n pip:\n name: \"{{item}}\"\n state: present\n with_items:\n - flask\n - flask-mysql\n\n- name: Copy web-server code\n copy: src=app.py dest=/opt/app.py \n\n- name: Start web-server\n sh...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 289, "all_permissive": false }
ansible_role
eli-bi/ansible-lab
5664208ea0234f11991eab071ab06ba5cad6b53d
0
5-asynchronous/roles/deploy_db
7,891
[ "no_license" ]
[ { "path": "5-asynchronous/roles/deploy_db/tasks/main.yml", "content": "- name: Copy deploy_db_scripts.py to target machine\n copy: src=./scripts/deploy_db_scripts.py dest=/opt/deploy_db_scripts.py\n\n- name: Run dummy deploy DB scripts\n shell: python /opt/deploy_db_scripts.py\n", "license_type": "no_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 205, "all_permissive": false }
ansible_role
eli-bi/ansible-lab
5664208ea0234f11991eab071ab06ba5cad6b53d
0
5-asynchronous/roles/deploy_db_web
7,891
[ "no_license" ]
[ { "path": "5-asynchronous/roles/deploy_db_web/tasks/main.yml", "content": "- name: Copy deploy_web_script.py to target machine\n copy: src=./scripts/deploy_web_script.py dest=/opt/deploy_web_script.py\n\n# 12*2=24s\n- name: Run dummy deploy WEB scripts\n shell: python /opt/deploy_web_script.py\n async: 3...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1031, "all_permissive": false }
ansible_role
eli-bi/ansible-lab
5664208ea0234f11991eab071ab06ba5cad6b53d
0
5-asynchronous/roles/deploy_web
7,891
[ "no_license" ]
[ { "path": "5-asynchronous/roles/deploy_web/tasks/main.yml", "content": "- name: Copy deploy_web_script.py to target machine\n copy: src=./scripts/deploy_web_script.py dest=/opt/deploy_web_script.py\n\n- name: Run dummy deploy WEB scripts\n shell: python /opt/deploy_web_script.py\n async: 360\n poll: 0\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 505, "all_permissive": false }
ansible_role
eli-bi/ansible-lab
5664208ea0234f11991eab071ab06ba5cad6b53d
0
5-asynchronous/roles/python
7,891
[ "no_license" ]
[ { "path": "5-asynchronous/roles/python/tasks/main.yml", "content": "- name: Install PYTHON dependency\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - python\n - python-setuptools\n - python-dev\n - build-essential\n - python-pip\n - python-mysqldb\n async: 360\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1077, "all_permissive": false }
ansible_role
sky-joker/ansible-vmware-workshops
bebb224b6f5b2e95ff0c35ab50c5d76809c15ebe
2
provisioner/roles/local_provision
7,891
[ "no_license" ]
[ { "path": "provisioner/roles/local_provision/tasks/vcenter_simulator_provision.yml", "content": "---\n- name: install python pyvmomi module.\n pip:\n name: pyvmomi\n\n- name: clone from ansible repository.\n git:\n repo: \"https://github.com/ansible/ansible.git\"\n dest: /tmp/ansible\n clone: ...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 4068, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
packer/ansible/roles/apt-updates
7,891
[ "no_license" ]
[ { "path": "packer/ansible/roles/apt-updates/README.md", "content": "## References\n* https://docs.ansible.com/ansible/latest/modules/apt_module.html\n* https://www.redpill-linpro.com/sysadvent/2017/12/24/ansible-system-updates.html\n", "license_type": "no_license", "detected_licenses": [], "size...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1040, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
packer/ansible/roles/cadvisor
7,891
[ "no_license" ]
[ { "path": "packer/ansible/roles/cadvisor/tasks/main.yml", "content": "- name: cadvisor service unit file\n copy:\n src: etc/systemd/system/cadvisor.service\n dest: /etc/systemd/system/cadvisor.service\n mode: 0644\n owner: root\n group: root\n\n- name: cadvisor service env file\n template: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1573, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
packer/ansible/roles/custom-apt-repo
7,891
[ "no_license" ]
[ { "path": "packer/ansible/roles/custom-apt-repo/tasks/main.yml", "content": "---\n- name: install required packages\n apt:\n name: python3-configobj\n\n- name: copy s3 apt-transport script\n copy: src=apt-transport-s3.py dest=/usr/lib/apt/methods/s3 mode=0755 owner=root group=root\n\n- name: install s3...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 26095, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
packer/ansible/roles/docker-ce
7,891
[ "no_license" ]
[ { "path": "packer/ansible/roles/docker-ce/README.md", "content": "# Docker Engine Role\nInstalls the latest \"stable\" docker-ce.\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 61 }, { "path": "packer/ansible/roles/docker-ce/defaults/main.yml", "content": "-...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1198, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
packer/ansible/roles/ebs-mappings
7,891
[ "no_license" ]
[ { "path": "packer/ansible/roles/ebs-mappings/files/ebs-nvme-mapping.sh", "content": "#!/bin/bash\n\nset -eu -o pipefail\n\nPATH=\"${PATH}:/usr/sbin\"\n\nfor blkdev in $(nvme list | awk '/^\\/dev/ { print $1 }'); do # /dev/nvme*n*\n # Mapping info from disk headers\n mapping=$(nvme id-ctrl --raw-binar...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1339, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
packer/ansible/roles/ephemeral-zfs
7,891
[ "no_license" ]
[ { "path": "packer/ansible/roles/ephemeral-zfs/files/usr/local/bin/init-ephemeral-disks.sh", "content": "#!/bin/bash\n\nset -eu -o pipefail\n\npool_name=\"ephemeral\"\nmount_dir=\"/mnt/${pool_name}\"\n\nmkdir -p \"$mount_dir\"\n\n#\n# Configures NVMe instance stores as one ZFS pool.\n#\n\n# Determine NVMe de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1971, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
packer/ansible/roles/motd
7,891
[ "no_license" ]
[ { "path": "packer/ansible/roles/motd/tasks/main.yml", "content": "# https://eklitzke.org/disabling-ubuntu-motd-spam\n- name: disable ubuntu motd-news\n lineinfile:\n dest: /etc/default/motd-news\n state: present\n regexp: '^ENABLED='\n line: 'ENABLED=0'\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 294, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
packer/ansible/roles/node_exporter
7,891
[ "no_license" ]
[ { "path": "packer/ansible/roles/node_exporter/README.md", "content": "## Purpose\nThis Prmometheus node_exporter ansible role installs the a\nhost agent as a systemd service in the base AMI but does not run enable/start it.\n\n## Usage\nFrom cloud-init (EC2 user-data):\n```bash\nsystemctl daemon-reload\nsys...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1567, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
packer/ansible/roles/packages
7,891
[ "no_license" ]
[ { "path": "packer/ansible/roles/packages/tasks/main.yml", "content": "- name: install apt packages\n apt:\n pkg:\n - atop\n - bridge-utils\n - build-essential\n - dstat\n - fio\n - glances\n - iftop\n - ioping\n - iotop\n - inxi\n - ipcalc\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 939, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
packer/ansible/roles/scripts
7,891
[ "no_license" ]
[ { "path": "packer/ansible/roles/scripts/tasks/main.yml", "content": "- name: install ec2-metadata tool\n copy:\n src: files/usr/local/bin/ec2-metadata.sh\n dest: /usr/local/bin/ec2-metadata\n mode: 0755\n\n- name: install hyperthread controls\n copy:\n src: files/usr/local/bin/{{ item }}.sh\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 15129, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
terraform/jenkins/ansible/roles/jenkins-agent
7,891
[ "no_license" ]
[ { "path": "terraform/jenkins/ansible/roles/jenkins-agent/tasks/main.yml", "content": "- name: update agent image tag\n lineinfile:\n path: '{{ environment_file }}'\n regexp: '^TAG=.*'\n line: TAG={{ jenkins_agent_tag }}\n notify:\n - restart jenkins agent service\n", "license_type": "no_li...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 346, "all_permissive": false }
ansible_role
cicdenv/cicdenv
5b72fd9ef000bf07c2052471b59edaa91af18778
8
terraform/jenkins/ansible/roles/jenkins-server
7,891
[ "no_license" ]
[ { "path": "terraform/jenkins/ansible/roles/jenkins-server/handlers/main.yml", "content": "- name: restart jenkins server service\n service: name=jenkins-server state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 86 }, { "path": "terraform/jenkins/ans...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 353, "all_permissive": false }
ansible_role
morningprojectsamurai/yokohama-deep-learning
62cb88a7d58f58c25d74f5b142857adfc1ddfcf4
1
ansible/roles/deeplearning
7,891
[ "no_license" ]
[ { "path": "ansible/roles/deeplearning/tasks/main.yml", "content": "---\n\n# This file is part of \"Lecture at MPS Yokohama\"\n#\n# \"Lecture at MPS Yokohama\"\n# is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Softwa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2262, "all_permissive": false }
ansible_role
swaroop0202/ansible-practice
f05f583dc0325731907d4b6764cea3d12b66581d
0
expense-ansible-roles/roles/backend
7,891
[ "no_license" ]
[ { "path": "expense-ansible-roles/roles/backend/tasks/main.yaml", "content": "- name: disabling the nodejs\n ansible.builtin.command: dnf module disable nodejs -y\n\n- name: enabling nodejs\n ansible.builtin.command: dnf module enable nodejs:20 -y\n\n- name: installing nodejs and mysql\n dnf:\n name:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1380, "all_permissive": false }
ansible_role
swaroop0202/ansible-practice
f05f583dc0325731907d4b6764cea3d12b66581d
0
expense-ansible-roles/roles/db
7,891
[ "no_license" ]
[ { "path": "expense-ansible-roles/roles/db/vars/main.yaml", "content": "db_host: 172.31.82.214\ndb_user: root\ndb_password: <PASSWORD>", "license_type": "no_license", "detected_licenses": [], "size_bytes": 60 }, { "path": "expense-ansible-roles/roles/db/tasks/main.yaml", "content": "-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 921, "all_permissive": false }
ansible_role
swaroop0202/ansible-practice
f05f583dc0325731907d4b6764cea3d12b66581d
0
expense-ansible-roles/roles/frontend
7,891
[ "no_license" ]
[ { "path": "expense-ansible-roles/roles/frontend/templates/expense.conf.j2", "content": "proxy_http_version 1.1;\n\nlocation /api/ { proxy_pass 172.31.95.6:8080/; }\n\nlocation /health {\n stub_status on;\n access_log off;\n}", "license_type": "no_license", "detected_licenses": [], "size_bytes"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 686, "all_permissive": false }
ansible_role
gojira3070/aws_ec2_ansible
fa8f42867cee5256ab98be0b00931e90e3c86b5d
0
roles/AWS
7,891
[ "no_license" ]
[ { "path": "roles/AWS/tasks/main.yml", "content": "- name: \"install de package\"\n apt:\n name: \"{{ item }}\"\n update_cache: yes\n state: present\n with_items:\n - python3-boto\n - python3-boto3\n - python3\n\n- name: create key pair using key_material obtained using 'file' lookup plugin\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 718, "all_permissive": false }
ansible_role
turnbros/opnsense-operator
1ae6cdc125e67a0feb0f3a3c28f97cbcb8840d60
4
roles/clusternodealias
7,891
[ "no_license" ]
[ { "path": "roles/clusternodealias/handlers/main.yml", "content": "---\n# handlers file for ClusterNodeAlias\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 41 }, { "path": "roles/clusternodealias/tasks/main.yml", "content": "---\n\n- name: Fetch the secret us...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1531, "all_permissive": false }
ansible_role
turnbros/opnsense-operator
1ae6cdc125e67a0feb0f3a3c28f97cbcb8840d60
4
roles/firewallalias
7,891
[ "no_license" ]
[ { "path": "roles/firewallalias/defaults/main.yml", "content": "---\n# defaults file for FirewallAlias\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/firewallalias/vars/main.yml", "content": "---\n# vars file for FirewallAlias\n", "...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1129, "all_permissive": false }
ansible_role
turnbros/opnsense-operator
1ae6cdc125e67a0feb0f3a3c28f97cbcb8840d60
4
roles/firewallfilter
7,891
[ "no_license" ]
[ { "path": "roles/firewallfilter/handlers/main.yml", "content": "---\n# handlers file for FirewallFilter\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "roles/firewallfilter/defaults/main.yml", "content": "---\n# defaults file for FirewallFilt...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1633, "all_permissive": false }
ansible_role
vermasunilk792/cmat-project-sl
57828876fb452f780e2cdb9a704ece6a6ee66bb6
0
roles/php
7,891
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n# Tasks file for PHP Role\n- name: Install php extensions\n apt:\n pkg: ['php-gd', 'php-ssh2']\n state: present\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 133 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 133, "all_permissive": false }
ansible_role
nethanga/ansible-role-service-status-linux
6235a29084567b2ae15c2141acc574df55b1c6e8
0
roles/ansible-role-airtel-service-linux
7,891
[ "no_license" ]
[ { "path": "roles/ansible-role-airtel-service-linux/vars/main.yml", "content": "---\n# vars file for ansible-role-airtel-service-linux", "license_type": "no_license", "detected_licenses": [], "size_bytes": 53 }, { "path": "roles/ansible-role-airtel-service-linux/tests/test.yml", "cont...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 4551, "all_permissive": false }
ansible_role
alegorosito/tenpo
99839beefe1190b2eef41deecc46124efdb1fb4d
0
ansible/roles/api
7,891
[ "no_license" ]
[ { "path": "ansible/roles/api/tasks/main.yml", "content": "---\n - name: Creates directory\n file:\n path: /home/{{ VM_USER_ADMIN }}/api\n state: directory\n \n - name: Clone Repo\n git:\n repo: https://github.com/alegorosito/tenpo.git\n dest: /home/{{ VM_USER_ADMIN }}/api/\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1019, "all_permissive": false }
ansible_role
alegorosito/tenpo
99839beefe1190b2eef41deecc46124efdb1fb4d
0
ansible/roles/install
7,891
[ "no_license" ]
[ { "path": "ansible/roles/install/tasks/main.yml", "content": "---\n - name: Install aptitude using apt\n apt: name=aptitude state=latest update_cache=yes force_apt_get=yes\n\n - name: Install dependencies\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 790, "all_permissive": false }
ansible_role
alegorosito/tenpo
99839beefe1190b2eef41deecc46124efdb1fb4d
0
ansible/roles/postgres
7,891
[ "no_license" ]
[ { "path": "ansible/roles/postgres/tasks/main.yml", "content": "---\n - copy:\n src: ../../../pg/docker-compose.yml\n dest: /home/{{ VM_USER_ADMIN }}/docker-compose.yml\n owner: root\n group: root\n mode: 0644\n \n - replace:\n path: /home/{{ VM_USER_ADMIN }}/docker-compose.ym...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1325, "all_permissive": false }
ansible_role
chrischou0321/PracticeAnsible
3dd166744dfcb979b4b7379b915203bd6af9a88b
0
roles/pip
7,891
[ "no_license" ]
[ { "path": "roles/pip/tasks/main.yml", "content": "---\n- name: Check if pip is already installed\n command: pip --version\n ignore_errors: true\n # no change when any change like error happen\n changed_when: false\n # assign value in pip_is_installed to register\n register: pip_is_installed\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 410, "all_permissive": false }
ansible_role
ochiba/inspec-example
1f071aed5770d2bd455f93929890a9a62775e1d8
0
roles/common
7,894
[ "permissive" ]
[ { "path": "roles/common/test/integration/default/README.md", "content": "# Common baseline\n\nCommon baseline for the servers in this project.\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 68 }, { "path": "roles/common/test/integration/d...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 902, "all_permissive": true }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/cleanup/roles/clean-logs
7,894
[ "no_license" ]
[ { "path": "ansible/cleanup/roles/clean-logs/tasks/main.yml", "content": "---\n#\n# Tasks to delete rotated log files and truncate live log files\n#\n\n- name: Delete log files\n shell: rm -f {{item}}\n with_items:\n - /var/www/miq/vmdb/log/*.log-*\n - /var/www/miq/vmdb/log/apache/*.log-*\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 369, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/cleanup/roles/clean-logs-restart
7,894
[ "no_license" ]
[ { "path": "ansible/cleanup/roles/clean-logs-restart/tasks/main.yml", "content": "---\n#\n# Tasks to delete all log files\n#\n# Involves restarting CFME services\n#\n\n- name: Stop services\n service: name={{item}} state=stopped\n with_items:\n - evmserverd\n - miqtop\n - miqvmstat\n - httpd\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 488, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/cleanup/roles/reset-all
7,894
[ "no_license" ]
[ { "path": "ansible/cleanup/roles/reset-all/tasks/main.yml", "content": "---\n#\n# Tasks to Reset Cloud Forms VMDB and to delete all log files\n#\n# Note: deleting all log files involves restarting CFME services\n#\n\n- name: Stop services\n service: name={{item}} state=stopped\n with_items:\n - evmserv...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1135, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/cleanup/roles/reset-database
7,894
[ "no_license" ]
[ { "path": "ansible/cleanup/roles/reset-database/tasks/main.yml", "content": "---\n#\n# Tasks to Reset Cloud Forms VMDB\n#\n\n- name: Stop services\n service: name={{item}} state=stopped\n with_items:\n - evmserverd\n - collectd\n\n- name: Drop FS caches\n shell: sync; sync; echo 3 > /proc/sys/vm/dr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 817, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/cfme-statsd
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/cfme-statsd/tasks/main.yml", "content": "---\n#\n# Install/Configure Statsd and gem statsd on CFME\n#\n# Tested on 5.6.0.9\n\n- name: Check for epel\n shell: rpm -qa | grep -q epel-release\n ignore_errors: true\n register: epel_installed\n\n- name: Install epel repo (rh...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1287, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/chronyd
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/chronyd/tasks/main.yml", "content": "---\n#\n# Setup chronyd service\n#\n\n- name: Ensure chrony is installed\n yum: name=chrony state=present\n\n- name: Setup chrony config file\n template:\n src: chronyd.conf.j2\n dest: /etc/chrony.conf\n\n- name: Restart chronyd...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 277, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/collectd
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/collectd/handlers/main.yml", "content": "---\n#\n# Handlers for collectd\n#\n\n- name: restart httpd\n service: name=httpd state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 }, { "path": "ansible/configure/roles...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2451, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/config-interface
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/config-interface/templates/ifcfg.j2", "content": "# Installed by cfme-performance\nNAME=\"{{item.name}}\"\nONBOOT=yes\nNETBOOT=yes\nIPV6INIT=yes\nBOOTPROTO=static\nTYPE=Ethernet\nDEFROUTE=yes\nIPV4_FAILURE_FATAL=no\nIPV6_AUTOCONF=yes\nIPV6_DEFROUTE=yes\nIPV6_FAILURE_FATAL=...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 839, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/database-import
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/database-import/tasks/main.yml", "content": "---\n#\n# Import a database\n#\n\n# On 5.4 appliances / has 9.8GiB total space, typically 7.5GiB available\n- name: Get database dump (5.4.x appliances)\n get_url:\n url: \"{{db_dumps[appliances[inventory_hostname].dbdump]}}...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1963, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/external-vmdb
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/external-vmdb/tasks/main.yml", "content": "---\n#\n# Setup external vmdb on cfme-worker appliance\n#\n\n- name: Install dev v2_key\n copy:\n src=v2_key.dev\n dest=/var/www/miq/vmdb/certs/v2_key\n mode=0400\n\n- name: Setup vmdb external to appliance\n command: a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 529, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/gem-statsd-ruby
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/gem-statsd-ruby/tasks/main.yml", "content": "---\n#\n# This role installs statsd-ruby gem on an appliance\n#\n\n- name: Install statsd-ruby gem\n shell: \"cd /var/wwww/miq/vmdb/; gem install statsd-ruby\"\n\n- name: Add statsd-ruby to /var/www/miq/vmdb/Gemfile\n lineinfi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 320, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/hostname
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/hostname/tasks/main.yml", "content": "---\n#\n# Change hostname on appliance\n#\n\n- name: Set hostname\n hostname: name=\"{{inventory_hostname}}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 103 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 103, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/init-vmdb
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/init-vmdb/tasks/main.yml", "content": "---\n#\n# Setup vmdb on cfme-vmdb appliance\n#\n\n- name: Install dev v2_key\n copy:\n src=v2_key.dev\n dest=/var/www/miq/vmdb/certs/v2_key\n mode=0400\n\n#\n# Sets up vmdb on vda. Usually this is a bad idea as /var only ha...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1106, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/ntpd
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/ntpd/tasks/main.yml", "content": "---\n#\n# Setup ntpd service\n#\n\n- name: Set up ntp config file\n template:\n src: ntp.conf.j2\n dest: /etc/ntp.conf\n\n- name: Start ntpd\n service: name={{item}} state=started enabled=true\n with_items:\n - ntpd\n", "li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 215, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/proctitle-patch
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/proctitle-patch/handlers/main.yml", "content": "---\n#\n# Handlers for proctitle-patch\n#\n\n- name: restart evmserverd\n service:\n name: evmserverd\n state: restarted\n when: proctitle_restart\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2003, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/repos
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/repos/templates/cfme-performance.repo.j2", "content": "# Installed by cfme-performance\n\n{% for key in repos %}\n{% if (ansible_os_family == \"RedHat\" and ansible_distribution_version|int == 6) and '6' in key %}\n[{{key}}]\nname={{key}}\nbaseurl={{repos[key].baseurl}}\ng...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 931, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/sshkey
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/sshkey/tasks/main.yml", "content": "---\n#\n# Task to deploy current user's ssh key into an appliances authorized_key file\n#\n\n- name: Setup | authorized key upload\n authorized_key: user=root key=\"{{ lookup('file', '~/.ssh/id_rsa.pub') }}\"\n", "license_type": "no...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 202, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/statsd-miqqueue-patch
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/statsd-miqqueue-patch/templates/runner.rb.patch.j2", "content": "--- runner.rb.orig\t2016-06-03 18:41:23.529490549 -0400\n+++ runner.rb\t2016-06-03 18:40:32.662486573 -0400\n@@ -58,7 +58,15 @@\n\n begin\n msg.update_attributes!(:state => MiqQueue::STATE_DEQUE...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 4735, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/statsd-uiworker-patch
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/statsd-uiworker-patch/handlers/main.yml", "content": "---\n#\n# Handler for statsd-uiworker-patch\n#\n\n- name: restart evmserverd for statsd-uiworker-patch\n service:\n name: evmserverd\n state: restarted\n", "license_type": "no_license", "detected_licenses...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2307, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/configure/roles/version
7,894
[ "no_license" ]
[ { "path": "ansible/configure/roles/version/tasks/main.yml", "content": "---\n#\n# Role to determine version and set a fact with the CFME version\n#\n\n- name: Get version\n shell: cat /var/www/miq/vmdb/VERSION\n register: version_output\n changed_when: false\n\n- name: Set fact for CFME version 5.4.x\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1339, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/create/roles/create-cfme-appliance
7,894
[ "no_license" ]
[ { "path": "ansible/create/roles/create-cfme-appliance/scripts/create-cfme-appliance.py", "content": "#! /usr/bin/env python\n\nfrom ovirtsdk.api import API\nfrom ovirtsdk.xml import params\nimport ast\nimport sys\nimport time\n\nappliance = ast.literal_eval(sys.argv[1])\nrhevm_hostname = sys.argv[2]\nuser =...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4235, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/create/roles/get-certificates
7,894
[ "no_license" ]
[ { "path": "ansible/create/roles/get-certificates/tasks/main.yml", "content": "---\n#\n# Tasks to obtain the ca.crts from the rhevm hosts\n#\n\n\n- name: make /tmp/rhevm_applaince_certs\n shell: mkdir /tmp/rhevm_appliance_certs\n args:\n creates: /tmp/rhevm_appliance_certs/\n\n\n- name: get ca.crt for r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 421, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/install/roles/collectd-monitorhost
7,894
[ "no_license" ]
[ { "path": "ansible/install/roles/collectd-monitorhost/tasks/main.yml", "content": "---\n#\n# Install/Configure collectd on the monitorhost\n#\n\n- name: Check for epel\n shell: rpm -qa | grep -q epel-release\n ignore_errors: true\n register: epel_installed\n\n- name: Install epel repo\n command: rpm -iv...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 962, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/install/roles/grafana
7,894
[ "no_license" ]
[ { "path": "ansible/install/roles/grafana/templates/data_source.json.j2", "content": "{\n \"name\":\"graphite\",\n \"type\":\"graphite\",\n \"url\":\"http://{{carbon_host}}:{{graphite_port}}/\",\n \"access\":\"proxy\",\n \"isDefault\":true,\n \"basicAuth\":true,\n \"basicAuthUser\":\"{{graphite_userna...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2717, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/install/roles/grafana-dashboards
7,894
[ "no_license" ]
[ { "path": "ansible/install/roles/grafana-dashboards/tasks/main.yml", "content": "---\n#\n# Upload Grafana Dashboards\n#\n# Below set of tasks is for when grafana_host is set in vars and thus the tasks occur from localhost (curl to grafana_host)\n#\n\n- name: Remove existing dashboards (static)\n command: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3755, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/install/roles/graphite
7,894
[ "no_license" ]
[ { "path": "ansible/install/roles/graphite/templates/setup-graphite-db.exp.j2", "content": "#!/usr/bin/expect\n#\n# non-interactive setup of the initial graphite.db sqlite3 database\n#\n# if run manually, the following is the expected output.\n# Would you like to create one now? (yes/no): yes\n# Username (le...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3870, "all_permissive": false }
ansible_role
akrzos/cfme-performance
0542cd8a183bc67b5b3b4727a5b25e8b5635f766
3
ansible/install/roles/upload-template
7,894
[ "no_license" ]
[ { "path": "ansible/install/roles/upload-template/templates/rhevmshellrc.j2", "content": "[cli]\nautoconnect = True\nautopage = True\n\n[ovirt-shell]\nusername = {{rhevm_username}}\npassword = {{<PASSWORD>}}\ntimeout = None\nextended_prompt = False\nurl = https://localhost:443/api\ninsecure = True\nfilter = ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1531, "all_permissive": false }
ansible_role
travellingtechie/vSphere_lab_automation
ab90db11b90e0018a1d458d922b2cf9780da356b
0
roles/ubuntu_configure
7,894
[ "no_license" ]
[ { "path": "roles/ubuntu_configure/tasks/ansible_role.yaml", "content": "---\n\n## Ansible role\nhttps://docs.ansible.com/ansible/2.9/modules/apt_module.html\n- name: Install Ubuntu Packages\n become: yes\n apt:\n name: \"{{ ansible_packages }}\"\n state: present\n update_cache: yes\n cache_val...
{ "task_files": 10, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 14, "total_bytes": 3710, "all_permissive": false }
ansible_role
travellingtechie/vSphere_lab_automation
ab90db11b90e0018a1d458d922b2cf9780da356b
0
roles/vsphere_deploy_VM
7,894
[ "no_license" ]
[ { "path": "roles/vsphere_deploy_VM/tasks/vcenter_deploy_vm_from_ova.yaml", "content": "---\n# https://docs.ansible.com/ansible/latest/collections/community/vmware/vcenter_folder_module.html\n#- name: Create a VM folder on given datacenter\n delegate_to: localhost\n# community.vmware.vcenter_folder:\n# ...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 9950, "all_permissive": false }
ansible_role
jacobblock/jacobblock.com
4a3fc5fb8e71ef5dc375bb817fa4fc545f9a0851
0
roles/nginx
7,894
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx\n yum: name=nginx state=present\n\n#- name: Delete unused configs\n# command: rm -rf /etc/nginx/conf.d/*\n\n- name: Copy nginx configuration for default\n template: src=default.conf dest=/etc/nginx/conf.d/default.conf\n notif...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 405, "all_permissive": false }
ansible_role
jacobblock/jacobblock.com
4a3fc5fb8e71ef5dc375bb817fa4fc545f9a0851
0
roles/wordpress
7,894
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "---\n- name: Download Wordpress\n get_url: url=http://wordpress.org/latest.tar.gz dest=/tmp/latest.tar.gz\n\n- name: Create directory\n command: mkdir -p {{wp_dir}}\n\n- name: Extract archive\n command: /bin/tar xvf /tmp/latest.tar.gz -C {{ wp_dir }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1210, "all_permissive": false }
ansible_role
jacobblock/jacobblock.com
4a3fc5fb8e71ef5dc375bb817fa4fc545f9a0851
0
roles/wp-cli
7,894
[ "no_license" ]
[ { "path": "roles/wp-cli/tasks/main.yml", "content": "---\n- name: Install wp-cpi\n shell: curl -kL http://wp-cli.org/installer.sh | bash\n executable=/bin/bash\n creates=/root/.wp-cli/bin/wp\n\n- name: Symlink\n shell: ln -s /root/.wp-cli/bin/wp /usr/bin/wp creates=/usr/bin/wp\n", "lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 236, "all_permissive": false }
ansible_role
chbie/ansible-playground
2c82fedb23bf7df448a1af352281d3af42a9e778
1
master/ansible/roles/common
7,894
[ "no_license" ]
[ { "path": "master/ansible/roles/common/tasks/main.yml", "content": "---\n# This role is a example for installing basically tool\n\n- name: install console tools\n apt: pkg={{ item }} state=latest\n become: true\n with_items:\n - sudo\n - bash-completion\n - unzip\n - tar\n - dnsutils\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 872, "all_permissive": false }
ansible_role
apple4102001/dhcp_ansible
11f8bb0f968490fe4f5b91bf4171e83cfda4ed2a
0
roles/dhcp
7,894
[ "no_license" ]
[ { "path": "roles/dhcp/tasks/main.yml", "content": "---\n# tasks file for dhcp\n- name: download dhcp\n yum:\n name: dhcp-server\n state: present\n- name: configure interface\n template: \n src: /etc/ansible/templates/dhcpd.sysconfig\n dest: /etc/sysconfig/dhcpd\n- name: configure static ip add...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1194, "all_permissive": false }
ansible_role
lakiboy/devenv
3a60f4e3e8d0222c305536617d9f0fddbc427551
5
roles/colima
7,894
[ "no_license" ]
[ { "path": "roles/colima/defaults/main.yml", "content": "---\n\ncolima_cpu: 4 # Cores\ncolima_memory: 4 # Gb\ncolima_disk: 64 # Gb\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 }, { "path": "roles/colima/tasks/main.yml", "content": "---\n\n- name: Lis...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 850, "all_permissive": false }
ansible_role
lakiboy/devenv
3a60f4e3e8d0222c305536617d9f0fddbc427551
5
roles/dotfiles
7,894
[ "no_license" ]
[ { "path": "roles/dotfiles/tasks/main.yml", "content": "---\n\n- name: Copy dotfiles in place.\n ansible.builtin.copy:\n src: \"{{ item }}\"\n dest: \"{{ ansible_user_dir }}/{{ item }}\"\n mode: \"0644\"\n loop:\n - .editorconfig\n - .vimrc\n", "license_type": "no_license", "detected...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 871, "all_permissive": false }
ansible_role
lakiboy/devenv
3a60f4e3e8d0222c305536617d9f0fddbc427551
5
roles/fish
7,894
[ "no_license" ]
[ { "path": "roles/fish/defaults/main.yml", "content": "---\n\nfish_user: \"{{ ansible_user_id }}\"\nfish_config_file: \"{{ ansible_user_dir }}/.config/fish/config.fish\"\nfish_exports:\n GPG_TTY: \"(tty)\"\n LANG: \"en_US.UTF-8\"\n LC_ALL: \"en_US.UTF-8\"\n", "license_type": "no_license", "detecte...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1411, "all_permissive": false }
ansible_role
lakiboy/devenv
3a60f4e3e8d0222c305536617d9f0fddbc427551
5
roles/git
7,894
[ "no_license" ]
[ { "path": "roles/git/templates/.gitconfig", "content": "[user]\n name = {{ git_user_name | mandatory }}\n email = {{ git_user_email | mandatory }}\n\n[color]\n ui = auto\n\n[alias]\n ci = commit\n co = checkout\n aa = add --all\n st = status -s\n lo = log --oneline\n\n[core]\n exc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1235, "all_permissive": false }
ansible_role
s-devops-i3/tools-automation
99abec392d329eeb8349a5279bbddc9e9bdd4791
0
roles/vault
7,894
[ "no_license" ]
[ { "path": "roles/vault/tasks/main.yml", "content": "- name: set up yum repo\n ansible.builtin.shell: sudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo\n\n- name: install vault\n ansible.builtin.dnf:\n name: vault\n state: installed\n\n- name: start vault\n an...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 332, "all_permissive": false }
ansible_role
vauchok/ansible
356211b5609b9123e034aa0a8497d1214620eefe
0
roles/java
7,894
[ "no_license" ]
[ { "path": "roles/java/tasks/main.yml", "content": "- name: Install Java\n yum:\n name: java-{{java_version}}.0-openjdk\n state: present\n become: True\n become_method: sudo\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 126 }, { "path": "roles/java/vars...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 144, "all_permissive": false }
ansible_role
vauchok/ansible
356211b5609b9123e034aa0a8497d1214620eefe
0
roles/java_test
7,894
[ "no_license" ]
[ { "path": "roles/java_test/tasks/main.yml", "content": "- name: Checks that java installed and running properly\n command: java -version\n register: command_result\n changed_when: False\n failed_when: \"'openjdk version' not in command_result.stderr\"\n\n- name: Sucsesfull instalation java\n debug:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 330, "all_permissive": false }
ansible_role
vauchok/ansible
356211b5609b9123e034aa0a8497d1214620eefe
0
roles/nginx
7,894
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "- name: install nginx\n yum:\n name: nginx\n state: present\n become: True\n become_method: sudo\n\n- name: Install nginx.conf\n template:\n src: nginx.conf\n dest: /etc/nginx/nginx.conf\n notify:\n - restart nginx\n become: True\n beco...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 541, "all_permissive": false }
ansible_role
vauchok/ansible
356211b5609b9123e034aa0a8497d1214620eefe
0
roles/nginx_test
7,894
[ "no_license" ]
[ { "path": "roles/nginx_test/tasks/main.yml", "content": "- name: Checks that nginx installed and running properly\n command: systemctl status nginx\n register: command_result\n changed_when: False\n failed_when: \"'active (running)' not in command_result.stdout\"\n\n- name: Sucsesfull instalation nginx\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 342, "all_permissive": false }
ansible_role
vauchok/ansible
356211b5609b9123e034aa0a8497d1214620eefe
0
roles/tomcat
7,894
[ "no_license" ]
[ { "path": "roles/tomcat/handlers/main.yml", "content": "- name: restart tomcat \n systemd:\n daemon-reload: yes\n name: tomcat\n state: restarted\n become: True\n become_method: sudo\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 133 }, { "path": "ro...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2072, "all_permissive": false }
ansible_role
vauchok/ansible
356211b5609b9123e034aa0a8497d1214620eefe
0
roles/tomcat_test
7,894
[ "no_license" ]
[ { "path": "roles/tomcat_test/tasks/main.yml", "content": "- name: Checks that tomcat installed and running properly\n command: systemctl status tomcat\n register: command_result\n changed_when: False\n failed_when: \"'active (running)' not in command_result.stdout\"\n\n- name: Sucsesfull instalation \n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 340, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/aws
7,894
[ "no_license" ]
[ { "path": "roles/aws/tasks/main.yml", "content": "---\n- name: set up aws config\n shell: mkdir -p $HOME/.aws && cp ./dotfiles/aws/config $HOME/.aws/config\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 105, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/cask
7,894
[ "no_license" ]
[ { "path": "roles/cask/tasks/main.yml", "content": "---\n- name: install packages via brew cask\n homebrew_cask:\n name: \"{{packages}}\"\n state: present\n when: ansible_os_family == \"Darwin\"\n vars:\n packages:\n - virtualbox\n - vagrant\n - vagrant-manager\n - docker-edge...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 625, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/gcp
7,894
[ "no_license" ]
[ { "path": "roles/gcp/tasks/main.yml", "content": "---\n- name: install google-cloud-sdk (gcloud, kubectl, etc...)\n homebrew_cask:\n name: google-cloud-sdk\n state: present\n update_homebrew: yes\n\n- name: update gcloud components\n shell: gcloud components update\n", "license_type": "no_lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 219, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/go
7,894
[ "no_license" ]
[ { "path": "roles/go/tasks/main.yml", "content": "---\n- homebrew_tap:\n name: alecthomas/homebrew-tap\n state: present\n when: ansible_os_family == \"Darwin\"\n\n- name: install go and tools\n homebrew:\n name: \"{{packages}}\"\n state: present\n update_homebrew: yes\n when: ansible_os_fam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 326, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/python
7,894
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "---\n- name: install pip packages\n pip:\n name: \"{{packages}}\"\n executable: pip3\n vars:\n packages:\n - virtualenv\n - protobuf\n\n- name: setup .direnvrc\n shell: cp ./dotfiles/.direnvrc $HOME/.direnvrc\n", "license_type": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 218, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/rust
7,894
[ "no_license" ]
[ { "path": "roles/rust/tasks/main.yml", "content": "---\n- name: download rust installer\n get_url:\n url: https://sh.rustup.rs\n dest: /tmp/rustup.sh\n\n- name: install rust\n shell: sh /tmp/rustup.sh -y\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 154 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 154, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/taps
7,894
[ "no_license" ]
[ { "path": "roles/taps/tasks/main.yml", "content": "- homebrew_tap:\n name: \"{{taps}}\"\n state: present\n when: ansible_os_family == \"Darwin\"\n vars:\n taps:\n - sanemat/font\n - mackerelio/mackerel-agent\n - wata727/tflint\n - aws/tap\n - sachaos/todoist\n", "lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 230, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/terminal
7,894
[ "no_license" ]
[ { "path": "roles/terminal/tasks/fzf.yml", "content": "---\n- name: install fzf configurations\n shell: /usr/local/opt/fzf/install --all --no-fish --64\n args:\n creates:\n\n- name: update custom fzf commands\n shell: cp ./dotfiles/.fzf.commands.zsh $HOME/.fzf.commands.zsh\n", "license_type": "no_l...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1792, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/utils
7,894
[ "no_license" ]
[ { "path": "roles/utils/tasks/homebrew.yml", "content": "---\n- name: install utils via homebrew\n homebrew:\n name: \"{{packages}}\"\n state: present\n update_homebrew: yes\n when: ansible_os_family == \"Darwin\"\n vars:\n packages:\n - git\n - fzf\n - fd\n - neovim\n ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2348, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/vagrant
7,894
[ "no_license" ]
[ { "path": "roles/vagrant/tasks/main.yml", "content": "---\n- name: list installed Vagrant plugins\n shell: \"vagrant plugin list | awk '{ print $1 }'\"\n changed_when: false\n register: vagrant_plugin_list\n\n- name: install Vagrant plugins\n shell: \"vagrant plugin install {{item}}\"\n loop:\n - sa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 433, "all_permissive": false }
ansible_role
doi-t/.macbook-provisioning
53cf10e30936dfcfe76de4739d59261b14efca5c
1
roles/vim
7,894
[ "no_license" ]
[ { "path": "roles/vim/tasks/main.yml", "content": "---\n- name: Install dein\n shell: curl -sL https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh | sh -s $HOME/.config/nvim/dein\n args:\n creates: $HOME/.config/nvim/dein\n\n- name: install pynvim replated pip packages\n pip:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 678, "all_permissive": false }
ansible_role
selmano/Winter2019-team1-
8453026c4f5817710a611c0f9e47789b4b91a789
0
roles/Dns_clients
7,894
[ "no_license" ]
[ { "path": "roles/Dns_clients/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - Dns_clients", "license_type": "no_license", "detected_licenses": [], "size_bytes": 69 }, { "path": "roles/Dns_clients/handlers/main.yml", "content": "---\n# handler...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 785, "all_permissive": false }
ansible_role
selmano/Winter2019-team1-
8453026c4f5817710a611c0f9e47789b4b91a789
0
roles/FTP_server
7,894
[ "no_license" ]
[ { "path": "roles/FTP_server/tasks/main.yml", "content": "# vsftpd/tasks/main.yml\n\n- name: Install packages\n yum:\n pkg: \"{{ item }}\"\n state: present\n with_items:\n - vsftpd\n\n- name: Allow FTP service through firewall\n firewalld: service=ftp permanent=true state=enabled\n notify: resta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1842, "all_permissive": false }
ansible_role
selmano/Winter2019-team1-
8453026c4f5817710a611c0f9e47789b4b91a789
0
roles/MailServer
7,894
[ "no_license" ]
[ { "path": "roles/MailServer/vars/main.yml", "content": "---\n# vars file for MailServer", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "roles/MailServer/templates/etc_hosts.j2", "content": "127.0.0.1 localhost localhost.localdomain localhost4...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2011, "all_permissive": false }
ansible_role
selmano/Winter2019-team1-
8453026c4f5817710a611c0f9e47789b4b91a789
0
roles/NFS_client
7,894
[ "no_license" ]
[ { "path": "roles/NFS_client/meta/main.yml", "content": "\n---\n# Role dependencies\n\n#galaxy_info:\n#role_name: nfs_client\n#author: your name\n#description: Manage nfs_client\n#company: your company\n#license: GPLv3 or EUPL\n#min_ansible_version: 2.7\n#platforms:\n#-name: EL\n#versions:\n#-6\n#-7\n#-name:...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1983, "all_permissive": false }
ansible_role
selmano/Winter2019-team1-
8453026c4f5817710a611c0f9e47789b4b91a789
0
roles/NFS_server
7,894
[ "no_license" ]
[ { "path": "roles/NFS_server/vars/main.yml", "content": "---\n# vars file for NFS_server", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "roles/NFS_server/handlers/main.yml", "content": "---\n# handlers file for NFS_server", "license_type": "...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1146, "all_permissive": false }
ansible_role
selmano/Winter2019-team1-
8453026c4f5817710a611c0f9e47789b4b91a789
0
roles/Ntp_Clients
7,894
[ "no_license" ]
[ { "path": "roles/Ntp_Clients/handlers/main.yml", "content": "---\n# handlers file for Ntp_Clients", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/Ntp_Clients/vars/main.yml", "content": "---\n# vars file for Ntp_Clients", "license_type...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 464, "all_permissive": false }
ansible_role
selmano/Winter2019-team1-
8453026c4f5817710a611c0f9e47789b4b91a789
0
roles/apache_servers6
7,894
[ "no_license" ]
[ { "path": "roles/apache_servers6/vars/main.yml", "content": "---\n# vars file for apache_servers", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "roles/apache_servers6/tasks/main.yml", "content": "---\n# tasks file for apache_servers\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 690, "all_permissive": false }
ansible_role
selmano/Winter2019-team1-
8453026c4f5817710a611c0f9e47789b4b91a789
0
roles/database6
7,894
[ "no_license" ]
[ { "path": "roles/database6/tasks/main.yml", "content": "---\n# tasks file for database6\n - name: ensure apache is at the latest version\n yum: \n name: ['httpd', 'mysql', 'php-mysql', 'mysql-server', 'phpMyAdmin', 'epel-release', 'libselinux-python'] \n state: latest\n - name: phpMyAdmin config\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 353, "all_permissive": false }