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
rdarbha/cldemo-openstack-rdo
9c5cca4811032d4e54a9c36bf75824ce9f0f9463
0
roles/quagga-roh
7,682
[ "no_license" ]
[ { "path": "roles/quagga-roh/templates/Quagga.conf.j2", "content": "{% set intvars = interfaces[ansible_hostname] -%}\n!\n{% for neighbor in intvars.neighbors %}\ninterface {{neighbor}}\n no ipv6 nd suppress-ra\n ipv6 nd ra-interval 3\n!\n{% endfor %}\nrouter bgp {{ intvars.asn }}\n bgp router-id {{ intvars...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2036, "all_permissive": false }
ansible_role
rdarbha/cldemo-openstack-rdo
9c5cca4811032d4e54a9c36bf75824ce9f0f9463
0
roles/routing-workaround
7,682
[ "no_license" ]
[ { "path": "roles/routing-workaround/tasks/main.yml", "content": "\n- name: Add static route to fix missing default\n shell: sudo ip route add default via 192.168.200.254\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 104 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 104, "all_permissive": false }
ansible_role
Tiamat59/autoconfig_arch
abe678fd1fd226f93f4a881b97dbd23ef215abd5
0
roles/aur_packages
7,682
[ "no_license" ]
[ { "path": "roles/aur_packages/tasks/main.yml", "content": "---\n# tasks file for aur_packages\n- name: Install AUR packages\n kewlfft.aur.aur:\n use: yay\n name: \"{{ item }}\"\n state: latest\n loop: \"{{ aur_packages }}\"\n when: ansible_os_family == 'Archlinux'\n", "license_type": "no_lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 206, "all_permissive": false }
ansible_role
Tiamat59/autoconfig_arch
abe678fd1fd226f93f4a881b97dbd23ef215abd5
0
roles/dotfiles
7,682
[ "no_license" ]
[ { "path": "roles/dotfiles/tasks/main.yml", "content": "---\n# - name: load ssh key\n# shell: eval `ssh-agent -s`\n\n# - name: load ssh key\n# shell: \"ssh-add {{ ansible_user_dir }}/.ssh/{{ github_key_name }}\"\n\n- name: dotfiles\n ansible.builtin.git: \n repo: \"{{ github_address }}/dotfiles.git\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 351, "all_permissive": false }
ansible_role
Tiamat59/autoconfig_arch
abe678fd1fd226f93f4a881b97dbd23ef215abd5
0
roles/neovim
7,682
[ "no_license" ]
[ { "path": "roles/neovim/tasks/main.yml", "content": "---\n# tasks file for neovim\n- name: Install neovim\n become: true\n ansible.builtin.package:\n name:\n - neovim\n state: latest\n\n- name: Clone a repo\n ansible.builtin.git:\n repo: \"{{ github_address }}/nvim_config.git\"\n dest: \"{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 366, "all_permissive": false }
ansible_role
Tiamat59/autoconfig_arch
abe678fd1fd226f93f4a881b97dbd23ef215abd5
0
roles/ssh_key
7,682
[ "no_license" ]
[ { "path": "roles/ssh_key/tasks/main.yml", "content": "---\n# tasks file for ssh_key\n- name: generate ssh key for personal github\n ansible.builtin.user:\n name: \"{{ ansible_env['USER'] }}\"\n generate_ssh_key: yes\n ssh_key_type: rsa\n ssh_key_bits: 4096\n ssh_key_file: \".ssh/{{ github_ke...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 644, "all_permissive": false }
ansible_role
Tiamat59/autoconfig_arch
abe678fd1fd226f93f4a881b97dbd23ef215abd5
0
roles/stow
7,682
[ "no_license" ]
[ { "path": "roles/stow/tasks/main.yml", "content": "---\n# tasks file for stow\n- name: test_zsh_symlink\n ansible.builtin.stat:\n path: \"{{ ansible_user_dir }}/.zshrc\"\n register: zshrc_symlink\n\n# Backup seulement si .zshrc existe et qu'il est un fichier\n- name: backup_old_zshrc\n ansible.builtin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 823, "all_permissive": false }
ansible_role
Tiamat59/autoconfig_arch
abe678fd1fd226f93f4a881b97dbd23ef215abd5
0
roles/utils
7,682
[ "no_license" ]
[ { "path": "roles/utils/tasks/main.yml", "content": "---\n# tasks file for utils\n- name: Update list\n community.general.pacman:\n update_cache: yes\n become: true\n when: ansible_os_family == 'Archlinux'\n\n- name: Upgrade packages\n community.general.pacman:\n upgrade: yes\n become: true\n whe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 617, "all_permissive": false }
ansible_role
Tiamat59/autoconfig_arch
abe678fd1fd226f93f4a881b97dbd23ef215abd5
0
roles/yay
7,682
[ "no_license" ]
[ { "path": "roles/yay/tasks/main.yml", "content": "---\n# tasks file for yay\n- name: Clone a repo yay\n ansible.builtin.git:\n repo: \"https://aur.archlinux.org/yay.git\"\n dest: \"/tmp/yay\"\n when: ansible_os_family == 'Archlinux'\n\n- name: Install yay\n ansible.builtin.shell: |\n cd /tmp/yay...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 313, "all_permissive": false }
ansible_role
Tiamat59/autoconfig_arch
abe678fd1fd226f93f4a881b97dbd23ef215abd5
0
roles/zsh
7,682
[ "no_license" ]
[ { "path": "roles/zsh/tasks/main.yml", "content": "---\n# tasks file for zsh\n- name: Install zsh\n become: true\n ansible.builtin.package:\n name:\n - zsh\n state: latest\n register: zsh\n\n- name: Active zsh\n become: true\n ansible.builtin.command: \"chsh -s /usr/bin/zsh {{ ansible_env['USER...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 930, "all_permissive": false }
ansible_role
mjeffin/jusfocus-django-cookiecutter
8acbd36274a4bc7f76e2508bf8d5b43e3a4babc7
0
gitlab-deploy/roles/celery
7,682
[ "no_license" ]
[ { "path": "gitlab-deploy/roles/celery/tests/test.yml", "content": "\n---\n- hosts: localhost\n remote_user: root\n roles:\n - setuprungunicorn\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 77 }, { "path": "gitlab-deploy/roles/celery/tasks/setup_superviso...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 13, "total_bytes": 7830, "all_permissive": false }
ansible_role
mjeffin/jusfocus-django-cookiecutter
8acbd36274a4bc7f76e2508bf8d5b43e3a4babc7
0
gitlab-deploy/roles/setuprungunicorn
7,682
[ "no_license" ]
[ { "path": "gitlab-deploy/roles/setuprungunicorn/handlers/main.yml", "content": "\n---\n# handlers file for setuprungunicorn\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 43 }, { "path": "gitlab-deploy/roles/setuprungunicorn/templates/systemd_service.j2", ...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 8829, "all_permissive": false }
ansible_role
anujsingh-learn/Ansible
5f0ae1147c9c7b2f1727c9230dec201086d8ffe9
0
casestudy/roles/apache
7,682
[ "no_license" ]
[ { "path": "casestudy/roles/apache/tasks/service.yaml", "content": "---\n - name: will start the service\n service: name=apache2 state=started\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 77 }, { "path": "casestudy/roles/apache/tasks/java.yaml", "conten...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 294, "all_permissive": false }
ansible_role
anujsingh-learn/Ansible
5f0ae1147c9c7b2f1727c9230dec201086d8ffe9
0
casestudy/roles/nginx
7,682
[ "no_license" ]
[ { "path": "casestudy/roles/nginx/tasks/config.yaml", "content": "---\n - name: Post installation message\n copy: src=index.html dest=/var/www/html/\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 }, { "path": "casestudy/roles/nginx/tasks/main.yml", "co...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 189, "all_permissive": false }
ansible_role
pinkoa/ansible-infraestrucute-lab
bb367876c609fe584a7b9c6800c517851e97a083
0
roles/010-register-node
7,681
[ "no_license" ]
[ { "path": "roles/010-register-node/tasks/main.yaml", "content": "- name: Register KVM node with your credentials.\n redhat_subscription:\n state: present\n username: \"{{ rh_user }}\"\n password: \"{{ <PASSWORD> }}\"\n autosubscribe: false\n pool_ids: \"{{ pool_id }}\"\n\n- name: Disable all...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 424, "all_permissive": false }
ansible_role
pinkoa/ansible-infraestrucute-lab
bb367876c609fe584a7b9c6800c517851e97a083
0
roles/011-install-dependencies
7,681
[ "no_license" ]
[ { "path": "roles/011-install-dependencies/tasks/main.yaml", "content": "- name: Install Package List\n yum:\n name: \"{{ item }}\"\n state: present\n with_items: \"{{ pkg_list }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 109 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 109, "all_permissive": false }
ansible_role
pinkoa/ansible-infraestrucute-lab
bb367876c609fe584a7b9c6800c517851e97a083
0
roles/012-creating-network-layout
7,681
[ "no_license" ]
[ { "path": "roles/012-creating-network-layout/templates/ifcfg-em2.j2", "content": "DEVICE=em2\nBOOTPROTO=none\nONBOOT=yes\nVLAN=yes\nBRIDGE=br-trunk\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 62 }, { "path": "roles/012-creating-network-layout/templates/ifcfg-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 1442, "all_permissive": false }
ansible_role
pinkoa/ansible-infraestrucute-lab
bb367876c609fe584a7b9c6800c517851e97a083
0
roles/013-configure-storage
7,681
[ "no_license" ]
[ { "path": "roles/013-configure-storage/tasks/main.yaml", "content": "- name: Create or resize a volume group on top of /dev/sdb.\n lvg:\n vg: vm_vg\n pvs: /dev/sdb\n\n- name: Create logical volumes for VMs\n lvol:\n vg: vm_vg\n lv: vms_lv\n size: 100%FREE\n state: present\n shrink: no\n\n-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 713, "all_permissive": false }
ansible_role
pinkoa/ansible-infraestrucute-lab
bb367876c609fe584a7b9c6800c517851e97a083
0
roles/014-tmp-host
7,681
[ "no_license" ]
[ { "path": "roles/014-tmp-host/tasks/main.yaml", "content": "- name: Adding temporary Host\n add_host:\n name: 192.168.10.{{ last_octect }}\n groups: temporary\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
lenfree/ansible
73c7c53b3a96b51ffd46c6823df36b025c3237b7
0
roles/manage-atlassian-stash-container
7,681
[ "no_license" ]
[ { "path": "roles/manage-atlassian-stash-container/meta/main.yml", "content": "galaxy_info:\n author: Lenfree\n description: This role is to manage Stash docker container's life cycle.\n License: GPLv3\n min_ansible_version: 1.5\n platforms:\n - name: EL\n versions:\n - 6\n categories:\n - clou...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2791, "all_permissive": false }
ansible_role
TheQuietBlock/HomeBaseOps
a73ef5adc1ef53ee8313b186def06be1c1560e14
0
ansible/roles/base
7,681
[ "no_license" ]
[ { "path": "ansible/roles/base/tasks/main.yml", "content": "- name: Update all apt packages to the latest version\n become: yes\n apt:\n update_cache: yes\n upgrade: dist", "license_type": "no_license", "detected_licenses": [], "size_bytes": 114 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 114, "all_permissive": false }
ansible_role
TheQuietBlock/HomeBaseOps
a73ef5adc1ef53ee8313b186def06be1c1560e14
0
ansible/roles/docker
7,681
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n- block:\n - name: Install required system packages\n become: true\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg-agent\n - software-properties-co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3714, "all_permissive": false }
ansible_role
TheQuietBlock/HomeBaseOps
a73ef5adc1ef53ee8313b186def06be1c1560e14
0
ansible/roles/minecraft
7,681
[ "no_license" ]
[ { "path": "ansible/roles/minecraft/tasks/main.yml", "content": "---\n- name: Install required packages\n apt:\n name:\n - openjdk-21-jre-headless\n - wget\n - screen\n update_cache: yes\n\n- name: Create minecraft user\n user:\n name: minecraft\n create_home: yes\n shell: /bi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1413, "all_permissive": false }
ansible_role
TheQuietBlock/HomeBaseOps
a73ef5adc1ef53ee8313b186def06be1c1560e14
0
ansible/roles/rundeck
7,681
[ "no_license" ]
[ { "path": "ansible/roles/rundeck/tasks/main.yml", "content": "---\n- name: Install dependencies\n apt:\n name:\n - openjdk-11-jre\n - git\n - make\n update_cache: yes\n\n- name: Download Rundeck GPG key (ASCII)\n ansible.builtin.get_url:\n url: https://packages.rundeck.com/pagerdut...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1418, "all_permissive": false }
ansible_role
MansoorMajeed/devops-from-scratch
59d983955b2b69332792b7d61cebb016985a9f65
195
infrastructure/ansible/roles/common
7,681
[ "no_license" ]
[ { "path": "infrastructure/ansible/roles/common/tasks/main.yml", "content": "---\n- name: Install Common Packages\n apt:\n pkg:\n - vim\n - git\n - curl\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 108 }, { "path": "infras...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 250, "all_permissive": false }
ansible_role
MansoorMajeed/devops-from-scratch
59d983955b2b69332792b7d61cebb016985a9f65
195
infrastructure/ansible/roles/git-server
7,681
[ "no_license" ]
[ { "path": "infrastructure/ansible/roles/git-server/tasks/main.yml", "content": "---\n- name: Install Packages\n apt:\n state: present\n name:\n - git\n - acl # Needed for Ansible to work well with unprivileged user\n\n\n- name: Git user\n user:\n name: git\n shell: /bin/b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 591, "all_permissive": false }
ansible_role
MansoorMajeed/devops-from-scratch
59d983955b2b69332792b7d61cebb016985a9f65
195
infrastructure/ansible/roles/nginx-common
7,681
[ "no_license" ]
[ { "path": "infrastructure/ansible/roles/nginx-common/tasks/main.yml", "content": "---\n- name: Install Nginx\n apt:\n name: nginx\n state: present\n\n- name: Make sure Nginx is running\n service:\n name: nginx\n state: started\n enabled: yes\n", "license_type": "no_license", "detect...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 167, "all_permissive": false }
ansible_role
MansoorMajeed/devops-from-scratch
59d983955b2b69332792b7d61cebb016985a9f65
195
infrastructure/ansible/roles/nginx-nodejsapp
7,681
[ "no_license" ]
[ { "path": "infrastructure/ansible/roles/nginx-nodejsapp/vars/main.yml", "content": "---\ndocroot: /var/www/nodejs.devops.esc.sh\nserver_name: nodejs.devops.esc.sh\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 77 }, { "path": "infrastructure/ansible/roles/nginx-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 628, "all_permissive": false }
ansible_role
dillevsky/mbox
44e4c716c76ab1ab3d8f59176ad61a95c8646f0a
0
roles/docker
7,681
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: ensure docker prerequisites are present\n yum:\n name:\n - device-mapper-persistent-data\n - lvm2\n state: latest\n become: yes\n- name: get gpg key for docker repo\n rpm_key:\n key: https://download.docker.com/linux/centos/g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1035, "all_permissive": false }
ansible_role
dillevsky/mbox
44e4c716c76ab1ab3d8f59176ad61a95c8646f0a
0
roles/management-box
7,681
[ "no_license" ]
[ { "path": "roles/management-box/tasks/install-python-modules.yml", "content": "- name: ensure boto module is present\n pip:\n name: boto\n state: latest\n executable: pip3\n extra_args: --upgrade --user\n become: yes\n- name: ensure awscli module is present\n pip:\n name: awscli\n state...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 2604, "all_permissive": false }
ansible_role
dillevsky/mbox
44e4c716c76ab1ab3d8f59176ad61a95c8646f0a
0
roles/python
7,681
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "- name: ensure latest python is present\n yum:\n name:\n - python3\n - python3-setuptools\n - python3-devel\n - python3-pip\n state: latest\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 174, "all_permissive": false }
ansible_role
vargaloid/zabbix_template_disk.presence
8126f72db93d9208626066eebd0b3ee1feca6476
2
roles/disk.presence
7,681
[ "no_license" ]
[ { "path": "roles/disk.presence/tasks/main.yml", "content": "---\n################### \n# install software\n- shell: dpkg-query -l 'zabbix-agent'\n ignore_errors: yes\n when: ansible_os_family == \"Debian\"\n\n- apt_key:\n url: https://hwraid.le-vert.net/debian/hwraid.le-vert.net.gpg.key\n state: pre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3992, "all_permissive": false }
ansible_role
rdfio/rdfio-vagrantbox
f067f77a85bd373e0a83c62efdd5067ed38c7ee7
1
roles/mediawiki
7,681
[ "no_license" ]
[ { "path": "roles/mediawiki/tasks/main.yml", "content": "---\n- name: Download MediaWiki\n get_url:\n url=http://releases.wikimedia.org/mediawiki/{{mwver_major}}/mediawiki-{{mwver_minor}}.tar.gz\n dest=/vagrant/mediawiki-{{mwver_minor}}.tar.gz\n mode=0440\n- name: Unpack MediaWiki tarball\n unarch...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1533, "all_permissive": false }
ansible_role
rdfio/rdfio-vagrantbox
f067f77a85bd373e0a83c62efdd5067ed38c7ee7
1
roles/mysql
7,681
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n- name: Install stuff from Aptitude\n apt: name={{ item }} state=installed\n with_items:\n - mysql-server\n - php-mysql\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 128 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 128, "all_permissive": false }
ansible_role
rdfio/rdfio-vagrantbox
f067f77a85bd373e0a83c62efdd5067ed38c7ee7
1
roles/nginx
7,681
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Install stuff from Aptitude\n apt: name={{ item }} state=installed\n with_items:\n - nginx\n- name: Add custom Nginx sites/default config file\n copy:\n src=nginx-sites-default\n dest=/etc/nginx/sites-enabled/default\n own...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 360, "all_permissive": false }
ansible_role
rdfio/rdfio-vagrantbox
f067f77a85bd373e0a83c62efdd5067ed38c7ee7
1
roles/php
7,681
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n- name: Install stuff from Aptitude\n apt: name={{ item }} state=installed\n with_items:\n - software-properties-common # Needed for HHVM install\n - composer\n - php-apcu\n - php-cli\n - php-fpm\n - php-gd\n - php-mbstring\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 983, "all_permissive": false }
ansible_role
rdfio/rdfio-vagrantbox
f067f77a85bd373e0a83c62efdd5067ed38c7ee7
1
roles/rdfio
7,681
[ "no_license" ]
[ { "path": "roles/rdfio/tasks/main.yml", "content": "---\n- name: Change user & group for wiki folder\n file:\n path=/vagrant/w\n owner=ubuntu\n group=www-data\n recurse=yes\n- name: Install RDFIO including dependencies via composer\n composer:\n command=require\n arguments=\"rdfio/rdfio ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 738, "all_permissive": false }
ansible_role
rdfio/rdfio-vagrantbox
f067f77a85bd373e0a83c62efdd5067ed38c7ee7
1
roles/semantic_mediawiki
7,681
[ "no_license" ]
[ { "path": "roles/semantic_mediawiki/tasks/main.yml", "content": "---\n- name: Install Semantic MediaWiki via composer\n composer:\n command: \"require\"\n arguments: \"mediawiki/semantic-media-wiki {{ smwver_minor }} --update-no-dev\"\n working_dir: \"{{ mw_dir }}\"\n- name: Update MediaWiki datab...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1587, "all_permissive": false }
ansible_role
rdfio/rdfio-vagrantbox
f067f77a85bd373e0a83c62efdd5067ed38c7ee7
1
roles/travis
7,681
[ "no_license" ]
[ { "path": "roles/travis/tasks/main.yml", "content": "---\n- name: Create a vagrant folder, to make Travis build compatible with vagrant box\n file:\n dest=/vagrant\n state=directory\n- name: Create a /var/www/html folder\n file:\n dest=/var/www/html\n state=directory\n", "license_t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 229, "all_permissive": false }
ansible_role
vsdeepthi/SparkAnsible
87f08a9b75a99e00aeb97853d690ae9157f8856e
0
roles/spark
7,681
[ "no_license" ]
[ { "path": "roles/spark/tasks/config_spark.yml", "content": "---\n- name: Copy Spark slaves\n template: src=slaves dest={{ spark_config_path }} mode=644 owner={{ user }} group = {{ group }}\n\n- name: Copy Spark Env file\n template: src=spark-env.sh dest={{ spark_config_path }} mode=644 owner={{ user }} gr...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1072, "all_permissive": false }
ansible_role
NextTrick/te
711ad2729065fa9024c8180984545c2dfbb428f5
0
vagrant/ansible/roles/project
7,681
[ "no_license" ]
[ { "path": "vagrant/ansible/roles/project/files/local.php", "content": "<?php\nreturn array(\n 'php' => array(\n 'settings' =>\n array(\n 'date.timezone' => 'America/Los_Angeles',\n 'intl.default_locale' => 'es_PE',\n 'display_startup_errors' ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 6256, "all_permissive": false }
ansible_role
marcioflaviof/ansible-desktop-debian
3b342c37dbf9cae7689f5811d29ac248c400caa4
0
roles/asdf
7,680
[ "no_license" ]
[ { "path": "roles/asdf/defaults/main.yml", "content": "asdf_version: 'v0.8.1'\nnodejs_version: 'lts'\nruby_version: '3.0.2'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 67 }, { "path": "roles/asdf/tasks/ruby.yml", "content": "- name: check if ruby plugin is...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2910, "all_permissive": false }
ansible_role
marcioflaviof/ansible-desktop-debian
3b342c37dbf9cae7689f5811d29ac248c400caa4
0
roles/core
7,680
[ "no_license" ]
[ { "path": "roles/core/tasks/main.yml", "content": "- name: Install System Packages 1\n become: true\n apt:\n name: [\"build-essential\", \"cmake\", \"pkg-config\", \"libpthread-stubs0-dev\"]\n\n- name: Install System Packages 2\n become: true\n apt:\n name: [\"lua5.1\", \"unzip\", \"libtool\", \"l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 428, "all_permissive": false }
ansible_role
marcioflaviof/ansible-desktop-debian
3b342c37dbf9cae7689f5811d29ac248c400caa4
0
roles/docker
7,680
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Install Docker Dependencies\n become: true\n apt: name={{ item }} state=latest update_cache=yes\n loop:\n [\n \"apt-transport-https\",\n \"ca-certificates\",\n \"curl\",\n \"software-properties-common\",\n \"python3-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1292, "all_permissive": false }
ansible_role
marcioflaviof/ansible-desktop-debian
3b342c37dbf9cae7689f5811d29ac248c400caa4
0
roles/fish
7,680
[ "no_license" ]
[ { "path": "roles/fish/tasks/main.yml", "content": "- name: Add fish repository\n apt_repository:\n repo: ppa:fish-shell/release-3\n\n- name: Install Fish\n become: true\n apt:\n name: fish\n update_cache: true\n\n- name: Change shell to Fish\n become: true\n shell: chsh -s $(which fish)\n\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 494, "all_permissive": false }
ansible_role
marcioflaviof/ansible-desktop-debian
3b342c37dbf9cae7689f5811d29ac248c400caa4
0
roles/neovim
7,680
[ "no_license" ]
[ { "path": "roles/neovim/tasks/main.yml", "content": "- name: Remove neovim\n shell: rm -rf ~/neovim\n\n- name: Clone Neovim\n become: false\n ansible.builtin.git:\n repo: \"https://github.com/neovim/neovim.git\"\n dest: \"{{ lookup('env', 'HOME') }}/neovim\"\n\n- name: Build neovim\n shell: \"cd {...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 563, "all_permissive": false }
ansible_role
marcioflaviof/ansible-desktop-debian
3b342c37dbf9cae7689f5811d29ac248c400caa4
0
roles/stow
7,680
[ "no_license" ]
[ { "path": "roles/stow/tasks/main.yml", "content": "- name: Install stow\n become: true\n apt:\n name: stow\n\n- name: Clone dotfiles\n become: false\n ansible.builtin.git:\n repo: \"https://github.com/marcioflaviof/.dotfiles.git\"\n dest: \"{{ lookup('env', 'HOME') }}/.dotfiles\"\n\n- name: Rem...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 545, "all_permissive": false }
ansible_role
marcioflaviof/ansible-desktop-debian
3b342c37dbf9cae7689f5811d29ac248c400caa4
0
roles/vscode
7,680
[ "no_license" ]
[ { "path": "roles/vscode/tasks/main.yml", "content": "- name: Install VSCode\n apt:\n name: code\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 45, "all_permissive": false }
ansible_role
zeek0x/ansible-playbooks
4e9c112a7d4bed515e1035e304a94270ddea82e6
1
roles/circleci
7,680
[ "no_license" ]
[ { "path": "roles/circleci/tasks/main.yml", "content": "---\n- name: Install circleci\n get_url:\n url: https://circle-downloads.s3.amazonaws.com/releases/build_agent_wrapper/circleci\n dest: \"/usr/local/bin/circleci\"\n mode: 0755\n become: yes\n", "license_type": "no_license", "detecte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 195, "all_permissive": false }
ansible_role
zeek0x/ansible-playbooks
4e9c112a7d4bed515e1035e304a94270ddea82e6
1
roles/deb
7,680
[ "no_license" ]
[ { "path": "roles/deb/tasks/main.yml", "content": "---\n- name: Download deb packages\n get_url:\n url: \"{{ item.value.url }}\"\n dest: \"/var/tmp/{{ item.key }}.deb\"\n mode: 0744\n validate_certs: False\n with_dict: \"{{ packages }}\"\n\n- name: Install deb packages\n apt:\n deb: \"/var/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 690, "all_permissive": false }
ansible_role
zeek0x/ansible-playbooks
4e9c112a7d4bed515e1035e304a94270ddea82e6
1
roles/docker
7,680
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: Install docker dependencies\n apt:\n name: \"{{ item }}\"\n state: present\n become: yes\n with_items:\n - apt-transport-https\n - ca-certificates\n - curl\n - lsb\n - linux-image-extra-virtual\n - linux-image-extra...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1276, "all_permissive": false }
ansible_role
zeek0x/ansible-playbooks
4e9c112a7d4bed515e1035e304a94270ddea82e6
1
roles/gem
7,680
[ "no_license" ]
[ { "path": "roles/gem/tasks/main.yml", "content": "---\n- name: Install gem packages\n gem:\n name: \"{{ item.key }}\"\n state: \"{{ item.value.state }}\"\n executable: \"/usr/bin/gem\"\n user_install: no\n become: yes\n with_dict: \"{{ packages }}\"\n", "license_type": "no_license", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 269, "all_permissive": false }
ansible_role
zeek0x/ansible-playbooks
4e9c112a7d4bed515e1035e304a94270ddea82e6
1
roles/git
7,680
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "---\n- name: Download git repositories\n git:\n repo: \"{{ item.value.repo }}\"\n dest: \"{{ item.value.dest }}\"\n update: yes\n become: \"{{ item.value.become }}\"\n with_dict: \"{{ packages }}\"\n\n- name: Download plugin git repositories\n g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1341, "all_permissive": false }
ansible_role
zeek0x/ansible-playbooks
4e9c112a7d4bed515e1035e304a94270ddea82e6
1
roles/pip
7,680
[ "no_license" ]
[ { "path": "roles/pip/tasks/main.yml", "content": "---\n- name: Install pip packages\n pip:\n name: \"{{ item.key }}\"\n state: \"{{ item.value.state }}\"\n executable: pip3\n with_dict: \"{{ packages }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 154 }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 194, "all_permissive": false }
ansible_role
zeek0x/ansible-playbooks
4e9c112a7d4bed515e1035e304a94270ddea82e6
1
roles/ppa
7,680
[ "no_license" ]
[ { "path": "roles/ppa/vars/main.yml", "content": "---\npackages:\n gcc:\n state: latest\n\n net-tools:\n state: latest\n\n curl:\n state: latest\n\n wget:\n state: latest\n\n nmap:\n state: latest\n\n direnv:\n state: latest\n\n jq:\n state: latest\n\n mysql-client:\n state: l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1888, "all_permissive": false }
ansible_role
zeek0x/ansible-playbooks
4e9c112a7d4bed515e1035e304a94270ddea82e6
1
roles/ubuntu
7,680
[ "no_license" ]
[ { "path": "roles/ubuntu/files/.tmux.conf", "content": "#マウス操作を有効にする\nset-option -g mouse on\n\n# prefixキーをC-bからC-tに変更\nset-option -g prefix C-t\nunbind-key C-b\n\n# クリップボードに反映\nset-window-option -g mode-keys vi\nbind-key -t vi-copy v begin-selection\nbind-key -t vi-copy C-v rectangle-toggle\nbind-key -t vi-...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 2785, "all_permissive": false }
ansible_role
stevecosner/ansible-lxd-dev
3e095d3f76228c29a17d0c43ef934f82645713f1
0
roles/centos8-add-user
7,680
[ "no_license" ]
[ { "path": "roles/centos8-add-user/tasks/main.yml", "content": "# Add a user with ssh key and no password sudo priviledges\n\n- name: install python\n delegate_to: \"centos8-1\"\n raw: apt install python -y\n\n\n\n- name: Add the user 'matt' with a bash shell, appending the group sudo\n delegate_to: \"{{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 619, "all_permissive": false }
ansible_role
stevecosner/ansible-lxd-dev
3e095d3f76228c29a17d0c43ef934f82645713f1
0
roles/centos8-pull
7,680
[ "no_license" ]
[ { "path": "roles/centos8-pull/tasks/main.yml", "content": "---\n\n- name: Create a started container\n lxd_container:\n name: \"centos8-1\"\n state: started\n source:\n type: image\n mode: pull\n server: https://images.linuxcontainers.org\n protocol: lxd\n alias: centos/8/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 319, "all_permissive": false }
ansible_role
stevecosner/ansible-lxd-dev
3e095d3f76228c29a17d0c43ef934f82645713f1
0
roles/centos8-web-server
7,680
[ "no_license" ]
[ { "path": "roles/centos8-web-server/tasks/main.yml", "content": "# Run updates\n\n#- name: update\n# delegate_to: \"{{ host }}\"\n# raw: yum update -y\n\n\n# Add a webserver\n\n- name: install httpd\n delegate_to: \"{{ host }}\"\n raw: yum install httpd -y\n\n- name: install git\n delegate_to: \"{{ hos...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 574, "all_permissive": false }
ansible_role
stevecosner/ansible-lxd-dev
3e095d3f76228c29a17d0c43ef934f82645713f1
0
roles/ubuntu-pull
7,680
[ "no_license" ]
[ { "path": "roles/ubuntu-pull/tasks/main.yml", "content": "---\n\n- name: Create a started container\n lxd_container:\n name: \"{{ host }}\"\n state: started\n source:\n type: image\n mode: pull\n server: https://images.linuxcontainers.org\n protocol: lxd\n alias: ubuntu/xe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 325, "all_permissive": false }
ansible_role
stevecosner/ansible-lxd-dev
3e095d3f76228c29a17d0c43ef934f82645713f1
0
roles/ubuntu-web-server
7,680
[ "no_license" ]
[ { "path": "roles/ubuntu-web-server/tasks/main.yml", "content": "# Run updates\n\n- name: apt update\n delegate_to: \"testweb2\"\n raw: apt update\n\n\n# Add a webserver\n\n- name: install nginx\n delegate_to: \"{{ host }}\"\n raw: apt install nginx -y\n\n- name: install git\n delegate_to: \"{{ host }}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 501, "all_permissive": false }
ansible_role
youssefskhiri/Livraison-Continue
c6bfbd62aac22a30b2416e2200a0f2f03a37bef0
0
Ansible/roles/build
7,680
[ "no_license" ]
[ { "path": "Ansible/roles/build/tasks/main.yml", "content": "---\n# tasks file for build\n- name: install node modules\n shell: npm install\n#buid project\n- name: build app\n shell: ng build --configuration production\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
youssefskhiri/Livraison-Continue
c6bfbd62aac22a30b2416e2200a0f2f03a37bef0
0
Ansible/roles/docker-registry
7,680
[ "no_license" ]
[ { "path": "Ansible/roles/docker-registry/tasks/main.yml", "content": "- name: Pushing\n docker_image:\n name: test\n repository: youssefskhiri/angular-app\n source: build\n build: \n path: /var/lib/jenkins/workspace/CD\n tag: latest\n push: yes\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 192, "all_permissive": false }
ansible_role
mohsenmohamedm/udapeople-cicd
367e4735621427998a2482de6154198c93601555
0
.circleci/ansible/roles/deploy
7,680
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "---\n- name: \"Create backend app directory\"\n file:\n path: ~/backend-app\n state: directory\n\n- name: \"Unarchive backend files\"\n unarchive:\n src: artifacts.tar.gz\n dest: ~/backend-app\n\n- name: \"Install node depe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 693, "all_permissive": false }
ansible_role
awesomejt/taylor-ansible
42c215ddbab95d6212724be8f02bb04c7230fabb
0
roles/common
7,680
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yaml", "content": "- name: Install common packages\n become: true\n apt:\n name:\n - nano\n - git\n - python3\n state: present\n\n- name: Clean up APT\n become: true\n apt:\n autoclean: true\n autoremove: true\n", "license_type": "no_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 209, "all_permissive": false }
ansible_role
awesomejt/taylor-ansible
42c215ddbab95d6212724be8f02bb04c7230fabb
0
roles/consul
7,680
[ "no_license" ]
[ { "path": "roles/consul/tasks/main.yaml", "content": "- name: Install Consul via APT on Ubuntu\n block:\n - name: Ensure required packages are installed\n ansible.builtin.apt:\n name:\n - curl\n - gnupg\n - lsb-release\n state: present\n update_cache:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3749, "all_permissive": false }
ansible_role
awesomejt/taylor-ansible
42c215ddbab95d6212724be8f02bb04c7230fabb
0
roles/dns
7,680
[ "no_license" ]
[ { "path": "roles/dns/tasks/main.yaml", "content": "- name: Install dns utils\n become: true\n apt:\n name:\n - dnsutils\n - dnsmasq\n state: present\n\n- name: Install DNS File\n become: true\n copy:\n src: files/hosts\n dest: /etc/hosts\n \n- name: Remove default DNS config file\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1367, "all_permissive": false }
ansible_role
awesomejt/taylor-ansible
42c215ddbab95d6212724be8f02bb04c7230fabb
0
roles/dns-ai
7,680
[ "no_license" ]
[ { "path": "roles/dns-ai/tasks/main.yaml", "content": "- name: Install dnsmasq\n ansible.builtin.apt:\n name: dnsmasq\n state: present\n update_cache: yes\n become: yes\n\n- name: Configure dnsmasq to listen on network interfaces\n ansible.builtin.template:\n src: dnsmasq.conf.j2\n dest: /e...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1314, "all_permissive": false }
ansible_role
awesomejt/taylor-ansible
42c215ddbab95d6212724be8f02bb04c7230fabb
0
roles/updates
7,680
[ "no_license" ]
[ { "path": "roles/updates/tasks/main.yaml", "content": "- name: Update All Packages\n become: true\n apt:\n upgrade: full\n\n- name: Clean up APT\n become: true\n apt:\n autoclean: true\n autoremove: true", "license_type": "no_license", "detected_licenses": [], "size_bytes": 152 } ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 152, "all_permissive": false }
ansible_role
arunprabus/dev2prod-healthapp
3e0b029fab55374c186c32f59a4ac190afc6f013
0
ansible/roles/k3s
7,680
[ "no_license" ]
[ { "path": "ansible/roles/k3s/defaults/main.yml", "content": "---\n# Default variables for K3s role\nkubeconfig_path: \"/etc/rancher/k3s/k3s.yaml\"\nenvironment: \"dev\"\ncluster_ip: \"127.0.0.1\"\nnamespace: \"health-app-{{ environment }}\"\ngithub_token: \"\"\nrepo_name: \"\"\ncreate_github_secret: false",...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3279, "all_permissive": false }
ansible_role
arunprabus/dev2prod-healthapp
3e0b029fab55374c186c32f59a4ac190afc6f013
0
ansible/roles/monitoring
7,680
[ "no_license" ]
[ { "path": "ansible/roles/monitoring/tasks/main.yml", "content": "---\n# Main tasks for monitoring role\n- name: Create monitoring namespace\n kubernetes.core.k8s:\n name: monitoring\n api_version: v1\n kind: Namespace\n state: present\n environment:\n KUBECONFIG: \"{{ kubeconfig_path }}\"\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3038, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/ansible_service_broker_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/ansible_service_broker_setup/templates/ansible_service_broker.yaml.j2", "content": "apiVersion: servicecatalog.k8s.io/v1beta1\nkind: ClusterServiceBroker\nmetadata:\n name: ansible-service-broker\nspec:\n url: \"https://asb.ansible-service-broker.svc:1338{{ broker_url_prefix }}/\"...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 15936, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/aws_display_info
7,680
[ "no_license" ]
[ { "path": "ansible/roles/aws_display_info/tasks/minimal.yml", "content": "---\n- debug: var=my_ec2_facts\n\n- block:\n - debug:\n msg:\n - \"EC2 Instance Tags: Name={{ item.tags.Name }}\"\n - \"EC2 Instance ID: {{ item.id }}\"\n - \"Region: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2548, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/aws_docker_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/aws_docker_setup/templates/docker-storage-setup.j2", "content": "DEVS={{ docker_vg_block_device }}\nVG={{ docker_vg_name }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 58 }, { "path": "ansible/roles/aws_docker_setup/tasks/proxy.yml", ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2493, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/aws_ebs_volumes
7,680
[ "no_license" ]
[ { "path": "ansible/roles/aws_ebs_volumes/tasks/main.yml", "content": "---\n - name: Create and mount filesystems\n become: true\n block:\n\n - name: Create ext4 filesystems for /var/lib/docker, /tmp, persistent volumes\n async: 200\n register: filesystem_creations\n poll: 0\n f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1486, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/aws_infrastructure
7,680
[ "no_license" ]
[ { "path": "ansible/roles/aws_infrastructure/tasks/minimal_network.yml", "content": "---\n # Saw a bug with ansible 2.0, appeared VPC was created OK, but couldn't access instances\n # Upgraded to ansible 2.2 and issue was resolved.\n # Learned how to configure VPC referring to:\n # https://github.com/jer...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 19064, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/aws_packages
7,680
[ "no_license" ]
[ { "path": "ansible/roles/aws_packages/tasks/minimal.yml", "content": "---\n - name: Create ASB repo for EL7\n yum_repository:\n name: \"ansible-service-broker\"\n description: \"Ansible Service Broker\"\n baseurl: \"https://copr-be.cloud.fedoraproject.org/results/@ansible-service-broker/a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1209, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/aws_proxy_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/aws_proxy_setup/tasks/main.yml", "content": "---\n - name: Set proxy_private_ip var for {{ cluster }} host\n set_fact:\n proxy_private_ip: \"{{ hostvars['localhost']['proxy_private_ip'] }}\"\n\n - name: Configure system-wide proxy for {{ cluster }} instance in /etc/environ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1341, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/aws_repo_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/aws_repo_setup/tasks/main.yml", "content": "---\n - name: Configure repos\n become: true\n block:\n - name: install EPEL\n yum:\n name: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm\n state: installed\n\n - name: Import EPEL G...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 508, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/aws_terminate_ec2_instances
7,680
[ "no_license" ]
[ { "path": "ansible/roles/aws_terminate_ec2_instances/tasks/main.yml", "content": "---\n - include: minimal.yml\n when: ec2_type == \"minimal\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 61 }, { "path": "ansible/roles/aws_terminate_ec2_instances/tasks/min...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1897, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/awsservicebroker_prep
7,680
[ "no_license" ]
[ { "path": "ansible/roles/awsservicebroker_prep/tasks/main.yml", "content": "---\n - pause:\n prompt: \"Enter the AWS Service Broker Cluster Admin Username (default '{{ cluster_user }}'): \"\n register: awsservicebroker_user\n\n - set_fact:\n cluster_user: \"{{ awsservicebroker_user.user_input...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 587, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/awsservicebroker_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/awsservicebroker_setup/tasks/create_role_arn.yml", "content": "---\n - name: Create CloudFormation Stack role '{{ aws_role_arn_name }}'\n iam_role:\n name: \"{{ aws_role_arn_name }}\"\n state: present\n managed_policy:\n - arn:aws:iam::aws:policy/Administra...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 17046, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/broker_proxy_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/broker_proxy_setup/templates/broker-proxy-config.yml.j2", "content": "apiVersion: v1\ndata:\n HTTP_PROXY: http://{{ hostvars['localhost']['proxy_private_ip'] }}:3128\n HTTPS_PROXY: http://{{ hostvars['localhost']['proxy_private_ip'] }}:3128\n NO_PROXY: localhost,127.0.0.1,.cluste...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2258, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/demo_prep
7,680
[ "no_license" ]
[ { "path": "ansible/roles/demo_prep/tasks/main.yml", "content": "---\n - name: Template secret file to be created\n template:\n src: demo-secret.j2\n dest: /tmp/demo-secret.yml\n owner: root\n group: root\n mode: 0644\n register: demo_secret_result\n\n - name: Login as {{ clu...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4005, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/env_hacks
7,680
[ "no_license" ]
[ { "path": "ansible/roles/env_hacks/tasks/main.yml", "content": "---\n # We want this to run sometime after oc cluster up has come up, since we want\n # it to alter the permssions of the pv* directories it creates sometime after\n # startup.\n #\n # We've seen some permission errors testing certain cont...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4302, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/kubernetes_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/kubernetes_setup/defaults/main.yml", "content": "reset_cluster: False\n\nservice_catalog_path: \"/tmp/service-catalog\"\ncatalog_charts_path: \"{{ service_catalog_path }}/charts/catalog\"\ncatalog_git: \"https://github.com/kubernetes-incubator/service-catalog\"\n\nhelm_release_name:...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 12582, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/local_demo_prep
7,680
[ "no_license" ]
[ { "path": "ansible/roles/local_demo_prep/tasks/main.yml", "content": "---\n - name: Login as {{ cluster_user }}\n shell: \"{{ oc_cmd }} login -u {{ cluster_user }} -p {{ cluster_user_password }}\"\n\n - name: check if project exists\n shell: \"{{ oc_cmd }} get project --no-headers=true | awk '{ prin...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1450, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/olm_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/olm_setup/defaults/main.yml", "content": "deploy_admin_console: true\n\nolm_version: \"0.7.2\"\n# Override OLM image tag found in manifests Ex: \"master-05a83874\"\nolm_image_tag_override: \"\"\nadmin_console_image: \"quay.io/openshift/origin-console:latest\"\n\n# The upstream OLM r...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 5607, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/openshift_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/openshift_setup/defaults/main.yml", "content": "reset_cluster: False\n\nopenshift_clients:\n 'v3.6':\n url: https://github.com/openshift/origin/releases/download/v3.6.0\n release_ver: openshift-origin-client-tools-v3.6.0-c4dd4cf\n 'v3.7':\n url: https://github.com/openshi...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 5508, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/service_catalog_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/service_catalog_setup/templates/kubeconfig.templ.yaml.j2", "content": "apiVersion: v1\nclusters:\n- cluster:\n server: http://{{ service_catalog_api_server_ip }}:8081\n name: service-catalog-cluster\ncontexts:\n- context:\n cluster: service-catalog-cluster\n name: service-ca...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 11653, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/squid_instance_configure
7,680
[ "no_license" ]
[ { "path": "ansible/roles/squid_instance_configure/tasks/main.yml", "content": "---\n\n - name: Install squid proxy package\n yum:\n name: squid\n state: installed\n\n - name: Copy squid.conf to OpenShift host\n template:\n src: squid.conf.j2\n dest: /etc/squid/squid.conf\n bec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1506, "all_permissive": false }
ansible_role
fusor/catasb
eea45b67de9985109d938b70de9ab0026b4aa5a5
47
ansible/roles/ssl_setup
7,680
[ "no_license" ]
[ { "path": "ansible/roles/ssl_setup/tasks/main.yml", "content": "---\n - name: Configure SSL\n become: true\n block:\n # Assumes that if console cert exists so does apiserver cert\n - name: Check if SSL certs have already been generated for this instance\n stat:\n path: /etc/letsencr...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2515, "all_permissive": false }
ansible_role
UniversityRadioYork/station-pc-ansible
ddf9dcd1a2aac18868f0a0b813fdf48d251611e1
0
roles/common
7,677
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# make URY user\n# disable URY user SSH\n# read only ~ury\n\n- name: create URY user\n user:\n name: ury\n password: <PASSWORD>.\"\n become: yes\n\n- name: disable URY user SSH\n lineinfile:\n path: /etc/ssh/sshd_config\n line: 'DenyUs...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 420, "all_permissive": false }
ansible_role
UniversityRadioYork/station-pc-ansible
ddf9dcd1a2aac18868f0a0b813fdf48d251611e1
0
roles/editor
7,677
[ "no_license" ]
[ { "path": "roles/editor/handlers/main.yml", "content": "---\n- name: mount drives\n shell: mount -a\n become: yes\n ignore_errors: yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 77 }, { "path": "roles/editor/tasks/main.yml", "content": "---\n# audacity\...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2195, "all_permissive": false }
ansible_role
sioel0/arch-installer
c3fe7dd62a114f42cc804e1bb9bc7693ce525fa8
0
roles/ctf
7,677
[ "no_license" ]
[ { "path": "roles/ctf/tasks/main.yml", "content": "---\n# tasks file for ctf\n- name: Install packages\n become: True\n pacman:\n name:\n - sagemath\n - python-pip\n - python\n - pwndbg\n - python-pwntools\n - radare2\n - ropper\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
sioel0/arch-installer
c3fe7dd62a114f42cc804e1bb9bc7693ce525fa8
0
roles/git
7,677
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "---\n# tasks file for git\n- name: Set git editor\n git_config:\n name: core.editor\n scope: global\n value: \"{{ git_editor }}\"\n\n- name: Set git user.name\n git_config:\n name: user.name\n scope: global\n value: \"{{ git_name }}\"\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 426, "all_permissive": false }
ansible_role
sioel0/arch-installer
c3fe7dd62a114f42cc804e1bb9bc7693ce525fa8
0
roles/hardening
7,677
[ "no_license" ]
[ { "path": "roles/hardening/tasks/main.yml", "content": "---\n# tasks file for hardening\n- name: Change umask settings\n become: True\n lineinfile:\n path: /etc/profile\n regexp: '^umask 022'\n line: 'umask 0077'\n\n- name: Update umask inside sudoers file\n become: True\n lineinfile:\n path...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1175, "all_permissive": false }
ansible_role
sioel0/arch-installer
c3fe7dd62a114f42cc804e1bb9bc7693ce525fa8
0
roles/housekeeping
7,677
[ "no_license" ]
[ { "path": "roles/housekeeping/tasks/main.yml", "content": "---\n# tasks file for housekeeping\n- name: Remove archinstall logs\n become: True\n ansible.builtin.file:\n path: /var/log/archinstall\n state: absent\n\n- name: Enable services\n become: True\n systemd:\n enabled: True\n name: \"{{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1307, "all_permissive": false }
ansible_role
sioel0/arch-installer
c3fe7dd62a114f42cc804e1bb9bc7693ce525fa8
0
roles/nvidia
7,677
[ "no_license" ]
[ { "path": "roles/nvidia/tasks/main.yml", "content": "---\n# tasks file for nvidia\n- name: Install nvidia packages\n become: True\n pacman:\n name: nvidia\n\n- name: nvidia drm kernel modeset\n copy:\n dest: /etc/modeprobe.d/nvidia.conf\n content: options nvidia_drm modeset=1\n\n- name: Create p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 821, "all_permissive": false }
ansible_role
sioel0/arch-installer
c3fe7dd62a114f42cc804e1bb9bc7693ce525fa8
0
roles/packages
7,677
[ "no_license" ]
[ { "path": "roles/packages/tasks/main.yml", "content": "---\n# tasks file for packages\n- name: Update pacman.conf settings\n become: True\n lineinfile:\n path: /etc/pacman.conf\n regexp: \"{{ item.regexp }}\"\n line: \"{{ item.line }}\"\n loop:\n - { regexp: '^#Color', line: 'Color' }\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2524, "all_permissive": false }