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
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/firewall
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/firewall/templates/apache-postflood.conf.j2", "content": "# Fail2Ban configuration file\n#\n#\n# $Revision: 1 $\n#\n\n[Definition]\n# Option: failregex\n# Notes.: Regexp to catch known spambots and software alike. Please verify\n# that it is your intent to block IPs which were dri...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3534, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/git
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/git/templates/env.j2", "content": "APP_ENV=local\nAPP_DEBUG=true\nAPP_KEY=<KEY>\n\nDB_CONNECTION=pgsql\nDB_HOST=localhost\nDB_DATABASE={{ dbname }}\nDB_USERNAME={{ dbuser }}\nDB_PASSWORD={{ <PASSWORD> }}\n\nCACHE_DRIVER=array\nQUEUE_DRIVER=sync\n", "license_type": "no_license"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 900, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/letsencrypt
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/letsencrypt/meta/main.yml", "content": "---\ngalaxy_info:\n author: <NAME>\n description: Generate TLS certificates and get them signed by Let's Encrypt.\n issue_tracker_url: https://github.com/thefinn93/ansible-letsencrypt/issues\n license: GPL\n min_ansible_version: 1.2\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3102, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/memcached
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/memcached/tasks/main.yml", "content": "---\n- name: Install Memcached\n apt: name={{ item }} state=present\n with_items:\n - memcached\n - php5-memcached\n - php5-memcache\n \n- service: name=memcached state=restarted\n", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 178, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/mysql
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/mysql/tasks/main.yml", "content": "---\n- name: install mysql\n apt: name={{ item }} state=present\n with_items:\n - mysql-server\n - php5-mysql\n - php5-sqlite\n - python-mysqldb\n\n- service: name=mysql state=restarted\n- service: name=apache2 state=restarted\n", "lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 223, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/nginx-django
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/nginx-django/files/nginx.conf", "content": "server {\n listen 80 default_server;\n\tlisten [::]:80 default_server ipv6only=on;\n server_name server_domain_or_IP;\n proxy_set_header Host $host;\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n proxy_se...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1591, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/nginx-php
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/nginx-php/tasks/main.yml", "content": "---\n- name: Setup dotdeb repo\n apt_repository: repo='deb http://packages.dotdeb.org jessie all' state=present\n\n- name: Dotdeb source\n apt_repository: repo='deb-src http://packages.dotdeb.org jessie all' state=present\n\n- name: Install...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1471, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/nginx_firewall
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/nginx_firewall/templates/ufw-nginx.conf.j2", "content": "[Definition]\nactionstart =\nactionstop =\nactioncheck =\nactionban = ufw insert 1 deny from <ip> to any port 80 && ufw insert 2 deny from <ip> to any port 443\nactionunban = ufw delete deny from <ip> to any port 80 && ufw d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1685, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/postgres
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/postgres/tasks/main.yml", "content": "---\n- name: Install PostgreSQL\n apt: name={{ item }} state=present\n with_items:\n - postgresql\n - postgresql-contrib\n - libpq-dev\n - php7.0-pgsql\n - python-psycopg2\n - postgresql-server-dev-all\n\n- name: ensure database is cre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 759, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/redis
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/redis/tasks/main.yml", "content": "---\n- name: Set up a Redis server\n apt: name={{ item }} state=present\n with_items:\n - redis-server\n\n- name: Reload Systemctl\n command: systemctl daemon-reload\n- service: name=redis-server state=restarted", "license_type": "no_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 207, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/upgrade
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/upgrade/tasks/main.yml", "content": "---\n- name: update system\n apt: upgrade=full update_cache=yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 62 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 62, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/users
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/users/tasks/main.yml", "content": "---\n- name: Add Users\n user: >\n name={{ item.key }}\n shell=/bin/bash\n groups={{ item.value.groups }}\n append=yes\n state=present\n password={{ <PASSWORD> }}\n update_password=on_create\n with_dict: \"{{ users }}\"\n",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 297, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/utilities
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/utilities/tasks/main.yml", "content": "---\n- name: Install Utilities\n apt: name={{ item }} state=present\n with_items:\n - sudo\n - git\n - screen\n - byobu\n - sqlite\n - vim-nox\n - wget\n - curl\n - libcurl3\n - libcurl3-dev\n - ntp\n - debconf-utils\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 367, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/varnish
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/varnish/tasks/main.yml", "content": "---\n- name: install Varnish\n apt: name={{ item }} state=present\n with_items:\n - varnish\n\n- name: Copy over Varnish configuration\n copy: src=default.vcl dest=/etc/varnish/default.vcl owner=root group=root mode=0644\n- name: Copy over ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 7110, "all_permissive": false }
ansible_role
matthewbdaly/ansible-tasks
7049df6a0c1ca10c19695c86ad344f356043bfa2
4
playbooks/roles/wordpress
1,839
[ "no_license" ]
[ { "path": "playbooks/roles/wordpress/templates/htaccess.j2", "content": "# BEGIN W3TC Browser Cache\n<IfModule mod_deflate.c>\n <IfModule mod_headers.c>\n Header append Vary User-Agent env=!dont-vary\n </IfModule>\n <IfModule mod_filter.c>\n AddOutputFilterByType DEFLATE text/css text...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 6183, "all_permissive": false }
ansible_role
Zeeshanhyder01/roboshop-jenkins
59f7b80fa3c40e42ca2f2afd3c3805f24cafd417
0
roles/jenkins
1,839
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/main.yml", "content": "- name: Create Folders in Jenkins\n community.general.jenkins_job:\n config: \"{{ lookup('template', 'folder.xml') }}\"\n name: \"{{item.name}}\"\n url: http://172.31.32.113:8080\n user: \"admin\"\n token: \"111cd34d1733a1c718eb1aeb4ee9a6...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 898, "all_permissive": false }
ansible_role
application-research/delta-dm-playbook
7c072fbd2cdb6382a80e2db411e563152a23b6ba
1
roles/arg-delta-dm
1,839
[ "no_license" ]
[ { "path": "roles/arg-delta-dm/handlers/main.yml", "content": "---\n- name: Restart Delta DM\n ansible.builtin.systemd:\n name: delta-dm\n state: restarted\n daemon_reload: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 120 }, { "path": "roles/arg-...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3091, "all_permissive": false }
ansible_role
application-research/delta-dm-playbook
7c072fbd2cdb6382a80e2db411e563152a23b6ba
1
roles/arg-delta-web
1,839
[ "no_license" ]
[ { "path": "roles/arg-delta-web/tasks/main.yml", "content": "---\n- name: Ensure Delta Web compile directory exists\n ansible.builtin.file:\n path: \"{{ delta_web_compile_dir }}\"\n state: directory\n owner: \"{{ delta_system_user | default('delta') }}\"\n group: \"{{ delta_system_group | defaul...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 3022, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/apt-cli
1,839
[ "no_license" ]
[ { "path": "roles/apt-cli/vars/main.yml", "content": "apt_packages:\n - { name: cmake }\n - { name: curl }\n - { name: cifs-utils }\n - { name: colordiff }\n - { name: emacs }\n - { name: gdb-multiarch }\n - { name: gist }\n - { name: git }\n - { name: git-lfs }\n - { name: hexedit }\n - { name: h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1217, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/apt-gui
1,839
[ "no_license" ]
[ { "path": "roles/apt-gui/tasks/main.yml", "content": "- name: apt-get update\n apt: update_cache=yes\n become: yes\n\n- name: apt-get upgrade\n apt: upgrade=dist\n become: yes\n\n- name: install packages\n apt: name=\"{{ item.name }}\" state=\"{{ item.state|default(\"latest\") }}\"\n with_items: \"{{a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 674, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/atom
1,839
[ "no_license" ]
[ { "path": "roles/atom/files/conf/.editorconfig", "content": "root = true\n\n[*]\nend_of_line = lf\ncharset = utf-8\ntrim_trailing_whitespace = true\ninsert_final_newline = true\n\n[*.md]\ntrim_trailing_whitespace = false\n\n[*.py]\nindent_style = space\nindent_size = 4\n\n\n# 4 space indentation\n\nroot = t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3512, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/chrome
1,839
[ "no_license" ]
[ { "path": "roles/chrome/tasks/main.yml", "content": "- name: check google chrome is installed?\n command: which google-chrome\n ignore_errors: True\n register: chrome_exist\n\n- name: create a working directory\n file: path=~/temp/ state=directory mode=0755\n when: chrome_exist is failed\n\n- name: reg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 852, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/color
1,839
[ "no_license" ]
[ { "path": "roles/color/tasks/main.yml", "content": "- name: create a working directory\n file: path=~/temp/ state=directory mode=0755\n\n- name: register a working directory full path\n command: find ~/temp -maxdepth 0\n register: workdir_result\n\n- name: git clone dircolors solarized\n git: repo=https...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 472, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/container
1,839
[ "no_license" ]
[ { "path": "roles/container/tasks/main.yml", "content": "- name: create a working directory\n file: path=~/temp/ state=directory mode=0755\n\n- name: register a working directory full path\n command: find ~/temp -maxdepth 0\n register: workdir_result\n\n- name: install dependency packages\n apt:\n pkg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1657, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/fff
1,839
[ "no_license" ]
[ { "path": "roles/fff/templates/fff.zsh", "content": "f() {\n fff \"$@\"\n cd \"$(cat \"${XDG_CACHE_HOME:=${HOME}/.cache}/fff/.fff_d\")\"\n}\nf() {\n fff \"$@\"\n cd \"$(cat \"${XDG_CACHE_HOME:=${HOME}/.cache}/fff/.fff_d\")\"\n}\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 987, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/gcp
1,839
[ "no_license" ]
[ { "path": "roles/gcp/tasks/main.yml", "content": "- name: install dependency packages\n apt:\n pkg:\n - ca-certificates\n - gnupg\n - apt-transport-https\n update_cache: yes\n become: yes\n\n- name: add gcloud cli distribution uri as a package resource\n shell: >\n echo\n \"deb [sign...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 736, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/ghq
1,839
[ "no_license" ]
[ { "path": "roles/ghq/tasks/main.yml", "content": "- name: Install ghq\n shell: . ~/.zshrc && go get github.com/x-motemen/ghq\n args:\n executable: /usr/bin/zsh\n\n# - name: Install github-list-starred\n# command: go get github.com/motemen/github-list-starred\n#\n# - name: Import github starred reposi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 308, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/git
1,839
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "- name: create ~/src directory\n file: path=~/src/ state=directory\n\n- name: create ~/bin directory\n file: path=~/bin state=directory\n\n- name: Set ghq.root to $GOPATH/src\n git_config: name=ghq.root scope=global value=~/src\n\n- name: set user.name\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2054, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/gnome
1,839
[ "no_license" ]
[ { "path": "roles/gnome/tasks/main.yml", "content": "- name: create a working directory\n file: path=~/temp/ state=directory mode=0755\n\n- name: register a working directory full path\n command: find ~/temp -maxdepth 0\n register: workdir_result\n\n- name: Get latest pop shell version\n shell: >\n cu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1722, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/go
1,839
[ "no_license" ]
[ { "path": "roles/go/templates/go.zsh", "content": "export PATH=$PATH:/usr/local/go/bin\nexport GOPATH=$HOME\nexport PATH=$PATH:$GOPATH/bin\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 86 }, { "path": "roles/go/tasks/main.yml", "content": "- name: Get filen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 584, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/hashicorp
1,839
[ "no_license" ]
[ { "path": "roles/hashicorp/tasks/main.yml", "content": "- name: create a working directory\n file: path=~/temp/ state=directory mode=0755\n\n- name: register a working directory full path\n command: find ~/temp -maxdepth 0\n register: workdir_result\n\n- name: install dependency packages\n apt:\n pkg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 900, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/mysql-workbench
1,839
[ "no_license" ]
[ { "path": "roles/mysql-workbench/tasks/main.yml", "content": "- name: create a working directory\n file: path=~/temp/ state=directory mode=0755\n\n- name: register a working directory full path\n command: find ~/temp -maxdepth 0\n register: workdir_result\n\n- name: Get apt config file\n get_url:\n u...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 588, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/node
1,839
[ "no_license" ]
[ { "path": "roles/node/tasks/main.yml", "content": "- name: setup 14.x\n shell: 'curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -'\n become: yes\n\n- name: Install nodejs 14.x\n apt: name=nodejs state=present\n become: yes", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 185, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/oh-my-zsh
1,839
[ "no_license" ]
[ { "path": "roles/oh-my-zsh/templates/general.zsh", "content": "export LANG=en_US.UTF-8\nalias ls=\"ls -a --color=auto\"\nalias t=\"tig\"\nalias ta=\"tig --all\"\nalias xclip=\"xclip -selection c\"\nexport PATH=$PATH:~/tools\nexport PATH=$PATH:~/.local/bin\nexport PATH=$PATH:~/.yarn/bin\nexport HOST=${HOST}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 2598, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/peco
1,839
[ "no_license" ]
[ { "path": "roles/peco/templates/peco.zsh", "content": "function peco-select-history() {\n local tac\n if which tac > /dev/null; then\n tac=\"tac\"\n else\n tac=\"tail -r\"\n fi\n BUFFER=$(\\history -n 1 | \\\n eval $tac | \\\n peco --query \"$LBUFFER\")\n CURSOR...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2015, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/percol
1,839
[ "no_license" ]
[ { "path": "roles/percol/templates/percol.zsh", "content": "function percol-select-history() {\n local tac\n if which tac > /dev/null; then\n tac=\"tac\"\n else\n tac=\"tail -r\"\n fi\n BUFFER=$(\\history -n 1 | \\\n eval $tac | \\\n percol --query \"$LBUFFER\")\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1316, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/python
1,839
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "- name: check pyenv is installed?\n command: which pyenv\n ignore_errors: True\n register: pyenv_exist\n\n- name: install pyenv\n shell: curl https://pyenv.run | bash\n when: pyenv_exist is failed\n\n- name: check poetry is installed?\n command: whi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 958, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/rust
1,839
[ "no_license" ]
[ { "path": "roles/rust/tasks/main.yml", "content": "- name: create a working directory\n file: path=~/temp/ state=directory mode=0755\n\n- name: register a working directory full path\n command: find ~/temp -maxdepth 0\n register: workdir_result\n\n- name: download rustup\n get_url:\n url: \"https://s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 395, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/slack
1,839
[ "no_license" ]
[ { "path": "roles/slack/tasks/main.yml", "content": "- name: check slack is installed?\n command: which slack\n ignore_errors: True\n register: slack_exist\n\n- name: create a working directory\n file: path=~/temp/ state=directory mode=0755\n when: slack_exist is failed\n\n- name: register a working dir...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 794, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/tig
1,839
[ "no_license" ]
[ { "path": "roles/tig/tasks/main.yml", "content": "- name: create a working directory\n file: path=~/temp/ state=directory mode=0755\n\n- name: register a working directory full path\n command: find ~/temp -maxdepth 0\n register: workdir_result\n\n- name: Get latest tig version\n shell: >\n curl -sI h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1958, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/tmux
1,839
[ "no_license" ]
[ { "path": "roles/tmux/templates/22", "content": "#!/bin/bash\ntmux splitw -h -p 50 # split it into two halves\ntmux splitw -v -t 0 -p 50 # split it into two halves\ntmux splitw -v -t 1 -p 50 # split it into two halves\nif [ $# -eq 1 ]; then\n tmux rename-window $1\nfi", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3389, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/usb
1,839
[ "no_license" ]
[ { "path": "roles/usb/tasks/main.yml", "content": "- name: copy usb setting file to /etc/udev/\n template: src=50-myusb.rules dest=/etc/udev/ mode=0644\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 115 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 115, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/vim
1,839
[ "no_license" ]
[ { "path": "roles/vim/templates/.vimrc.j2", "content": "autocmd Filetype gitcommit setlocal spell textwidth=72\nset backspace=indent,eol,start\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 86 }, { "path": "roles/vim/tasks/main.yml", "content": "- name: copy ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 160, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/vscode
1,839
[ "no_license" ]
[ { "path": "roles/vscode/files/settings.json", "content": "// Place your settings in this file to overwrite the default settings\n{\n \"workbench.welcome.enabled\": false,\n \"editor.copyWithSyntaxHighlighting\": false,\n \"files.autoSave\": \"onFocusChange\",\n \"editor.renderIndentGuides\": tru...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 6666, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/xkeysnail
1,839
[ "no_license" ]
[ { "path": "roles/xkeysnail/templates/xkeysnail.service.j2", "content": "# 1. Copy this to ~/.config/systemd/user/xkeysnail.service\n# 2. systemctl --user enable xkeysnail\n#\n# Note that you need to set proper $DISPLAY on your environment.\n\n[Unit]\nDescription=xkeysnail\n\n[Service]\nKillMode=process\nExe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1922, "all_permissive": false }
ansible_role
yosmoc/Ubuntu-bootstrap
1a752638d74a80904ed395a8109914e12aca1992
6
roles/xremap
1,839
[ "no_license" ]
[ { "path": "roles/xremap/templates/.xremap.conf.j2", "content": "window class_not: ['gnome-terminal-server', 'code'] do\n # emacs-like bindings\n remap 'C-b', to: 'Left'\n remap 'C-f', to: 'Right'\n remap 'C-p', to: 'Up'\n remap 'C-n', to: 'Down'\n\n remap 'C-s', to: 'C-f'\n remap 'C-h', to: 'BackSpac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2708, "all_permissive": false }
ansible_role
StevenSermeus/vsloader
21cee307be2bd5ed309a20afee2ab7ec2b98af16
0
ansible/ansible/roles/bootstrap_ansible
1,839
[ "no_license" ]
[ { "path": "ansible/ansible/roles/bootstrap_ansible/tasks/main.yml", "content": "# Create new user for ansible\n- name: Create new user group\n become: true\n ansible.builtin.group:\n name: ansible\n state: present\n\n- name: Create new user for ansible\n become: true\n ansible.builtin.user: # coul...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2272, "all_permissive": false }
ansible_role
StevenSermeus/vsloader
21cee307be2bd5ed309a20afee2ab7ec2b98af16
0
ansible/ansible/roles/grafana_install
1,839
[ "no_license" ]
[ { "path": "ansible/ansible/roles/grafana_install/tasks/main.yml", "content": "- name: Add Grafana repository\n yum_repository:\n name: \"grafana\"\n description: \"grafana YUM repository\"\n baseurl: \"https://rpm.grafana.com\"\n gpgcheck: true\n repo_gpgcheck: true\n gpgkey: \"https://rp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1323, "all_permissive": false }
ansible_role
StevenSermeus/vsloader
21cee307be2bd5ed309a20afee2ab7ec2b98af16
0
ansible/ansible/roles/pve_exporter
1,839
[ "no_license" ]
[ { "path": "ansible/ansible/roles/pve_exporter/tasks/main.yml", "content": "- name: Check if pve_exporter user exists\n command: pveum user list\n register: pve_exporter_user\n changed_when: false\n\n- name: Add pveum user\n command: pveum user add pve-exporter@pve -password <PASSWORD>\n when: pve_expor...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1983, "all_permissive": false }
ansible_role
BrijKaur/esc
9d0f4cb636be59427546a282fd65b06f9555f3cb
0
roles/configcluster
1,839
[ "no_license" ]
[ { "path": "roles/configcluster/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/configcluster", "license_type": "no_license", "detected_licenses": [], "size_bytes": 77 }, { "path": "roles/configcluster/tasks/main.yml", "content": "---\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 707, "all_permissive": false }
ansible_role
BrijKaur/esc
9d0f4cb636be59427546a282fd65b06f9555f3cb
0
roles/demo
1,839
[ "no_license" ]
[ { "path": "roles/demo/tasks/main.yml", "content": "---\n# tasks file for roles/demo\n - name: Ensure that elasticsearch is restarted\n service:\n name: elasticsearch\n state: restarted\n\n - name: Demonstrate functionality\n shell: curl -k -uelastic:elastic https://localhost:9200/_cluster/hea...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 309, "all_permissive": false }
ansible_role
BrijKaur/esc
9d0f4cb636be59427546a282fd65b06f9555f3cb
0
roles/forES
1,839
[ "no_license" ]
[ { "path": "roles/forES/vars/main.yml", "content": "---\n# vars file for roles/forES", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "roles/forES/tasks/main.yml", "content": "---\n# tasks file for roles/forES\n - name: Setting Private IPs of all ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 1353, "all_permissive": false }
ansible_role
BrijKaur/esc
9d0f4cb636be59427546a282fd65b06f9555f3cb
0
roles/installAWS
1,839
[ "no_license" ]
[ { "path": "roles/installAWS/defaults/main.yml", "content": "---\n# defaults file for roles/installAWS", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "roles/installAWS/tasks/main.yml", "content": "---\n - name: launch ec2\n ec2: \n instanc...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 884, "all_permissive": false }
ansible_role
BrijKaur/esc
9d0f4cb636be59427546a282fd65b06f9555f3cb
0
roles/setmaster
1,839
[ "no_license" ]
[ { "path": "roles/setmaster/handlers/main.yml", "content": "---\n# handlers file for roles/setmaster", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "roles/setmaster/defaults/main.yml", "content": "---\n# defaults file for roles/setmaster", "...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1142, "all_permissive": false }
ansible_role
BrijKaur/esc
9d0f4cb636be59427546a282fd65b06f9555f3cb
0
roles/setnode1
1,839
[ "no_license" ]
[ { "path": "roles/setnode1/tasks/main.yml", "content": "---\n# tasks file for roles/setnode1\n - name: Replace elasticsearch.yml for node1\n template:\n src: /etc/ansible/elasticsearch_n1.yml.j2\n dest: /etc/elasticsearch/elasticsearch.yml\n \n - name: Copy certificate to node1\n copy:\n sr...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 611, "all_permissive": false }
ansible_role
BrijKaur/esc
9d0f4cb636be59427546a282fd65b06f9555f3cb
0
roles/setnode2
1,839
[ "no_license" ]
[ { "path": "roles/setnode2/defaults/main.yml", "content": "---\n# defaults file for roles/setnode2", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/setnode2/tasks/main.yml", "content": "---\n# tasks file for roles/setnode2\n - name: Replace...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 638, "all_permissive": false }
ansible_role
BrijKaur/esc
9d0f4cb636be59427546a282fd65b06f9555f3cb
0
roles/sshAWS
1,839
[ "no_license" ]
[ { "path": "roles/sshAWS/vars/main.yml", "content": "---\n# vars file for roles/sshAWS", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "roles/sshAWS/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 415, "all_permissive": false }
ansible_role
egi-qc/ansible-grid-clients
cd6ba319c50506367fde17d4db57e2dd24e09519
0
roles/grid-clients
1,839
[ "permissive" ]
[ { "path": "roles/grid-clients/tasks/main.yml", "content": "- name: Install Grid clients\n package:\n name: \"{{ item }}\"\n state: latest\n with_items:\n - \"{{ pkg_list }}\"\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 118 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 429, "all_permissive": true }
ansible_role
MisumiRize/home-provisioning
1084bb644d05c2c913d6f12a471c01ac518a68e2
0
roles/botkit
1,839
[ "no_license" ]
[ { "path": "roles/botkit/tasks/main.yml", "content": "- name: configure botkit service\n template: src=templates/botkit.service dest=/etc/systemd/system/botkit.service\n tags: botkit\n\n- name: enable botkit service\n service: name=botkit enabled=yes\n tags: botkit\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 210, "all_permissive": false }
ansible_role
MisumiRize/home-provisioning
1084bb644d05c2c913d6f12a471c01ac518a68e2
0
roles/common
1,839
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: configure sshd\n copy: src=files/sshd_config dest=/etc/ssh/sshd_config\n notify: restart sshd service\n tags: sshd\n\n- name: install screen\n apt: name=screen update_cache=yes\n tags: apt\n\n- name: detect architecture\n shell: uname -m\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2737, "all_permissive": false }
ansible_role
MisumiRize/home-provisioning
1084bb644d05c2c913d6f12a471c01ac518a68e2
0
roles/docker
1,839
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: register docker apt respository\n copy: src=files/docker.list dest=/etc/apt/sources.list.d/docker.list\n tags: docker\n\n- name: register docker apt repository gpg key\n shell: apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 835, "all_permissive": false }
ansible_role
MisumiRize/home-provisioning
1084bb644d05c2c913d6f12a471c01ac518a68e2
0
roles/node
1,839
[ "no_license" ]
[ { "path": "roles/node/vars/main.yml", "content": "mackerel_force_current_version: false\nnode_version: 6.2.0\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 58 }, { "path": "roles/node/tasks/main.yml", "content": "- name: fetch releases of nvm\n uri: url=htt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1534, "all_permissive": false }
ansible_role
MisumiRize/home-provisioning
1084bb644d05c2c913d6f12a471c01ac518a68e2
0
roles/raspberrypi
1,839
[ "no_license" ]
[ { "path": "roles/raspberrypi/tasks/main.yml", "content": "- name: install fswebcam\n apt: name=fswebcam\n tags: raspberrypi-apt\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 70, "all_permissive": false }
ansible_role
ramrexx/CloudForms_Amazon_Essentials
d139f2546bcbc200bbda9828052c60b0416b69e5
4
ansible/roles/ec2_provision
1,839
[ "permissive" ]
[ { "path": "ansible/roles/ec2_provision/meta/main.yml", "content": "galaxy_info:\n author: ramrexx\n description: ec2_basic_provision\n company:\n license: Apache\n issue_tracker_url:\n github_branch:\n min_ansible_version: 2.4\n platforms:\n name: EL\n versions:\n - 7\n categories:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1530, "all_permissive": true }
ansible_role
ramrexx/CloudForms_Amazon_Essentials
d139f2546bcbc200bbda9828052c60b0416b69e5
4
ansible/roles/ec2_vmname
1,839
[ "permissive" ]
[ { "path": "ansible/roles/ec2_vmname/tasks/main.yml", "content": "---\n- name: Generating VM name(s)\n set_fact:\n vm_names: \"{{ vm_names + [ item ] }}\"\n with_sequence: start=1 end=\"{{ count }}\" format=\"{{ name_format }}\"\n\n- name: Log item.instance.ipv4\n debug:\n var: vm_names\n\n# Add you...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 525, "all_permissive": true }
ansible_role
viplavmore/BackupViaArchive
b8322bc01463cd3ce20f62d33eda171ec24c0550
0
roles/archive
1,719
[ "no_license" ]
[ { "path": "roles/archive/tasks/main.yml", "content": "---\n- name: Take backup\n archive:\n path: /etc/apt/*\n dest: /opt/{{ ansible_date_time.date }}.tar.gz\n# format: gz\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 123 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 123, "all_permissive": false }
ansible_role
seriwb/grpc-sample
3760d3d2768a813cc26b2a4f40dec0dda0c456df
0
ansible/roles/common
1,719
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/git.yml", "content": "- name: git download\n get_url: url=https://github.com/git/git/archive/v{{ git_version }}.tar.gz dest={{ src_dir }}/git-{{ git_version }}.tar.gz\n tags:\n - common\n - git\n - download\n\n- name: git unarchive\n unarchive: src={{ src_di...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 2232, "all_permissive": false }
ansible_role
seriwb/grpc-sample
3760d3d2768a813cc26b2a4f40dec0dda0c456df
0
ansible/roles/fabric
1,719
[ "no_license" ]
[ { "path": "ansible/roles/fabric/tasks/main.yml", "content": "---\n- name: download get-pip\n get_url: url=https://bootstrap.pypa.io/get-pip.py dest={{ src_dir }}\n tags:\n - pip\n - fabric\n - download\n\n- name: install pip\n shell: python get-pip.py\n args:\n chdir: \"{{ src_dir }}\"\n ta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 361, "all_permissive": false }
ansible_role
seriwb/grpc-sample
3760d3d2768a813cc26b2a4f40dec0dda0c456df
0
ansible/roles/go
1,719
[ "no_license" ]
[ { "path": "ansible/roles/go/tasks/main.yml", "content": "---\n- name: download go\n get_url:\n url: https://storage.googleapis.com/golang/go{{ go_version }}.linux-amd64.tar.gz\n dest: \"{{ src_dir }}\"\n checksum: sha256:{{ go_sha256 }}\n tags:\n - go\n - download\n\n- name: unarchive go\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 685, "all_permissive": false }
ansible_role
seriwb/grpc-sample
3760d3d2768a813cc26b2a4f40dec0dda0c456df
0
ansible/roles/gradle
1,719
[ "no_license" ]
[ { "path": "ansible/roles/gradle/tasks/main.yml", "content": "- name: download Gradle\n get_url: >\n url=https://services.gradle.org/distributions/gradle-{{ gradle_version }}-bin.zip\n dest={{ src_dir }}\n timeout=1000\n tags:\n - gradle\n - download\n\n- name: unarchive the compressed Gradl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 777, "all_permissive": false }
ansible_role
seriwb/grpc-sample
3760d3d2768a813cc26b2a4f40dec0dda0c456df
0
ansible/roles/grpc
1,719
[ "no_license" ]
[ { "path": "ansible/roles/grpc/go/tasks/main.yml", "content": "---\n- name: install gRPC for Go\n shell: go get google.golang.org/grpc\n tags:\n - grpc\n - grpc-go\n\n- name: install protocol-buffer for Go\n shell: go get -u github.com/golang/protobuf/{proto,protoc-gen-go}\n tags:\n - grpc\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1332, "all_permissive": false }
ansible_role
seriwb/grpc-sample
3760d3d2768a813cc26b2a4f40dec0dda0c456df
0
ansible/roles/nginx
1,719
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "---\n- name: install nginx\n yum: name=nginx state=present\n tags: nginx\n\n- name: chmod nginx log directory to read\n file: path={{ nginx_log_dir }} mode=0744\n tags: nginx\n\n- name: create log directory\n file: path={{ nginx_log_dir }}/com...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3339, "all_permissive": false }
ansible_role
seriwb/grpc-sample
3760d3d2768a813cc26b2a4f40dec0dda0c456df
0
ansible/roles/nodejs
1,719
[ "no_license" ]
[ { "path": "ansible/roles/nodejs/raml/tasks/main.yml", "content": "---\n- name: install raml2html\n shell: npm i -g raml2html\n tags:\n - nodejs\n - raml\n - install\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 104 }, { "path": "ansible/roles/nodejs/...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 713, "all_permissive": false }
ansible_role
seriwb/grpc-sample
3760d3d2768a813cc26b2a4f40dec0dda0c456df
0
ansible/roles/php
1,719
[ "no_license" ]
[ { "path": "ansible/roles/php/pecl-memcached/tasks/memcached7.yml", "content": "---\n- name: extract pecl memcached source code\n git:\n repo: https://github.com/php-memcached-dev/php-memcached.git\n dest: \"{{ src_dir }}/php-memcached\"\n version: php7\n depth: 1\n register: task_result\n tag...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 13, "total_bytes": 18025, "all_permissive": false }
ansible_role
seriwb/grpc-sample
3760d3d2768a813cc26b2a4f40dec0dda0c456df
0
ansible/roles/ruby
1,719
[ "no_license" ]
[ { "path": "ansible/roles/ruby/tasks/main.yml", "content": "- name: install readline-devel\n yum: name=readline-devel state=present\n become: yes\n tags: ruby\n\n- name: git clone rbenv\n git: repo=https://github.com/rbenv/rbenv.git dest=~/.rbenv\n tags: ruby\n\n- name: git clone ruby-build\n git: repo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1467, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/abi_install_complete
1,719
[ "no_license" ]
[ { "path": "roles/abi_install_complete/tasks/main.yaml", "content": "---\n- name: wait-for install-complete\n block:\n - name: Start openshift-installer with 'wait-for install-complete' (async task)\n ansible.builtin.command: openshift-install agent wait-for install-complete --dir=/root/\"{{ abi.ans...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2990, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/add_hc_workers_to_haproxy_hcp
1,719
[ "no_license" ]
[ { "path": "roles/add_hc_workers_to_haproxy_hcp/tasks/main.yaml", "content": "---\n\n- name: Get the IPs of Hosted Cluster Workers\n shell: oc get no -o wide --kubeconfig=/root/ansible_workdir/hcp-kubeconfig --no-headers|grep -i worker| awk '{print $6}'\n register: hosted_workers\n\n- name: Configuring HA...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 899, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/approve_certs
1,719
[ "no_license" ]
[ { "path": "roles/approve_certs/tasks/main.yaml", "content": "---\n\n- name: Cancel async 'approve_certs_task', if exists\n tags: approve_certs\n when: approve_certs_task is defined and approve_certs_cleanup\n ansible.builtin.async_status:\n jid: \"{{ approve_certs_task.ansible_job_id }}\"\n mode: c...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 798, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/attach_subscription
1,719
[ "no_license" ]
[ { "path": "roles/attach_subscription/tasks/main.yaml", "content": "---\n\n- name: Register server with Red Hat\n tags: attach_subscription\n community.general.redhat_subscription:\n state: present\n username: \"{{ env.redhat.username }}\"\n password: \"{{ <PASSWORD> }}\"\n auto_attach: true\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 313, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/bastion_setup_hipersocket_LPAR
1,719
[ "no_license" ]
[ { "path": "roles/bastion_setup_hipersocket_LPAR/tasks/main.yml", "content": "- name: Setting the Hipersocket card on the bastion\n command:\n cmd: \"chzdev -e {{ lpar.networking.nic.card1.dev_num.split(',')[0].split('.')[-1] }}-{{ lpar.networking.nic.card1.dev_num.split(',')[-1].split('.')[-1] }} layer...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1025, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/boot_abi_agents
1,719
[ "no_license" ]
[ { "path": "roles/boot_abi_agents/tasks/main.yml", "content": "---\n- name: Add Route To Bastion From KVM Host.\n ansible.builtin.command: \"ip route add {{ env.bastion.networking.ip }} via {{ env.bastion.networking.gateway }}\"\n ignore_errors: true\n\n- name: Get and print virsh list\n block:\n - nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 7548, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/boot_agents_hcp
1,719
[ "no_license" ]
[ { "path": "roles/boot_agents_hcp/tasks/main.yaml", "content": "---\n- name: Create qemu image for agents\n command: \"qemu-img create -f qcow2 {{ hcp.data_plane.kvm.storage.qcow.pool_path }}{{ hcp.control_plane.hosted_cluster_name }}/{{ hcp.control_plane.hosted_cluster_name }}-agent{{ item }}.qcow2 {{ hcp....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3591, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/boot_zvm_nodes
1,719
[ "no_license" ]
[ { "path": "roles/boot_zvm_nodes/tasks/main.yaml", "content": "---\n- name: Creating agents \n block:\n - name: Getting script for booting\n template:\n src: ../templates/boot_nodes.py\n dest: /root/ansible_workdir/boot_nodes.py\n\n - name: Debug \n debug: \n msg: \"Boot...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3315, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/check_dns
1,719
[ "no_license" ]
[ { "path": "roles/check_dns/tasks/main.yaml", "content": "---\n\n- name: Check internal cluster DNS resolution for the bastion\n tags: check_dns, dns\n shell: \"dig +short {{ env.bastion.networking.hostname }}.{{ env.bastion.networking.base_domain }} | tail -n1\"\n register: bastion_lookup\n failed_when:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 5070, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/check_for_lpar_nodes
1,719
[ "no_license" ]
[ { "path": "roles/check_for_lpar_nodes/tasks/main.yaml", "content": "---\n- name: Initialize variables\n set_fact:\n hosts_with_host_vars: \"{{ hosts_with_host_vars | default([]) }}\"\n node_list: \"{{ q('list',env.cluster.nodes[node_type].vm_name) | flatten }}\"\n\n- name: Check for host_var files\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 801, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/check_nodes
1,719
[ "no_license" ]
[ { "path": "roles/check_nodes/tasks/main.yaml", "content": "---\n- name: Get and print nodes status\n ansible.builtin.include_tasks: \"{{ role_path }}/../common/tasks/print_ocp_node_status.yaml\"\n\n- name: Make sure control and compute nodes are 'Ready' before continuing (retry every 20s)\n tags: check_no...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 586, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/cleanup_kvm
1,719
[ "no_license" ]
[ { "path": "roles/cleanup_kvm/tasks/main.yaml", "content": "---\n\n- name: Cleaning up install data\n tags: cleanup_kvm\n block:\n - name: Delete downloaded iso image\n file:\n path: \"/var/lib/libvirt/images/agent.{{ ansible_architecture }}.iso\"\n state: absent\n when: abi.boot...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 263, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/common
1,719
[ "no_license" ]
[ { "path": "roles/common/vars/aarch64/vars.yaml", "content": "---\n_vm_console: \"console=ttyAMA0\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/common/tasks/print_ocp_node_status.yaml", "content": "---\n- name: Get and print OCP node...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 1207, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/configure_storage
1,719
[ "no_license" ]
[ { "path": "roles/configure_storage/templates/vdisk.xml.j2", "content": "<pool type='dir'>\n <name>{{ env.cluster.networking.metadata_name }}-vdisk</name>\n <capacity unit='gigabytes'>0</capacity>\n <allocation unit='gigabytes'>0</allocation>\n <available unit='gigabytes'>0</available>\n <source>\n </s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3506, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_agent
1,719
[ "no_license" ]
[ { "path": "roles/create_agent/tasks/main.yml", "content": "---\n\n- name: Create Agent Using PXE Boot (fips = false)\n ansible.builtin.command: openshift-install agent create pxe-files --log-level=debug\n args:\n chdir: ~/{{ abi.ansible_workdir }}\n when: abi.boot_method | lower == \"pxe\" and not ins...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2324, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_agentserviceconfig_hcp
1,719
[ "no_license" ]
[ { "path": "roles/create_agentserviceconfig_hcp/templates/agent_service_config.yaml.j2", "content": "apiVersion: agent-install.openshift.io/v1beta1\nkind: AgentServiceConfig\nmetadata:\n name: agent\nspec:\n mirrorRegistryRef:\n name: mirror-config\n databaseStorage:\n accessModes:\n - ReadWriteO...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2781, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_bastion
1,719
[ "no_license" ]
[ { "path": "roles/create_bastion/tasks/main.yaml", "content": "---\n- name: Create a directory on the KVM host server for bastion configuration files\n become: false\n tags: create_bastion\n ansible.builtin.file:\n path: \"{{ env.file_server.cfgs_dir }}/{{ env.bastion.networking.hostname }}\"\n mode...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 13244, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_bastion_hcp
1,719
[ "no_license" ]
[ { "path": "roles/create_bastion_hcp/tasks/main.yaml", "content": "---\n- name: Get ssh key of local host\n ansible.builtin.shell: cat {{ lookup('env', 'HOME') }}/.ssh/{{ hcp.ansible_key_name }}.pub\n register: ssh_output\n delegate_to: localhost\n\n- name: Load ssh_key into a variable\n set_fact:\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3999, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_bootstrap
1,719
[ "no_license" ]
[ { "path": "roles/create_bootstrap/tasks/main.yaml", "content": "---\n\n# Always creates a new bootstrap VM\n- name: Start bootstrap installation\n tags: create_bootstrap\n ansible.builtin.shell: |\n virsh destroy {{ env.cluster.nodes.bootstrap.vm_name }} || true\n virsh undefine {{ env.cluster.nodes...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2589, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_compute_node
1,719
[ "no_license" ]
[ { "path": "roles/create_compute_node/tasks/main.yaml", "content": "---\n\n# Paranoia check. This task should be executed only from ONE host\n- name: Check role/task parameters\n tags: create_compute_node\n ansible.builtin.fail:\n msg: \"Error: too many hosts defined in ansible play: {{ ansible_play_hos...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 5040, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_compute_nodes
1,719
[ "no_license" ]
[ { "path": "roles/create_compute_nodes/tasks/main.yaml", "content": "---\n\n- name: Install CoreOS on compute nodes\n tags: create_compute_nodes\n shell: |\n virsh destroy {{ env.cluster.nodes.compute.vm_name[i] }} || true\n virsh undefine {{ env.cluster.nodes.compute.vm_name[i] }} --remove-all-stora...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 11532, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_control_nodes
1,719
[ "no_license" ]
[ { "path": "roles/create_control_nodes/tasks/main.yaml", "content": "---\n\n- name: Create CoreOS control nodes on the the KVM host.\n tags: create_control_nodes\n shell: |\n virt-install \\\n --name {{ env.cluster.nodes.control.vm_name[i] }} \\\n --osinfo detect=on,name={{ ('rhel8.6') if rhcos_os...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 9923, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_hcp_InfraEnv
1,719
[ "no_license" ]
[ { "path": "roles/create_hcp_InfraEnv/templates/InfraEnv.yaml.j2", "content": "apiVersion: agent-install.openshift.io/v1beta1\nkind: InfraEnv\nmetadata:\n name: \"{{ hcp.control_plane.hosted_cluster_name }}\"\n namespace: \"{{ hcp.control_plane.hosted_cluster_name }}-agents\"\nspec:\n{% if hcp.data_plane.k...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 8198, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_inventory_setup_hcp
1,719
[ "no_license" ]
[ { "path": "roles/create_inventory_setup_hcp/templates/inventory_template.j2", "content": "[hcp]\n{% if hcp.compute_node_type | lower == 'kvm' %}\nkvm_host_hcp ansible_host={{ hcp.bastion_params.host }} ansible_user={{ hcp.bastion_params.host_user }} ansible_become_password={{ kvm_host_password }}\n{% endif ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2292, "all_permissive": false }
ansible_role
IBM/Ansible-OpenShift-Provisioning
03d6d8d6ce7781fb0c10ce38b5cfca2c9a0599fc
20
roles/create_kvm_host
1,719
[ "no_license" ]
[ { "path": "roles/create_kvm_host/tasks/main.yaml", "content": "---\n\n- name: Start LPAR\n tags: create_kvm_host\n ibm.ibm_zhmc.zhmc_partition:\n hmc_host: \"{{ hmc.host }}\"\n hmc_auth:\n userid: \"{{ hmc.auth.user }}\"\n password: \"{{ hmc.auth.<PASSWORD> }}\"\n verify: false\n c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 7618, "all_permissive": false }