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 | PatrickBernard/Ansible-wordpress-mysql-haproxy | c17a99ca4dbcc10013fe656c717a0037907a040c | 0 | roles/haproxy | 3,638 | [
"no_license"
] | [
{
"path": "roles/haproxy/tasks/main.yml",
"content": "---\n\n- name: Install haproxy\n ansible.builtin.apt:\n update_cache: true\n pkg:\n - haproxy\n\n- name: Copy config haproxy\n ansible.builtin.template:\n src: \"haproxy.cfg.j2\"\n dest: \"/etc/haproxy/haproxy.cfg\"\n mode: \"0644\"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2276,
"all_permissive": false
} |
ansible_role | PatrickBernard/Ansible-wordpress-mysql-haproxy | c17a99ca4dbcc10013fe656c717a0037907a040c | 0 | roles/mariadb | 3,638 | [
"no_license"
] | [
{
"path": "roles/mariadb/tasks/main.yml",
"content": "---\n\n- name: Install mariadb\n ansible.builtin.apt:\n update_cache: true\n pkg:\n - python3-mysqldb\n - mariadb-server\n - mariadb-client\n\n- name: Start mariadb\n ansible.builtin.service:\n name: mariadb\n state: started\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 804,
"all_permissive": false
} |
ansible_role | PatrickBernard/Ansible-wordpress-mysql-haproxy | c17a99ca4dbcc10013fe656c717a0037907a040c | 0 | roles/wordpress | 3,638 | [
"no_license"
] | [
{
"path": "roles/wordpress/templates/site.conf.j2",
"content": "<VirtualHost *:80>\n ServerName {{ site_domain }}\n ServerAlias www.{{ site_domain }}\n\n ErrorLog /var/log/apache2/{{ site_domain }}-error.log\n CustomLog /var/log/apache2/{{ site_domain }}-access.log combined\n\n <Proxy \"unix:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 4693,
"all_permissive": false
} |
ansible_role | gmontard/grafana-graphite-statsd-ansible-vagrant | 64ff3a90521d2a135e702fc214e2b8235718d9c8 | 21 | roles/common | 3,638 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "- name: update apt package cache\n apt: update_cache=yes\n when: ansible_os_family == \"Debian\"\n\n- name: get epel-repo rpm RHEL6\n get_url: dest=/tmp/epel-release.rpm url=http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1091,
"all_permissive": false
} |
ansible_role | gmontard/grafana-graphite-statsd-ansible-vagrant | 64ff3a90521d2a135e702fc214e2b8235718d9c8 | 21 | roles/grafana | 3,638 | [
"no_license"
] | [
{
"path": "roles/grafana/templates/nginx.conf.j2",
"content": "{% if grafana_nginx_enable_ssl %}\nserver {\n listen {{ grafana_nginx_listen }};\n server_name {{ grafana_nginx_server_name }};\n\n return 301 https://{{ grafana_nginx_server_name }}$request_uri;\n}\n{% endif %}\n\nserver {\n\n {% if... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 5725,
"all_permissive": false
} |
ansible_role | gmontard/grafana-graphite-statsd-ansible-vagrant | 64ff3a90521d2a135e702fc214e2b8235718d9c8 | 21 | roles/zsh | 3,638 | [
"no_license"
] | [
{
"path": "roles/zsh/tasks/main.yml",
"content": "- name: install zsh\n apt: pkg=zsh state=present\n when: ansible_os_family == 'Debian'\n\n- name: install zsh rpm\n yum: name=zsh state=latest\n when: ansible_os_family == 'RedHat'\n\n- name: install oh-my-zsh\n git: repo=https://github.com/robbyrussell... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 897,
"all_permissive": false
} |
ansible_role | shin1x1/gihyo-laravel-book-reservation | 963953bf3c16bff1a62e27acab59a6148efd144e | 14 | provision/roles/base | 3,758 | [
"no_license"
] | [
{
"path": "provision/roles/base/tasks/main.yml",
"content": "---\n- name: Stop and Disabled iptables\n service: name=iptables state=stopped enabled=no\n\n- name: Install ntp\n yum: name=ntp state=present\n\n- name: Start and Enable ntpd\n service: name=ntpd state=started enabled=yes\n\n- name: Install ba... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 505,
"all_permissive": false
} |
ansible_role | shin1x1/gihyo-laravel-book-reservation | 963953bf3c16bff1a62e27acab59a6148efd144e | 14 | provision/roles/laravel | 3,758 | [
"no_license"
] | [
{
"path": "provision/roles/laravel/tasks/main.yml",
"content": "---\n- name: Execute compoesr install\n shell: /usr/bin/composer install chdir=/share\n\n- name: Execute php artisan migrate\n shell: php artisan migrate chdir=/share\n\n- name: Execute php artisan db:seed\n shell: php artisan db:seed chdir=... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 244,
"all_permissive": false
} |
ansible_role | shin1x1/gihyo-laravel-book-reservation | 963953bf3c16bff1a62e27acab59a6148efd144e | 14 | provision/roles/mysql | 3,758 | [
"no_license"
] | [
{
"path": "provision/roles/mysql/tasks/main.yml",
"content": "---\n- name: Uninstall default mysql\n yum: name=mysql-libs state=absent\n\n- name: Add MySQL yum repository\n yum: name=http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm\n\n- name: Install MySQL\n yum: name={{ item }} state=pr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 643,
"all_permissive": false
} |
ansible_role | shin1x1/gihyo-laravel-book-reservation | 963953bf3c16bff1a62e27acab59a6148efd144e | 14 | provision/roles/php | 3,758 | [
"no_license"
] | [
{
"path": "provision/roles/php/tasks/main.yml",
"content": "---\n- name: Install epel yum repository\n yum: name=\"http://ftp.riken.jp/Linux/fedora/epel/6/i386/epel-release-6-8.noarch.rpm\"\n\n- name: Install remi yum repository\n yum: name=\"http://rpms.famillecollet.com/enterprise/remi-release-6.rpm\"\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1264,
"all_permissive": false
} |
ansible_role | Sergey-V1/Ansible_test | bd6245e21366e051bf9095fee0be9855a12396b3 | 0 | roles/nginx | 3,758 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/centos7.yml",
"content": "---\n- name: \"Install nginx via geerlingguy role\"\n include_role:\n name: geerlingguy.nginx\n tasks_from: main\n \n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 116
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 116,
"all_permissive": false
} |
ansible_role | Sergey-V1/Ansible_test | bd6245e21366e051bf9095fee0be9855a12396b3 | 0 | roles/postgresql | 3,758 | [
"no_license"
] | [
{
"path": "roles/postgresql/tasks/centos7.yml",
"content": "---\n- name: \"Install repo\"\n ansible.builtin.yum:\n name:\n - epel-release\n - centos-release-scl-rh\n - centos-release-scl\n state: \"latest\"\n update_cache: true\n\n- name: \"Install postgresql packages\"\n ansible.b... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1969,
"all_permissive": false
} |
ansible_role | Sergey-V1/Ansible_test | bd6245e21366e051bf9095fee0be9855a12396b3 | 0 | roles/xpaste-app | 3,758 | [
"no_license"
] | [
{
"path": "roles/xpaste-app/handlers/main.yml",
"content": "---\n# handlers file for xpaste-app",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 34
},
{
"path": "roles/xpaste-app/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 5312,
"all_permissive": false
} |
ansible_role | Shadow19981377/ansible-hardeninig | 707e6540316b082ad12c1e8feb479331790a381e | 0 | roles/hardening | 3,758 | [
"no_license"
] | [
{
"path": "roles/hardening/defaults/main/packages.yml",
"content": "---\npackage_list:\n - auditd\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 29
},
{
"path": "roles/hardening/tasks/packages.yml",
"content": "---\n- name: Install multiple packages using a... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 4206,
"all_permissive": false
} |
ansible_role | mohammadahsan/openstack-casestudy | a6e349e75c4d5b7e39f40cdf1705402841f50824 | 0 | ansible/roles/devstack_compute | 3,758 | [
"no_license"
] | [
{
"path": "ansible/roles/devstack_compute/templates/local.conf.j2",
"content": "[[local|localrc]]\nHOST_IP=compute_ip\nSERVICE_HOST=controller_ip\nMULTI_HOST=true\nLOGFILE=stack.sh.log\nENABLE_HTTPD_MOD_WSGI_SERVICES=False\nENABLE_HTTPD_MOD_WSGI=False\nCINDER_USE_MOD_WSGI=False\n\n\nADMIN_PASSWORD=<PASSWORD... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1128,
"all_permissive": false
} |
ansible_role | mohammadahsan/openstack-casestudy | a6e349e75c4d5b7e39f40cdf1705402841f50824 | 0 | ansible/roles/devstack_controller | 3,758 | [
"no_license"
] | [
{
"path": "ansible/roles/devstack_controller/templates/local.conf.j2",
"content": "[[local|localrc]]\nHOST_IP=controller_ip\nMULTI_HOST=true\nLOGFILE=stack.sh.log\nENABLE_HTTPD_MOD_WSGI_SERVICES=False\nENABLE_HTTPD_MOD_WSGI=False\nKEYSTONE_USE_MOD_WSGI=False\nCINDER_USE_MOD_WSGI=False\n\nADMIN_PASSWORD=<PAS... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1406,
"all_permissive": false
} |
ansible_role | mohammadahsan/openstack-casestudy | a6e349e75c4d5b7e39f40cdf1705402841f50824 | 0 | ansible/roles/ping | 3,758 | [
"no_license"
] | [
{
"path": "ansible/roles/ping/tasks/main.yml",
"content": "---\n- name: Ping the instance\n ansible.builtin.ping:",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 53
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 53,
"all_permissive": false
} |
ansible_role | kpat71/ansible | ef0fb6c15491cd2401600f0a636d278258d28ed8 | 1 | roles/nginx | 3,758 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n# install Nginx server\n- name: Enable amazon-linux-extras packages\n shell: \"amazon-linux-extras enable nginx1.12\"\n when: ansible_distribution == 'Amazon'\n\n- name: Install Nginx yum\n yum:\n name: \n - nginx\n when: ansible_pkg_mg... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1183,
"all_permissive": false
} |
ansible_role | kpat71/ansible | ef0fb6c15491cd2401600f0a636d278258d28ed8 | 1 | roles/update | 3,758 | [
"no_license"
] | [
{
"path": "roles/update/tasks/main.yml",
"content": "---\n# update packager yum based systems\n- name: Update all packages\n yum: \n update_cache: yes\n name: \"*\"\n state: latest\n when: ansible_pkg_mgr == \"yum\" \n\n # Update apt packages to latest version \n- name: Upgrade all packages to... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 379,
"all_permissive": false
} |
ansible_role | kpat71/ansible | ef0fb6c15491cd2401600f0a636d278258d28ed8 | 1 | roles/users | 3,758 | [
"no_license"
] | [
{
"path": "roles/users/tasks/main.yml",
"content": "---\n- name: Add SSH users\n user: \n state: \"present\" \n name: \"{{ item.name }}\"\n shell: /bin/bash\n with_items: \"{{ users }}\" \n \n- name: Set authorized key, removing all the authorized keys already set\n authorized_key:\n user... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 578,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/ansible | 3,758 | [
"no_license"
] | [
{
"path": "roles/ansible/tasks/install-ubuntu.yml",
"content": "---\n# https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#latest-releases-via-apt-ubuntu\n\n- name: Install required packages\n package:\n name: \"{{ package }}\"\n loop_control:\n loop_var: package\n wi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 515,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/apache | 3,758 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/main.yml",
"content": "---\n- name: Install Apache2 package\n package:\n name: \"{{ item }}\"\n with_items:\n - apache2\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 98
},
{
"path": "roles/apache/handlers/main.yml",
"co... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 317,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/app | 3,758 | [
"no_license"
] | [
{
"path": "roles/app/tasks/main.yml",
"content": "---\n- block:\n - name: Install packages\n package:\n name: \"{{ item }}\"\n with_items:\n - \"{{ package_install }}\"\n ignore_errors: \"{{ package_ignore_errors }}\"\n\n when: package_install\n\n- block:\n - name: Uninstall packages\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 669,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/apt-cacher | 3,758 | [
"no_license"
] | [
{
"path": "roles/apt-cacher/tasks/main.yml",
"content": "---\n- name: Install apt-cacher-ng\n package:\n name: \"{{ item }}\"\n state: installed\n with_items:\n - apt-cacher-ng\n\n- name: Enable PassThrough for HTTPS\n lineinfile:\n line: \"PassThroughPattern: .*\"\n dest: /etc/apt-cacher-... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 627,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/asterisk | 3,758 | [
"no_license"
] | [
{
"path": "roles/asterisk/handlers/main.yml",
"content": "---\n- name: service asterisk start\n service:\n name: asterisk\n state: started\n\n- name: service asterisk stop\n service:\n name: asterisk\n state: stopped\n\n- name: service asterisk restart\n service:\n name: asterisk\n stat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 409,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/atomeditor | 3,758 | [
"no_license"
] | [
{
"path": "roles/atomeditor/defaults/main.yml",
"content": "atomeditor_packages:\n - atom-beautify\n - sort-lines\n - sorter\n\natomeditor_mimetypes:\n - text/plain\n - text/x-shellscript\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 126
},
{
"path": "role... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1049,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/autofs | 3,758 | [
"no_license"
] | [
{
"path": "roles/autofs/handlers/main.yml",
"content": "---\n- name: autofs restart\n service:\n name: autofs\n state: restarted\n\n- name: autofs restart\n service:\n name: autofs\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 149
},
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 703,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/certbot | 3,758 | [
"no_license"
] | [
{
"path": "roles/certbot/tasks/main.yml",
"content": "---\n- name: Install required packages\n package:\n name: \"{{ item }}\"\n with_items:\n - software-properties-common\n\n- name: Add certbot PPA repository\n apt_repository:\n repo: ppa:certbot/certbot\n update_cache: yes\n\n- name: Instal... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 699,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/cron | 3,758 | [
"no_license"
] | [
{
"path": "roles/cron/handlers/main.yml",
"content": "---\n- name: cron start\n service:\n name: cron\n state: started\n\n- name: cron restart\n service:\n name: cron\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 137
},
{
"path"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 242,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/cron-apt | 3,758 | [
"no_license"
] | [
{
"path": "roles/cron-apt/tasks/main.yml",
"content": "---\n- name: Enable automatic update of APT package list\n apt:\n name: \"{{ item }}\"\n install_recommends: no\n with_items:\n - cron-apt\n notify: cron restart\n",
"license_type": "no_license",
"detected_licenses": [],
"size_by... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 192,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/devstack | 3,758 | [
"no_license"
] | [
{
"path": "roles/devstack/tasks/main.yml",
"content": "---\n- name: Configure sudoers for user {{ devstack_user }}\n blockinfile:\n dest: /etc/sudoers\n content: \"{{ devstack_user }} ALL=(ALL) NOPASSWD: ALL\"\n\n- name: Clone devstack\n git:\n repo: https://git.openstack.org/openstack-dev/devsta... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 954,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/dma | 3,758 | [
"no_license"
] | [
{
"path": "roles/dma/tasks/install-debian-wheezy.yml",
"content": "---\n- name: Add Debian squeeze repository\n apt_repository:\n repo: \"deb http://archive.debian.org/debian squeeze main\"\n update_cache: yes\n changed_when: false\n\n- include: install.yml\n\n- name: Remove Debian squeeze repositor... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1393,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/dnsmasq | 3,758 | [
"no_license"
] | [
{
"path": "roles/dnsmasq/handlers/main.yml",
"content": "---\n- name: service dnsmasq restart\n service:\n name: dnsmasq\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 86
},
{
"path": "roles/dnsmasq/tasks/main.yml",
"content": "---\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 217,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/docker | 3,758 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n- include: \"{{ item }}\"\n with_first_found:\n - install-{{ ansible_distribution|lower }}-{{ ansible_distribution_release }}.yml\n - install-{{ ansible_distribution|lower }}.yml\n - install.yml\n",
"license_type": "no_license",
"detec... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1195,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/dovecot | 3,758 | [
"no_license"
] | [
{
"path": "roles/dovecot/tasks/main.yml",
"content": "---\n- name: Install Dovecot\n package:\n name: \"{{ item }}\"\n with_items:\n - dovecot-imapd\n\n- name: Configure Dovecot\n template:\n src: \"{{ item }}\"\n dest: \"/{{ item }}\"\n mode: 0640\n with_items:\n - etc/dovecot/conf.d/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 500,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/gimp | 3,758 | [
"no_license"
] | [
{
"path": "roles/gimp/tasks/main.yml",
"content": "---\n- name: Install required packages\n package:\n name: \"{{ package }}\"\n loop_control:\n loop_var: package\n with_items:\n - software-properties-common\n\n- name: Add Gimp repository\n apt_repository:\n repo: ppa:otto-kesselgulasch/gimp... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 397,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/git | 3,758 | [
"no_license"
] | [
{
"path": "roles/git/tasks/main.yml",
"content": "---\n- name: Install Git package\n package:\n name: git\n\n- name: Configure Git\n git_config:\n scope: global\n name: \"{{ item.name }}\"\n value: \"{{ item.value }}\"\n with_items:\n - name: user.name\n value: \"{{ git_user_name }}\"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 448,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/gitlab | 3,758 | [
"no_license"
] | [
{
"path": "roles/gitlab/tasks/main.yml",
"content": "---\n- name: Install required packages\n package:\n name: \"{{ item }}\"\n with_items:\n - apt-transport-https\n - ca-certificates\n - cron\n - curl\n\n- name: Disable Proxy for packages.gitlab.com\n lineinfile:\n line: 'Acquire::HTTP... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 910,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/gitlab-runner | 3,758 | [
"no_license"
] | [
{
"path": "roles/gitlab-runner/tasks/main.yml",
"content": "---\n# https://docs.gitlab.com/runner/install/linux-repository.html\n\n- name: Install required packages\n package:\n name: \"{{ item }}\"\n with_items:\n - apt-transport-https\n # - debian-archive-keyring\n\n- name: Add GitLab repositor... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 861,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/gnome-flashback | 3,758 | [
"no_license"
] | [
{
"path": "roles/gnome-flashback/tasks/main.yml",
"content": "---\n- name: Install GNOME Flashback and required packages\n package:\n name: \"{{ item }}\"\n with_items:\n - gnome-session-flashback\n - gnome-tweak-tool\n - gtk2-engines-pixbuf\n",
"license_type": "no_license",
"detected_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 185,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/gogs | 3,758 | [
"no_license"
] | [
{
"path": "roles/gogs/handlers/main.yml",
"content": "---\n- name: gogs restart\n service:\n name: gogs\n state: restarted\n\n- name: gogs start\n service:\n name: gogs\n state: started\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 137
},
{
"path"... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 4242,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/grafana | 3,758 | [
"no_license"
] | [
{
"path": "roles/grafana/tasks/main.yml",
"content": "---\n- name: Add Grafana repository key\n apt_key:\n url: https://packagecloud.io/gpg.key\n\n- name: Add Grafana repository\n apt_repository:\n repo: deb https://packagecloud.io/grafana/stable/debian/ stretch main\n update_cache: yes\n\n- name... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 817,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/icinga | 3,758 | [
"no_license"
] | [
{
"path": "roles/icinga/meta/main.yml",
"content": "---\ndependencies:\n - apache\n - role: dma\n when: dma_smarthost != \"\"\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 74
},
{
"path": "roles/icinga/handlers/main.yml",
"content": "---\n- name: ici... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 10,
"total_bytes": 4706,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/icinga-client | 3,758 | [
"no_license"
] | [
{
"path": "roles/icinga-client/tasks/main.yml",
"content": "---\n- block:\n - name: Install required packages\n package:\n name: \"{{ item }}\"\n with_items:\n - nagios-plugins-basic\n - perl\n\n - name: Download additional Icinga checks\n get_url:\n url: http://dl.panticz.de/... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 459,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/jameica | 3,758 | [
"no_license"
] | [
{
"path": "roles/jameica/tasks/main.yml",
"content": "---\n- name: Create required directories\n file:\n path: /opt\n state: directory\n owner: root\n group: root\n mode: 0755\n\n- unarchive:\n src: \"{{ jameica_archive_url }}\"\n remote_src: yes\n dest: /opt\n creates: /opt/jame... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 414,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/java-jdk-opt | 3,758 | [
"no_license"
] | [
{
"path": "roles/java-jdk-opt/tasks/install-java.yml",
"content": "---\n- name: Adjust download parameter\n set_fact:\n java_file_extension: bin\n java_build: 10\n when: java_version == 6\n\n- name: Download Java JDK {{ java_version }}u{{ java_subversion }}\n get_url:\n url: \"{{ java_download_u... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2197,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/jdk | 3,758 | [
"no_license"
] | [
{
"path": "roles/jdk/tasks/main.yml",
"content": "---\n- include: \"{{ item }}\"\n with_first_found:\n - install-{{ ansible_distribution|lower }}-{{ ansible_distribution_release }}.yml\n - install-{{ ansible_distribution|lower }}.yml\n - install.yml\n\n- name: Accept Java license\n debconf:\n nam... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1201,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/jenkins | 3,758 | [
"no_license"
] | [
{
"path": "roles/jenkins/meta/main.yml",
"content": "---\ndependencies:\n - jdk\n - role: port-redirect\n when: port_redirect.from\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 79
},
{
"path": "roles/jenkins/handlers/main.yml",
"content": "---\n- name:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 492,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/kodi | 3,758 | [
"no_license"
] | [
{
"path": "roles/kodi/tasks/main.yml",
"content": "---\n- name: Install required applications\n package:\n name: software-properties-common\n\n- name: Configure Kodi repository\n set_fact:\n kodi_repository: \"{{ 'ppa:team-xbmc/unstable' if kodi_version != 'stable' else 'ppa:team-xbmc/ppa' }}\" \n\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 443,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/lamp | 3,758 | [
"no_license"
] | [
{
"path": "roles/lamp/tasks/main.yml",
"content": "---\n- name: Install required packages\n package:\n name: \"{{ item }}\"\n with_items:\n - libapache2-mod-php\n - php-mysql\n\n- name: Create DB schema\n mysql_db:\n name: \"{{ db_name }}\"\n\n- name: Create DB user\n mysql_user:\n name: ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 421,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/lcmc | 3,758 | [
"no_license"
] | [
{
"path": "roles/lcmc/tasks/install-ubuntu.yml",
"content": "---\n- name: Install required packages\n package:\n name: \"{{ package }}\"\n loop_control:\n loop_var: package\n with_items:\n - apt-transport-https\n\n- name: Download LCMC package\n get_url:\n url: https://netix.dl.sourceforge.n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 521,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/letsencrypt | 3,758 | [
"no_license"
] | [
{
"path": "roles/letsencrypt/defaults/main.yml",
"content": "---\nenable_dns_challenge: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 30
},
{
"path": "roles/letsencrypt/tasks/install.yml",
"content": "---\n- name: Install letsencrypt package\n package:... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 739,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/lldpd | 3,758 | [
"no_license"
] | [
{
"path": "roles/lldpd/tasks/main.yml",
"content": "---\n- name: Install lldpd package\n package:\n name: lldpd\n\n- name: Enable CDP protocol in LLDP daemon\n ini_file:\n section: \"\"\n option: DAEMON_ARGS\n value: '\"-c\"'\n dest: /etc/default/lldpd\n no_extra_spaces: yes\n create:... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 459,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/lxc-create | 3,758 | [
"no_license"
] | [
{
"path": "roles/lxc-create/tasks/main.yml",
"content": "---\n- name: Install yum package\n package:\n name: yum\n when: container_template == \"centos\"\n\n- name: Create container {{ container_name }} with {{ container_template }} {{ container_release }}\n lxc_container:\n name: \"{{ container_na... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 5774,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/lxc-hypervisor | 3,758 | [
"no_license"
] | [
{
"path": "roles/lxc-hypervisor/handlers/main.yml",
"content": "---\n- name: lxc-net restart\n service:\n name: lxc-net\n state: restarted\n\n- name: sysctl reload\n command: sysctl --system\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 128
},
{
"path":... | {
"task_files": 6,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 3507,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/mariadb | 3,758 | [
"no_license"
] | [
{
"path": "roles/mariadb/tasks/main.yml",
"content": "---\n- include: \"{{ item }}\"\n with_first_found:\n - \"install-{{ ansible_distribution|lower }}-{{ ansible_distribution_release }}.yml\"\n - \"install-{{ ansible_distribution|lower }}.yml\"\n - \"install.yml\"\n\n- include: install-python-mysqld... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 1511,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/mysql-server | 3,758 | [
"no_license"
] | [
{
"path": "roles/mysql-server/defaults/main.yml",
"content": "---\nmysql_server_version: 5.5\nmysql_server_root_password: <PASSWORD>\nmysql_server_install_mysqldb: true\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 104
},
{
"path": "roles/mysql-server/tasks/dis... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1862,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/nagios-client | 3,758 | [
"no_license"
] | [
{
"path": "roles/nagios-client/tasks/main.yml",
"content": "---\n- name: Create check_mem monitoring script\n get_url:\n url: https://raw.github.com/justintime/nagios-plugins/master/check_mem/check_mem.pl\n dest: /usr/lib/nagios/plugins/check_mem\n mode: 0755\n\n- name: Create check_hddtemp monito... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 546,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/netbeans | 3,758 | [
"no_license"
] | [
{
"path": "roles/netbeans/defaults/main.yml",
"content": "---\nnetbeans_version: 10.0\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 27
},
{
"path": "roles/netbeans/meta/main.yml",
"content": "---\ndependencies:\n - jdk\n",
"license_type": "no_license",... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1006,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/nginx | 3,758 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n- name: Install nginx\n apt:\n name: \"{{ item }}\"\n with_items:\n - nginx\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 82
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 82,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/ntp | 3,758 | [
"no_license"
] | [
{
"path": "roles/ntp/tasks/main.yml",
"content": "---\n- name: Install required packages\n package:\n name: \"{{ item_package }}\"\n loop_control:\n loop_var: item_package\n with_items:\n - ntp\n - ntpdate\n register: sync_time\n\n- block:\n - name: Stop ntp service\n service:\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 608,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/openfortigui | 3,758 | [
"no_license"
] | [
{
"path": "roles/openfortigui/tasks/install.yml",
"content": "---\n- name: Install OpenFortiGUI packages\n package:\n name: openfortigui\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 76
},
{
"path": "roles/openfortigui/tasks/install-ubuntu.yml",
"conten... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 318,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/openstack-kolla-ansible | 3,758 | [
"no_license"
] | [
{
"path": "roles/openstack-kolla-ansible/defaults/main.yml",
"content": "target_dir: /opt\n# openstack_release: queens\nopenstack_release: master\nkolla_internal_vip_address: 10.10.10.10\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 111
},
{
"path": "roles/open... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 5313,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/oracle-10xe | 3,758 | [
"no_license"
] | [
{
"path": "roles/oracle-10xe/defaults/main.yml",
"content": "oracle_xe_deb_files_url:\n - https://oss.oracle.com/debian/dists/unstable/main/binary-i386/libaio_0.3.104-1_i386.deb\n - https://oss.oracle.com/debian/dists/unstable/non-free/binary-i386/oracle-xe_10.2.0.1-1.1_i386.deb\noracle_xe_password: <PASS... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1424,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/os-patch | 3,758 | [
"no_license"
] | [
{
"path": "roles/os-patch/handlers/main.yml",
"content": "---\n- name: update-grub\n command: update-grub\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 47
},
{
"path": "roles/os-patch/tasks/install-ubuntu-xenial.yml",
"content": "---\n- include: disable_co... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 550,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/php | 3,758 | [
"no_license"
] | [
{
"path": "roles/php/tasks/install-debian-jessie-php7.0.yml",
"content": "---\n- name: Add dotdeb repository key\n apt_key:\n url: http://www.dotdeb.org/dotdeb.gpg\n\n- name: Add dotdeb Debian PHP 7.0 repository\n apt_repository:\n repo: deb http://packages.dotdeb.org {{ ansible_distribution_release... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 2488,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/pluma | 3,758 | [
"no_license"
] | [
{
"path": "roles/pluma/tasks/main.yml",
"content": "---\n- name: Install packages\n package:\n name: \"{{ item }}\"\n with_items:\n - pluma\n\n- name: Configure pluma as default text editor\n ini_file:\n section: Default Applications\n option: \"{{ item.option }}\"\n value: \"{{ item.value... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1173,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/polo | 3,758 | [
"no_license"
] | [
{
"path": "roles/polo/tasks/main.yml",
"content": "---\n- name: Enable multiverse repository\n apt_repository:\n repo: deb http://archive.ubuntu.com/ubuntu {{ ansible_distribution_release }} multiverse\n update_cache: yes\n filename: /etc/apt/sources.list\n\n- name: Add polo repository\n apt_repo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 377,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/port-redirect | 3,758 | [
"no_license"
] | [
{
"path": "roles/port-redirect/defaults/main.yml",
"content": "---\nport_redirect:\n from: 8080\n to: 80\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 45
},
{
"path": "roles/port-redirect/tasks/main.yml",
"content": "---\n- name: Install iptables-pers... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 477,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/postgresql | 3,758 | [
"no_license"
] | [
{
"path": "roles/postgresql/tasks/main.yml",
"content": "---\n- name: Add postgresql repository key\n apt_key:\n url: http://www.postgresql.org/media/keys/ACCC4CF8.asc\n validate_certs: false\n\n- name: Add postgresql repository\n apt_repository:\n repo: deb http://apt.postgresql.org/pub/repos/ap... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 696,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/prometheus | 3,758 | [
"no_license"
] | [
{
"path": "roles/prometheus/tasks/main.yml",
"content": "---\n- name: Install prometheus\n package:\n name: \"{{ item }}\"\n with_items:\n - prometheus\n\n- name: Install prometheus-alertmanager\n package:\n name: \"{{ item }}\"\n with_items:\n - prometheus-alertmanager\n when: prometheus_i... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 488,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/prometheus-node-exporter | 3,758 | [
"no_license"
] | [
{
"path": "roles/prometheus-node-exporter/tasks/main.yml",
"content": "---\n- name: Install prometheus-node-exporter package\n package:\n name: \"{{ item }}\"\n with_items:\n - prometheus-node-exporter\n\n- include_tasks: update-prometheus-node-exporter-from-archive.yml\n when: prometheus_node_expo... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2101,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/roundcube | 3,758 | [
"no_license"
] | [
{
"path": "roles/roundcube/tasks/main.yml",
"content": "---\n- name: Install Roundcube package\n package:\n pkg: \"{{ item }}\"\n with_items:\n - libapache2-mod-php\n - php-mysql\n - python-mysqldb\n - roundcube\n\n- name: Create Roundcube database\n mysql_db:\n name: \"{{ roundcube_db_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1795,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/rundeck | 3,758 | [
"no_license"
] | [
{
"path": "roles/rundeck/defaults/main.yml",
"content": "rundeck_install_ansible_plugin: false\nrundeck_install_cli: true\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 64
},
{
"path": "roles/rundeck/meta/main.yml",
"content": "---\ndependencies:\n - role: ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2346,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/smartmontools | 3,758 | [
"no_license"
] | [
{
"path": "roles/smartmontools/tasks/main.yml",
"content": "---\n- name: Install smartmontools\n apt:\n name: \"{{ item }}\"\n install_recommends: no\n with_items:\n - smartmontools\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 125
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 125,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/spotify | 3,758 | [
"no_license"
] | [
{
"path": "roles/spotify/tasks/main.yml",
"content": "---\n- name: Add Spotify repository key\n apt_key:\n keyserver: hkp://keyserver.ubuntu.com\n id: 931FF8E79F0876134EDDBDCCA87FF9DF48BF1C90\n\n- name: Add Spotify repository\n apt_repository:\n repo: deb http://repository.spotify.com stable non-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 334,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/sqldeveloper | 3,758 | [
"no_license"
] | [
{
"path": "roles/sqldeveloper/defaults/main.yml",
"content": "sqldeveloper_file: sqldeveloper-no-jre.zip\nsqldeveloper_user: \"\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
},
{
"path": "roles/sqldeveloper/tasks/main.yml",
"content": "---\n- name: Cre... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1159,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/sshd | 3,758 | [
"no_license"
] | [
{
"path": "roles/sshd/tasks/disable_password_login.yml",
"content": "---\n- name: Disable PasswordAuthentication\n replace:\n dest: /etc/ssh/sshd_config\n regexp: \"^[#]*PasswordAuthentication(.*)$\"\n replace: \"PasswordAuthentication no\"\n notify: sshd restart\n\n- name: Disable UsePAM\n repl... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 650,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/teamviewer | 3,758 | [
"no_license"
] | [
{
"path": "roles/teamviewer/tasks/main.yml",
"content": "---\n- name: Add TeamViewer repository key\n apt_key:\n url: https://download.teamviewer.com/download/linux/signature/TeamViewer2017.asc \n\n- name: Add TeamViewer repository\n apt_repository:\n repo: \"{{ item }}\"\n update_cache: yes\n w... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 453,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/terraform | 3,758 | [
"no_license"
] | [
{
"path": "roles/terraform/tasks/main.yml",
"content": "---\n- name: Request Terraform API\n uri:\n url: \"{{ terraform_api_url }}\"\n return_content: yes\n register: content\n\n- set_fact:\n terraform_download_url: \"{{ content.json.current_download_url }}\"\n terraform_version: \"{{ content.... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 642,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/tomcat | 3,758 | [
"no_license"
] | [
{
"path": "roles/tomcat/templates/tomcat-users.xml",
"content": "<?xml version='1.0' encoding='utf-8'?>\n<tomcat-users>\n <role rolename=\"manager-gui\"/>\n <role rolename=\"admin-gui\"/>\n <user username=\"{{ tomcat_username }}\" password=\"{{ <PASSWORD>_<PASSWORD> }}\" roles=\"manager-gui,admin-gui\"/>... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 1224,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/webix | 3,758 | [
"no_license"
] | [
{
"path": "roles/webix/tasks/main.yml",
"content": "---\n- name: Install required packages\n package:\n name: \"{{ item }}\"\n with_items:\n - unzip\n\n- name: Check if webix is already installed\n stat:\n path: \"{{ webix_target }}\"\n register: webix_dir\n\n- include: install-webix.yml\n whe... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1503,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/zabbix-agent | 3,758 | [
"no_license"
] | [
{
"path": "roles/zabbix-agent/handlers/main.yml",
"content": "---\n- name: service zabbix-agent restart\n service:\n name: zabbix-agent\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 96
},
{
"path": "roles/zabbix-agent/defaults/main.yml... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 997,
"all_permissive": false
} |
ansible_role | panticz/ansible | 32241eed2237d0c500bc02592943b5efaf2015c9 | 5 | roles/zabbix-server | 3,758 | [
"no_license"
] | [
{
"path": "roles/zabbix-server/handlers/main.yml",
"content": "---\n- name: service zabbix-agent restart\n service:\n name: zabbix-agent\n state: restarted\n\n- name: service zabbix-server restart\n service:\n name: zabbix-server\n state: restarted\n",
"license_type": "no_license",
"de... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2265,
"all_permissive": false
} |
ansible_role | fuwalab/dev-env | c213620ef9fe0ad85e1877fec47b99eb51dbf977 | 3 | provisioning/roles/docker | 3,758 | [
"no_license"
] | [
{
"path": "provisioning/roles/docker/tasks/main.yml",
"content": "- name: Install `yum-config-manager`\n yum:\n name: \"{{ item }}\"\n state: latest\n with_items:\n - yum-utils\n - device-mapper-persistent-data\n - lvm2\n become: yes\n- name: Add repository for Docker\n shell: 'yum-config... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1003,
"all_permissive": false
} |
ansible_role | fuwalab/dev-env | c213620ef9fe0ad85e1877fec47b99eb51dbf977 | 3 | provisioning/roles/system | 3,758 | [
"no_license"
] | [
{
"path": "provisioning/roles/system/tasks/main.yml",
"content": "- name: Update yum packages\n yum:\n name: '*'\n state: latest\n become: yes\n- name: Install Dev Tools\n yum:\n name: '@Development tools'\n become: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"siz... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 159,
"all_permissive": false
} |
ansible_role | amgadelhosieny/create-and-configure-LAMP-stack-using-ansible | 9931b7ad149616c9198123b55a8507fa7127c2c8 | 0 | roles/dbserver | 3,758 | [
"no_license"
] | [
{
"path": "roles/dbserver/handlers/main.yml",
"content": "---\n# handlers file for roles/dbserver\n- name: start mysql service\n ansible.builtin.service:\n name: mysql\n state: started \n become: true \n\n\n- name: Restart mysql service\n ansible.builtin.service:\n name: mysql\n state: rest... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1349,
"all_permissive": false
} |
ansible_role | amgadelhosieny/create-and-configure-LAMP-stack-using-ansible | 9931b7ad149616c9198123b55a8507fa7127c2c8 | 0 | roles/webserver | 3,758 | [
"no_license"
] | [
{
"path": "roles/webserver/tasks/main.yml",
"content": "---\n# tasks file for roles/webserver\n- name: Install Apache and PHP\n ansible.builtin.apt:\n name: \"{{ item }}\"\n state: present\n update_cache: yes\n loop:\n - apache2\n - php\n - libapache2-mod-php\n\n- name: Deploy Apache con... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1248,
"all_permissive": false
} |
ansible_role | monofuel/mono-retropie | ae8cc3875387111196632a5614ad16b282a86784 | 0 | roles/kintarosnes | 3,758 | [
"no_license"
] | [
{
"path": "roles/kintarosnes/tasks/main.yml",
"content": "---\n# TODO use upstream script for raspberry pi\n# this fork is only for tinkerboard\n- git:\n repo: http://github.com/TinkerBoard/gpio_lib_python\n dest: /opt/AsusGPIO\n depth: 1\n update: yes\n- name: install asus gpio tools\n apt: na... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 696,
"all_permissive": false
} |
ansible_role | monofuel/mono-retropie | ae8cc3875387111196632a5614ad16b282a86784 | 0 | roles/mali | 3,758 | [
"no_license"
] | [
{
"path": "roles/mali/tasks/main.yml",
"content": "---\r\n# https://github.com/MySora/Armbian-Setup-for-RetroPie/blob/master/setup.sh\r\n\r\n- name: install gpu deps\r\n apt: name={{item}} state=present\r\n with_items:\r\n - libtool\r\n - cmake\r\n - autoconf\r\n - automake\r\n - libxml2-de... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2805,
"all_permissive": false
} |
ansible_role | monofuel/mono-retropie | ae8cc3875387111196632a5614ad16b282a86784 | 0 | roles/retropie | 3,758 | [
"no_license"
] | [
{
"path": "roles/retropie/tasks/main.yml",
"content": "---\n- git:\n repo: https://github.com/RetroPie/RetroPie-Setup\n dest: /opt/RetroPie-Setup\n depth: 1\n update: yes\n- name: install retropie deps\n apt: name={{item}} state=present\n with_items:\n # borrowed from https://github.com/Alb... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3115,
"all_permissive": false
} |
ansible_role | monofuel/mono-retropie | ae8cc3875387111196632a5614ad16b282a86784 | 0 | roles/sync | 3,758 | [
"no_license"
] | [
{
"path": "roles/sync/tasks/main.yml",
"content": "---\r\n- name: install tools\r\n apt: name={{item}} state=present\r\n with_items:\r\n - nfs-common\r\n - unison\r\n- name: Mount RetroPie Share\r\n mount:\r\n path: /mnt/mjolnir/RetroPie\r\n src: mjolnir.mono:/megared/games/monofuel/RetroPie\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1648,
"all_permissive": false
} |
ansible_role | monofuel/mono-retropie | ae8cc3875387111196632a5614ad16b282a86784 | 0 | roles/tools | 3,758 | [
"no_license"
] | [
{
"path": "roles/tools/tasks/main.yml",
"content": "---\n- name: update cache\n apt:\n update_cache: yes\n cache_valid_time: 3600\n- name: Upgrade all packages to the latest version\n apt:\n name: \"*\"\n state: latest\n- name: install useful tools\n apt: name={{item}} state=present\n with_i... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 409,
"all_permissive": false
} |
ansible_role | monofuel/mono-retropie | ae8cc3875387111196632a5614ad16b282a86784 | 0 | roles/vpn | 3,758 | [
"no_license"
] | [
{
"path": "roles/vpn/tasks/main.yml",
"content": "---\r\n- name: install tools\r\n apt: name={{item}} state=present\r\n with_items:\r\n - openvpn",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 92
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 92,
"all_permissive": false
} |
ansible_role | chiller/streakp-playbooks | 7ec9ce6a32338e4cb9364fbc1af0eb11c044f96f | 0 | roles/web | 3,758 | [
"no_license"
] | [
{
"path": "roles/web/templates/supervisor.conf.j2",
"content": "[program:{{app_name}}]\nenvironment={% for k, v in django_env_vars.iteritems() %}{% if not loop.first %},{% endif %}{{ k }}=\"{{ v }}\"{% endfor %}\n\ncommand={{virtualenv_dir}}/bin/gunicorn {{django_settings_dir_name}}.wsgi:application\ndirect... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 3378,
"all_permissive": false
} |
ansible_role | hgdeoro/ansible-hadoop-cluster | 6bbd2357bd71b839d33c13c2ca63996169a1db71 | 0 | roles/hadoop | 3,758 | [
"no_license"
] | [
{
"path": "roles/hadoop/tasks/main.yml",
"content": "---\n- name: Create local directories\n file: path={{item}} owner=hadoop group=hadoop mode=0755 state=directory\n with_items:\n - /srv/nfs\n - /srv/hadoop\n - /srv/hadoop/data\n - /srv/hadoop/secondary-namenode-checkpoint\n - /srv/ha... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1769,
"all_permissive": false
} |
ansible_role | hgdeoro/ansible-hadoop-cluster | 6bbd2357bd71b839d33c13c2ca63996169a1db71 | 0 | roles/hue | 3,758 | [
"no_license"
] | [
{
"path": "roles/hue/tasks/main.yml",
"content": "---\n- name: Install Hue\n yum: name=\"{{item}}\" state=present\n with_items:\n - hue\n tags: yum\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 98
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 98,
"all_permissive": false
} |
ansible_role | hgdeoro/ansible-hadoop-cluster | 6bbd2357bd71b839d33c13c2ca63996169a1db71 | 0 | roles/infrastructure | 3,758 | [
"no_license"
] | [
{
"path": "roles/infrastructure/handlers/main.yml",
"content": "---\n- name: reload nfs exports\n command: exportfs -arv\n- name: restart httpd\n service: name=httpd state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 116
},
{
"path": "roles/infrast... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3646,
"all_permissive": false
} |
ansible_role | hgdeoro/ansible-hadoop-cluster | 6bbd2357bd71b839d33c13c2ca63996169a1db71 | 0 | roles/namenode | 3,758 | [
"no_license"
] | [
{
"path": "roles/namenode/tasks/main.yml",
"content": "---\n- name: Format NameNode\n sudo_user: hadoop\n command: /home/hadoop/{{hadoop_unzip_dir}}/bin/hadoop namenode -format -nonInteractive creates=/srv/hadoop/hdfs\n tags: hadoop\n",
"license_type": "no_license",
"detected_licenses": [],
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 177,
"all_permissive": false
} |
ansible_role | hgdeoro/ansible-hadoop-cluster | 6bbd2357bd71b839d33c13c2ca63996169a1db71 | 0 | roles/server | 3,758 | [
"no_license"
] | [
{
"path": "roles/server/templates/etc--profile.d--proxy.sh",
"content": "export https_proxy={{ proxy }}\nexport http_proxy={{ proxy }}\nexport ftp_proxy={{ proxy }}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 90
},
{
"path": "roles/server/tasks/main.yml",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 4366,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.