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
Yiadh/ansible-lamp-stack-playbook
89901f525d309d91d39ba440b2ae0a63f55f223f
0
roles/common
516
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# tasks file for common\n- name: 1. Add IP address of all hosts to all hosts\n lineinfile:\n dest: /etc/hosts\n regexp: '.*{{ item.key }}$'\n line: \"{{ item.value }} {{ item.key }}\"\n state: present\n unsafe_writes: true\n loop: \"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 800, "all_permissive": false }
ansible_role
Yiadh/ansible-lamp-stack-playbook
89901f525d309d91d39ba440b2ae0a63f55f223f
0
roles/haproxy
516
[ "no_license" ]
[ { "path": "roles/haproxy/files/haproxy.cfg", "content": "global\n\tlog /dev/log\tlocal0\n\tlog /dev/log\tlocal1 notice\n\tchroot /var/lib/haproxy\n\tstats socket /run/haproxy/admin.sock mode 660 level admin\n\tstats timeout 30s\n\tuser haproxy\n\tgroup haproxy\n\tdaemon\n\n\t# Default SSL material locations...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2326, "all_permissive": false }
ansible_role
Yiadh/ansible-lamp-stack-playbook
89901f525d309d91d39ba440b2ae0a63f55f223f
0
roles/mariadb
516
[ "no_license" ]
[ { "path": "roles/mariadb/tasks/main.yml", "content": "---\n# tasks file for mariadb\n- name: 1. Install MariaDB server package\n apt: name=mariadb-server state=present\n\n- name: 2. Add IP address of all hosts to all hosts\n lineinfile:\n dest: /etc/mysql/mariadb.conf.d/50-server.cnf\n regexp: '^bin...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1140, "all_permissive": false }
ansible_role
jaybanuan/awx-example
384efa06be68ad80d610db1a0b2cd3fdb9fd72ba
0
playbooks/roles/web_server
516
[ "permissive" ]
[ { "path": "playbooks/roles/web_server/tasks/main.yml", "content": "- name: Install NGINX\n ansible.builtin.dnf:\n name: nginx\n state: latest\n\n- name: Enable NGINX\n ansible.builtin.systemd:\n name: nginx\n state: started\n enabled: yes", "license_type": "permissive", "detected_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 179, "all_permissive": true }
ansible_role
headllama/Ansible-Curso
6ef1aab555a494a97746d975987b9b81b3d80eb6
0
roles/mysql
524
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yaml", "content": "---\n- name: \"instala o mysql\"\n apt:\n name:\n - mysql-server\n - mysql-server-5.5\n - python-mysqldb\n - libmysqlclient-dev\n state: latest\n become: yes\n\n- name: \"Instala o pip\"\n apt: \n name: \n - python-pip...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1143, "all_permissive": false }
ansible_role
headllama/Ansible-Curso
6ef1aab555a494a97746d975987b9b81b3d80eb6
0
roles/php
524
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yaml", "content": "---\n- name: \"instala apache e php\"\n apt:\n name:\n - php5\n - apache2\n - libapache2-mod-php5\n - php5-mcrypt\n - php5-gd\n - php5-mysql\n state: latest\n become: yes\n\n- name: \"Copiando cadastro.html\"\n copy: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2058, "all_permissive": false }
ansible_role
shineko11/test
135dd6b9758d958742b9f3f440bf27a2af8f0d25
0
playbook-elasticsearch/roles/ansible-elasticsearch
524
[ "no_license" ]
[ { "path": "playbook-elasticsearch/roles/ansible-elasticsearch/tasks/elasticsearch-RedHat.yml", "content": "---\n- name: Ensure libselinux-python on CentOS 6.x\n yum: name=libselinux-python state=present update_cache=yes\n when: ( ansible_distribution == \"CentOS\" ) and ( ansible_distribution_major_versio...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 23, "total_bytes": 40118, "all_permissive": false }
ansible_role
jmcote/BootCampNetwork
b4462810ddd6b65596192d6e11746d403e2681d3
0
Ansible/roles/install-dvwa
524
[ "no_license" ]
[ { "path": "Ansible/roles/install-dvwa/tasks/main.yml", "content": "#Install DVWA on a server\n\n- name: Install docker (state=present is optional)\n apt:\n name: docker.io\n state: present\n\n- name: Install python 3 and pip (state=present is optional)\n apt:\n name: python3-pip\n state: pre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 586, "all_permissive": false }
ansible_role
jmcote/BootCampNetwork
b4462810ddd6b65596192d6e11746d403e2681d3
0
Ansible/roles/install-filebeat
524
[ "no_license" ]
[ { "path": "Ansible/roles/install-filebeat/tasks/main.yml", "content": "# Install Filebeat Playbook\n\n- name: Install curl\n apt:\n name: curl\n state: present\n\n- name: Get filebeat base file\n command: curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.6.1-amd64.deb\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 727, "all_permissive": false }
ansible_role
fghoraishi/Faad-Ansible-Playbooks
c0ea59a19e5a0293da3b90b720f81f873ea569aa
1
roles/AerisCloud.nginx
524
[ "no_license" ]
[ { "path": "roles/AerisCloud.nginx/defaults/main.yml", "content": "nginx_user: nginx\nnginx_max_connections: 4096\n\nnginx_worker_process: 2\nnginx_multi_accept: off\nnginx_sendfile: off\nnginx_tcp_nopush: off\nnginx_tcp_nodelay: off\nnginx_keepalive_timeout: 30\nnginx_gzip: off\n\nnginx_use_ssl: false\n", ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 7125, "all_permissive": false }
ansible_role
fghoraishi/Faad-Ansible-Playbooks
c0ea59a19e5a0293da3b90b720f81f873ea569aa
1
roles/addsshkeys
524
[ "no_license" ]
[ { "path": "roles/addsshkeys/handlers/main.yml", "content": "---\n# handlers file for addsshkeys", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "roles/addsshkeys/defaults/main.yml", "content": "---\n# defaults file for addsshkeys", "license_...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 919, "all_permissive": false }
ansible_role
fghoraishi/Faad-Ansible-Playbooks
c0ea59a19e5a0293da3b90b720f81f873ea569aa
1
roles/install_httpd
524
[ "no_license" ]
[ { "path": "roles/install_httpd/handlers/main.yml", "content": "---\n# handlers file for install_httpd\n#\n - name: Restart Apache\n service:\n name: httpd\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 127 }, { "path": "r...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1243, "all_permissive": false }
ansible_role
fghoraishi/Faad-Ansible-Playbooks
c0ea59a19e5a0293da3b90b720f81f873ea569aa
1
roles/mariuszczyz.centos_apache
524
[ "no_license" ]
[ { "path": "roles/mariuszczyz.centos_apache/handlers/main.yml", "content": "---\n# handlers file for mariuszczyz.centos-apache\n\n- name: restart apache\n service:\n name: httpd\n state: restarted\n listen: restart apache", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 4343, "all_permissive": false }
ansible_role
teachbase/tb-help-vm
8700c138640945054e5cb07432d1c2f60f54165a
0
roles/wordpress
524
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "- name: creating database\n mysql_db:\n name: \"{{ db_name }}\"\n state: \"present\"\n login_user: \"root\"\n login_password: \"{{ <PASSWORD> }}\"\n\n- name: creating database user\n mysql_user:\n name: \"{{ db_user }}\"\n password:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 684, "all_permissive": false }
ansible_role
SPalojoki/spalojoki-infrastructure
9b8d7390361e910c8f447b006a84566f7668a26e
0
ansible/roles/airflow
524
[ "no_license" ]
[ { "path": "ansible/roles/airflow/tasks/main.yml", "content": "- name: Create a Python virtual environment\n command: python3 -m venv /srv/airflow/venv\n\n- name: Install psycopg2-binary in the virtual environment\n command: /srv/airflow/venv/bin/pip install psycopg2-binary\n\n- name: Create Airflow Databa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1389, "all_permissive": false }
ansible_role
SPalojoki/spalojoki-infrastructure
9b8d7390361e910c8f447b006a84566f7668a26e
0
ansible/roles/caddy
524
[ "no_license" ]
[ { "path": "ansible/roles/caddy/tasks/main.yml", "content": "- name: Ensure /srv/caddy directory exists\n file:\n path: /srv/caddy\n state: directory\n mode: '0755'\n\n- name: Copy Caddy docker-compose.yml\n copy:\n src: docker-compose.yml\n dest: /srv/caddy/docker-compose.yml\n\n- name: Cop...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 684, "all_permissive": false }
ansible_role
SPalojoki/spalojoki-infrastructure
9b8d7390361e910c8f447b006a84566f7668a26e
0
ansible/roles/common
524
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "# Preferred by Ansible\n- name: Install aptitude\n apt:\n name: aptitude\n state: latest\n update_cache: true\n\n- name: Install required system packages\n apt:\n pkg:\n - apt-transport-https\n - ca-certificates\n - cu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1420, "all_permissive": false }
ansible_role
SPalojoki/spalojoki-infrastructure
9b8d7390361e910c8f447b006a84566f7668a26e
0
ansible/roles/gcloud
524
[ "no_license" ]
[ { "path": "ansible/roles/gcloud/tasks/main.yml", "content": "- name: Ensure /srv/gcloud directory exists\n file:\n path: /srv/gcloud\n state: directory\n mode: '0755'\n\n- name: Install Google Cloud CLI (using Snap, requires Ubuntu)\n ansible.builtin.shell: |\n snap install google-cloud-cli --...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 803, "all_permissive": false }
ansible_role
SPalojoki/spalojoki-infrastructure
9b8d7390361e910c8f447b006a84566f7668a26e
0
ansible/roles/metabase
524
[ "no_license" ]
[ { "path": "ansible/roles/metabase/tasks/main.yml", "content": "- name: Create a Python virtual environment\n command: python3 -m venv /srv/metabase/venv\n\n- name: Install psycopg2-binary in the virtual environment\n command: /srv/metabase/venv/bin/pip install psycopg2-binary\n\n- name: Create Metabase Da...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1738, "all_permissive": false }
ansible_role
SPalojoki/spalojoki-infrastructure
9b8d7390361e910c8f447b006a84566f7668a26e
0
ansible/roles/postgres
524
[ "no_license" ]
[ { "path": "ansible/roles/postgres/tasks/main.yml", "content": "- name: Ensure /srv/postgres directory exists\n file:\n path: /srv/postgres\n state: directory\n mode: '0755'\n\n- name: Copy Postgres Docker Compose template\n template:\n src: docker-compose.yml.j2\n dest: /srv/postgres/docker...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 748, "all_permissive": false }
ansible_role
SPalojoki/spalojoki-infrastructure
9b8d7390361e910c8f447b006a84566f7668a26e
0
ansible/roles/watchtower
524
[ "no_license" ]
[ { "path": "ansible/roles/watchtower/tasks/main.yml", "content": "- name: Ensure /srv/watchtower directory exists\n file:\n path: /srv/watchtower\n state: directory\n mode: '0755'\n\n- name: Copy Watchtower docker-compose.yml\n copy:\n src: docker-compose.yml\n dest: /srv/watchtower/docker-c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 726, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_1_1
524
[ "no_license" ]
[ { "path": "roles/step_1_1/tasks/main.yml", "content": "- name: Update Apt Packages\n include: tasks/apt-update.yml\n# become: yes\n# become_method: sudo\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 98 }, { "path": "roles/step_1_1/tasks/apt-update.yml", ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1911, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_1_2
524
[ "no_license" ]
[ { "path": "roles/step_1_2/tasks/apt-packages.yml", "content": "# invoked by: ../main.yml\n - name: APT | Install Apt Packages MySQL, RabbitMQ, Memcached\n apt: name={{item}} state=present\n with_items:\n - python-openstackclient\n - mariadb-server\n - python-pymysql\n - rabbitmq-server\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1679, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_1_3
524
[ "no_license" ]
[ { "path": "roles/step_1_3/tasks/main.yml", "content": "- name: Apt Dependencies\n include: tasks/apt-packages.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 59 }, { "path": "roles/step_1_3/tasks/apt-packages.yml", "content": " - name: APT | Install Apt...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 318, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_2_1
524
[ "no_license" ]
[ { "path": "roles/step_2_1/templates/controller_files/step_1/etc/neutron/plugins/ml2/openvswitch_agent.ini", "content": "[ovs]\nlocal_ip = {{ overlay_ip }}\nbridge_mappings = provider:br-provider\n\n[agent]\ntunnel_types = gre\nl2_population = True\n\n[securitygroup]\nfirewall_driver = iptables_hybrid\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 8967, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_2_2
524
[ "no_license" ]
[ { "path": "roles/step_2_2/templates/compute_files/etc/hosts", "content": "127.0.0.1\tlocalhost\n\n# controller\n{{ controller_management_ip }} controller\n\n# compute1\n{{ compute1_management_ip }} compute1\n\n# compute1\n{{ compute2_management_ip }} compute2\n\n# The following lines are d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2110, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_2_3
524
[ "no_license" ]
[ { "path": "roles/step_2_3/tasks/main.yml", "content": "- name: All Hosts | etc hostname file\n template:\n src: all/etc/hostname\n dest: /etc/hostname\n owner: root\n group: root\n mode: 0644\n force: yes\n\n- name: All Hosts | etc hosts file\n template:\n src: all/etc/hosts\n dest...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1463, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_3_1
524
[ "no_license" ]
[ { "path": "roles/step_3_1/tasks/main.yml", "content": "- name: Controller | Database | Wait for mysql to start\n pause:\n minutes: 1\n\n\n- name: Controller | Database | MySQL restart\n service:\n name: mysql\n state: started\n\n## Create database 'keystone' and user keystone to access it locally...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 6107, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_4_1
524
[ "no_license" ]
[ { "path": "roles/step_4_1/tasks/main.yml", "content": "\n- name: Controller | Openstack DB Sync | Apache2 and MySQL restart\n service:\n name: \"{{item}}\"\n state: restarted\n with_items:\n - apache2\n - mysql\n\n\n- name: Controller | Openstack DB Sync | 'keystone-manage db_sync' as user 'keysto...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1714, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_5_1
524
[ "no_license" ]
[ { "path": "roles/step_5_1/tasks/main.yml", "content": "- name: Controller | RabbitMQ and Keystone Setup | Add user 'openstack' to RabbitMQ\n include: tasks/rabbitmq_keystone_setup.yml\n tags:\n - rabbitmq_keystone_setup\n\n- name: Controller | Openstack Users & Endpoints | Add user 'openstack' to Rabbi...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2684, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_6_1
524
[ "no_license" ]
[ { "path": "roles/step_6_1/tasks/main.yml", "content": "- name: Controller | Openstack Services Restart | All controller node services restart\n service:\n name: \"{{item}}\"\n state: restarted\n with_items:\n - mysql\n - memcached\n - apache2\n - rabbitmq-server\n - glance-registry\n - glance-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 503, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_6_2
524
[ "no_license" ]
[ { "path": "roles/step_6_2/tasks/main.yml", "content": "- name: Controller | Openstack Services Restart | All compute node services restart\n service:\n name: \"{{item}}\"\n state: restarted\n with_items:\n - nova-compute\n - neutron-openvswitch-agent\n\n\n\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 201, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_7_1
524
[ "no_license" ]
[ { "path": "roles/step_7_1/tasks/main.yml", "content": "#- name: Controller | Openstack Services Restart | Wait for mysql to start\n# pause:\n# minutes: 1\n\n# TODO: move it somewhere else\n- name: Controller | Discover Hosts | 'nova-manage cell_v2 discover_hosts --verbose'\n shell: 'su -s /bin/sh -c \"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2113, "all_permissive": false }
ansible_role
yan0s/ansible-openstack
b4caedae1b1c8732649b4306eeec63eb559fa994
0
roles/step_8_1
524
[ "no_license" ]
[ { "path": "roles/step_8_1/tasks/main.yml", "content": "- name: Controller | Configure default networks | Create network 'int-net'\n os_network:\n state: present\n name: int-net\n# shared: no\n auth: \"{{ openstack_auth }}\"\n\n- name: Controller | Configure default networks | Create subnet 'int...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4701, "all_permissive": false }
ansible_role
Zer0t3ch/dotfiles
8ce8e10e2588594f025ed14d175df32640572054
0
playbooks/roles/linux-user
524
[ "no_license" ]
[ { "path": "playbooks/roles/linux-user/tasks/main.yml", "content": "# vim: set ts=4 sts=2 sw=2 et ai:\n---\n- name: Create any missing directories needed for deployment\n file: path=~/{{ item }}\n state=directory\n with_items:\n - .config\n - bin\n\n- name: Symlink configuration files to $XDG_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1013, "all_permissive": false }
ansible_role
musatee/eks-ci-stack
130fc7dffa1b60132ac1fee4e0f0960677127cb0
0
ansible/roles/build_app_image
524
[ "no_license" ]
[ { "path": "ansible/roles/build_app_image/tasks/main.yml", "content": "---\n- name: ECR Login\n shell: \"$(aws ecr get-login --region {{ aws_region }} --no-include-email)\"\n args:\n executable: /bin/bash\n\n- name: Generate Image Tag\n shell: git log --format=\"%H\" -n 1\n args:\n chdir: \"{{ work...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2254, "all_permissive": false }
ansible_role
ivan-c/ansible-bootstrap
149c7b25f35199e96d6d1cd86e0c90516cacb878
2
roles/amd_firmware
524
[ "no_license" ]
[ { "path": "roles/amd_firmware/tasks/main.yaml", "content": "---\n- name: Install required firmware\n ansible.builtin.apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - firmware-amd-graphics\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 140 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 140, "all_permissive": false }
ansible_role
ivan-c/ansible-bootstrap
149c7b25f35199e96d6d1cd86e0c90516cacb878
2
roles/base
524
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yaml", "content": "---\n- name: Add my Github keys to root authorized_keys\n ansible.posix.authorized_key:\n user: root\n state: present\n key: https://github.com/ivan-c.keys\n\n- name: Install tool to detect local caching proxies\n ansible.builtin.apt:\n name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 423, "all_permissive": false }
ansible_role
ivan-c/ansible-bootstrap
149c7b25f35199e96d6d1cd86e0c90516cacb878
2
roles/biostar_firmware
524
[ "no_license" ]
[ { "path": "roles/biostar_firmware/tasks/main.yaml", "content": "---\n- name: Install required packages\n ansible.builtin.apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - software-properties-common\n\n- name: Add non-free-firmware sources\n ansible.builtin.command: apt-add-repository --y...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1244, "all_permissive": false }
ansible_role
ivan-c/ansible-bootstrap
149c7b25f35199e96d6d1cd86e0c90516cacb878
2
roles/flatpak
524
[ "no_license" ]
[ { "path": "roles/flatpak/tasks/main.yaml", "content": "---\n- name: Install flatpak\n ansible.builtin.apt:\n name: flatpak\n\n- name: Add the flathub flatpak repository remote\n community.general.flatpak_remote:\n name: flathub\n state: present\n flatpakrepo_url: https://dl.flathub.org/repo/fl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 262, "all_permissive": false }
ansible_role
ivan-c/ansible-bootstrap
149c7b25f35199e96d6d1cd86e0c90516cacb878
2
roles/gui
524
[ "no_license" ]
[ { "path": "roles/gui/tasks/main.yaml", "content": "---\n- name: Install GUI packages\n ansible.builtin.apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - task-laptop\n - task-kde-desktop\n - chromium\n", "license_type": "no_license", "detected_licenses": [], "size_byt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 167, "all_permissive": false }
ansible_role
ivan-c/ansible-bootstrap
149c7b25f35199e96d6d1cd86e0c90516cacb878
2
roles/hp_firmware
524
[ "no_license" ]
[ { "path": "roles/hp_firmware/meta/main.yml", "content": "---\ndependencies:\n - role: non_free_firmware\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 46 }, { "path": "roles/hp_firmware/tasks/main.yaml", "content": "---\n- name: Install required firmware\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 206, "all_permissive": false }
ansible_role
ivan-c/ansible-bootstrap
149c7b25f35199e96d6d1cd86e0c90516cacb878
2
roles/non_free_firmware
524
[ "no_license" ]
[ { "path": "roles/non_free_firmware/tasks/main.yaml", "content": "---\n- name: Install required packages\n ansible.builtin.apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - software-properties-common\n\n- name: Add non-free-firmware sources\n ansible.builtin.command: apt-add-repository --...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 547, "all_permissive": false }
ansible_role
ivan-c/ansible-bootstrap
149c7b25f35199e96d6d1cd86e0c90516cacb878
2
roles/stream_host
524
[ "no_license" ]
[ { "path": "roles/stream_host/tasks/main.yaml", "content": "---\n- name: Install required packages\n ansible.builtin.apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - nfs-common\n\n- name: Install flatpak apps\n community.general.flatpak:\n name: \"{{ item }}\"\n with_items:\n - co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 324, "all_permissive": false }
ansible_role
ivan-c/ansible-bootstrap
149c7b25f35199e96d6d1cd86e0c90516cacb878
2
roles/work
524
[ "no_license" ]
[ { "path": "roles/work/tasks/main.yaml", "content": "---\n- name: Install flatpak apps\n community.general.flatpak:\n name: \"{{ item }}\"\n with_items:\n - com.getpostman.Postman\n - com.slack.Slack\n - us.zoom.Zoom\n - com.microsoft.Teams\n", "license_type": "no_license", "detected...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 195, "all_permissive": false }
ansible_role
RadinPirouz/Kuber-Anisble
9df08742ea9a2cf3ade675922fa131b4b1116a9a
0
roles/Configure-Kuber
524
[ "no_license" ]
[ { "path": "roles/Configure-Kuber/defaults/main.yml", "content": "---\n# defaults file for Configure-Kuber\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "roles/Configure-Kuber/vars/main.yml", "content": "---\n# vars file for Configure-Kuber\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1301, "all_permissive": false }
ansible_role
RadinPirouz/Kuber-Anisble
9df08742ea9a2cf3ade675922fa131b4b1116a9a
0
roles/Init-Kuber-CP
524
[ "no_license" ]
[ { "path": "roles/Init-Kuber-CP/defaults/main.yml", "content": "---\n# defaults file for Init-CP\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "roles/Init-Kuber-CP/handlers/main.yml", "content": "---\n# handlers file for Init-CP\n", "lice...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 347, "all_permissive": false }
ansible_role
RadinPirouz/Kuber-Anisble
9df08742ea9a2cf3ade675922fa131b4b1116a9a
0
roles/Install-Docker
524
[ "no_license" ]
[ { "path": "roles/Install-Docker/tasks/main.yml", "content": "---\n- name: Create /etc/apt/keyrings directory with correct permissions\n ansible.builtin.file:\n path: /etc/apt/keyrings\n state: directory\n mode: '0755'\n- name: Download Docker GPG key\n ansible.builtin.get_url:\n url: https://d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 865, "all_permissive": false }
ansible_role
RadinPirouz/Kuber-Anisble
9df08742ea9a2cf3ade675922fa131b4b1116a9a
0
roles/Install-Kuber
524
[ "no_license" ]
[ { "path": "roles/Install-Kuber/defaults/main.yml", "content": "---\n# defaults file for Install-Kuber\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/Install-Kuber/tasks/main.yml", "content": "- name: remove old license\n ansible.built...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1309, "all_permissive": false }
ansible_role
RadinPirouz/Kuber-Anisble
9df08742ea9a2cf3ade675922fa131b4b1116a9a
0
roles/Install-Prerequisites
524
[ "no_license" ]
[ { "path": "roles/Install-Prerequisites/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - Install-Prerequisites\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 80 }, { "path": "roles/Install-Prerequisites/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 697, "all_permissive": false }
ansible_role
jerminliu/ansible-gcp-3
f9a0dc3d28de536ac783cfa16c8e9b65f1019986
0
roles/common
524
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# file: roles/common/tasks/main.yml\n\n- name: Install the package wget\n apt:\n name: wget\n state: present\n\n# create /opt/ directory if it doesn't exist\n- file:\n path: /opt\n state: directory\n mode: 0755\n\n...", "license_t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 224, "all_permissive": false }
ansible_role
alamsyahho/ansible-docker-mongodb
7fcfc6f8cffc9bda4302e8fce367f0f91bd0e7e3
6
roles/docker-base
524
[ "no_license" ]
[ { "path": "roles/docker-base/vars/RedHat-6.yml", "content": "---\nepel_repo: https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm\ncityfan_repo: http://www.city-fan.org/ftp/contrib/yum-repo/city-fan.org-release-1-13.rhel6.noarch.rpm\n\niptables_service: iptables\n", "license_type": "no...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2660, "all_permissive": false }
ansible_role
alamsyahho/ansible-docker-mongodb
7fcfc6f8cffc9bda4302e8fce367f0f91bd0e7e3
6
roles/docker-mongo
524
[ "no_license" ]
[ { "path": "roles/docker-mongo/tasks/main.yml", "content": "---\n- name: pull docker mongo image\n docker_image:\n name: mongo\n tag: \"{{ mongo_version }}\"\n\n- name: ensure {{ mongodb_host_dir }} exist\n file:\n name: \"{{ mongodb_host_dir }}\"\n state: directory\n\n- name: copy secret file\...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1998, "all_permissive": false }
ansible_role
viditgoel/px-ansible
696d38959bacd40359bbad426d42fc93c9771c01
0
ansible-configuration/playbooks/roles/vault
524
[ "no_license" ]
[ { "path": "ansible-configuration/playbooks/roles/vault/tasks/start.yml", "content": "---\n- name: Create Vault systemd service file\n copy:\n dest: \"/etc/systemd/system/vault.service\"\n content: |\n [Unit]\n Description=Vault Service\n Requires=network-online.target\n After=netw...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1986, "all_permissive": false }
ansible_role
roccozanni/ansible-macbook
8f02539e306eb262fca898b148b534220c2ab3f6
0
roles/common
524
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n\n- name: Allow current user to have passwordless sudo\n become: true\n lineinfile:\n dest: /etc/sudoers\n state: present\n regexp: \"^{{ ansible_user_id }}\"\n line: \"{{ ansible_user_id }} ALL=(ALL) NOPASSWD: ALL\"", "license_type...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 223, "all_permissive": false }
ansible_role
roccozanni/ansible-macbook
8f02539e306eb262fca898b148b534220c2ab3f6
0
roles/gem
524
[ "no_license" ]
[ { "path": "roles/gem/tasks/main.yml", "content": "---\n- name: Install ruby gems\n gem:\n name: \"{{ item }}\"\n user_install: no\n with_items: \"{{ gem_packages }}\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 121 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 121, "all_permissive": false }
ansible_role
roccozanni/ansible-macbook
8f02539e306eb262fca898b148b534220c2ab3f6
0
roles/homebrew
524
[ "no_license" ]
[ { "path": "roles/homebrew/tasks/main.yml", "content": "---\n\n# Homebrew setup prerequisites\n\n- name: Ensure Homebrew parent directory has correct permissions (on High Sierra).\n file:\n path: \"{{ homebrew_prefix }}\"\n owner: root\n state: directory\n become: yes\n when: \"ansible_distributi...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2670, "all_permissive": false }
ansible_role
guisesterheim/sonar_ansible
ebed1549c54d7ee65a763aa1c489cbab9b7ed423
1
ansible_config/roles/ansible-role-haproxy
524
[ "no_license" ]
[ { "path": "ansible_config/roles/ansible-role-haproxy/tasks/main.yml", "content": "---\n\n- name: Include install JQ Step\n include: install_jq.yaml\n\n- name: Include install Vault step\n include: install_vault.yaml\n\n- name: Generate TLS certificate\n include: generate_certificate.yaml\n\n- name: Inclu...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 5526, "all_permissive": false }
ansible_role
guisesterheim/sonar_ansible
ebed1549c54d7ee65a763aa1c489cbab9b7ed423
1
ansible_config/roles/ansible-role-sonarqube
524
[ "permissive" ]
[ { "path": "ansible_config/roles/ansible-role-sonarqube/vars/main.yml", "content": "---\n# vars file for ansible-role-sonarqube/\n__sonarsource_url: \"https://binaries.sonarsource.com\"\n__sonar_distribution_url: \"{{ __sonarsource_url }}/Distribution\"\n__sonar_archive: \"sonarqube-{{ sonar_version }}.zip\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 972, "all_permissive": true }
ansible_role
avpaws444/back2
7f03aaec00d70516b63edc52746f9bccd5edfb1a
0
etc/ansible/roles/copyrole
524
[ "no_license" ]
[ { "path": "etc/ansible/roles/copyrole/tasks/main.yml", "content": "---\n# tasks file for copyrole\n- name: copyfile\n copy:\n src: abc\n dest: /home/ubuntu\n- name: shell_commands\n shell: cat /home/ubuntu/abc\n register: target_cat\n- debug: \n var: target_cat.stdout_lines\n", "license_type...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 343, "all_permissive": false }
ansible_role
avpaws444/back2
7f03aaec00d70516b63edc52746f9bccd5edfb1a
0
etc/ansible/roles/dynrole
524
[ "no_license" ]
[ { "path": "etc/ansible/roles/dynrole/templates/dynamic.j2", "content": "{{ name }}\n{{ group }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 23 }, { "path": "etc/ansible/roles/dynrole/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: roo...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 538, "all_permissive": false }
ansible_role
avpaws444/back2
7f03aaec00d70516b63edc52746f9bccd5edfb1a
0
etc/ansible/roles/pakage_role
524
[ "no_license" ]
[ { "path": "etc/ansible/roles/pakage_role/defaults/main.yml", "content": "---\n# defaults file for /etc/ansible/roles/pakage_role\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 55 }, { "path": "etc/ansible/roles/pakage_role/tasks/main.yml", "content": "---\n#...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 178, "all_permissive": false }
ansible_role
yvarbanov/ansible-cm-openstack
56fc0ee3b5ceba4b7d989df3fdfe5e18c9eb9847
0
roles/vm-up
523
[ "no_license" ]
[ { "path": "roles/vm-up/defaults/main.yml", "content": "---\n# defaults file for vm-up\n\n# You can modify here but please use group vars instead\n\n# Auth information: cloud name from clouds.yml\n\ncloud: mycloud\n\n####################\n# VM CONFIGURATION #\n####################\n\n# name of the vm\ninstan...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 3956, "all_permissive": false }
ansible_role
ignatstrelets/ansible-elk
6710b695ee4a744d815550f5ffd92d15ae42c065
0
roles/apt
523
[ "no_license" ]
[ { "path": "roles/apt/tasks/main.yml", "content": "---\n - name: Update and upgrade installed apt packages.\n apt:\n upgrade: yes\n update_cache: yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 108 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 108, "all_permissive": false }
ansible_role
ignatstrelets/ansible-elk
6710b695ee4a744d815550f5ffd92d15ae42c065
0
roles/elasticsearch
523
[ "no_license" ]
[ { "path": "roles/elasticsearch/tasks/main.yml", "content": "---\n- name: Install elasticsearch.\n apt:\n name: elasticsearch\n state: present\n update_cache: yes\n notify:\n - Restart elasticsearch\n\n- name: Add custom 'elasticsearch.yml' file.\n copy:\n src: elasticsearch.yml\n dest: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 7065, "all_permissive": false }
ansible_role
ignatstrelets/ansible-elk
6710b695ee4a744d815550f5ffd92d15ae42c065
0
roles/haproxy
523
[ "no_license" ]
[ { "path": "roles/haproxy/tasks/main.yml", "content": "---\n- name: Install software-properties-common to enable ppa and avoid recommended packages.\n apt:\n name: software-properties-common\n state: latest\n install_recommends: no\n\n- name: Add repo 'ppa:vbernat/haproxy-2.8'\n apt_repository:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1022, "all_permissive": false }
ansible_role
ignatstrelets/ansible-elk
6710b695ee4a744d815550f5ffd92d15ae42c065
0
roles/kibana
523
[ "no_license" ]
[ { "path": "roles/kibana/handlers/main.yml", "content": "---\n- name: Restart kibana\n service:\n name: kibana\n state: restarted\n daemon_reload: yes\n enabled: yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 115 }, { "path": "roles/kibana/tasks/ma...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1868, "all_permissive": false }
ansible_role
ignatstrelets/ansible-elk
6710b695ee4a744d815550f5ffd92d15ae42c065
0
roles/logstash
523
[ "no_license" ]
[ { "path": "roles/logstash/tasks/main.yml", "content": "---\n- name: Install dependencies.\n apt:\n name:\n - apt-transport-https\n - openssl\n - wget\n state: latest\n update_cache: yes\n\n- name: Import ES GPG key.\n shell: |\n wget -qO - https://artifacts.elastic.co/GPG-KEY-el...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1949, "all_permissive": false }
ansible_role
ignatstrelets/ansible-elk
6710b695ee4a744d815550f5ffd92d15ae42c065
0
roles/monit
523
[ "no_license" ]
[ { "path": "roles/monit/tasks/main.yml", "content": "---\n- name: Install monit\n apt:\n name: monit\n state: present\n\n- name: Create 'monitrc' using custom template.\n template:\n src: monitrc.j2\n dest: /etc/monit/monitrc\n notify:\n - Restart monit\n\n\n\n\n\n", "license_type": "no...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 213, "all_permissive": false }
ansible_role
ignatstrelets/ansible-elk
6710b695ee4a744d815550f5ffd92d15ae42c065
0
roles/nginx
523
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx.\n apt:\n name: nginx\n state: latest\n update_cache: yes\n\n- name: Add custom 'kibana.conf' configuration.\n copy:\n src: kibana.conf\n dest: /etc/nginx/conf.d/kibana.conf\n notify:\n - Restart nginx\n\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 358, "all_permissive": false }
ansible_role
ignatstrelets/ansible-elk
6710b695ee4a744d815550f5ffd92d15ae42c065
0
roles/ntp
523
[ "no_license" ]
[ { "path": "roles/ntp/tasks/main.yml", "content": "---\n- name: Install NTP daemon.\n apt:\n name: ntp\n state: present\n update_cache: yes\n\n- name: Start and enable NTP daemon.\n service:\n name: ntp\n state: started\n enabled: yes\n\n- name: Synchronize time via NTP daily.\n cron:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 396, "all_permissive": false }
ansible_role
ignatstrelets/ansible-elk
6710b695ee4a744d815550f5ffd92d15ae42c065
0
roles/rsyslog
523
[ "no_license" ]
[ { "path": "roles/rsyslog/tasks/main.yml", "content": "---\n- name: Install software-properties-common to enable ppa and avoid recommended packages.\n apt:\n name: software-properties-common\n state: latest\n install_recommends: no\n\n- name: Add repo 'ppa:adiscon/v8-stable'.\n apt_repository:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 989, "all_permissive": false }
ansible_role
ignatstrelets/ansible-elk
6710b695ee4a744d815550f5ffd92d15ae42c065
0
roles/vault
523
[ "no_license" ]
[ { "path": "roles/vault/tasks/main.yml", "content": "---\n- name: Install dependencies.\n apt:\n name:\n - apt-transport-https\n - openssl\n - wget\n - gpg\n state: latest\n update_cache: yes\n\n- name: Import GPG key.\n shell: |\n wget -O- https://apt.releases.hashicorp.com...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 808, "all_permissive": false }
ansible_role
pvlvs/Ansible
67001fcb49ffbc5a83a75e1e1c577524e448359f
0
roles/install-nginx
523
[ "no_license" ]
[ { "path": "roles/install-nginx/handlers/main.yml", "content": "---\n- name: reload nginx config\n systemd:\n name: nginx\n state: reload\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "roles/install-nginx/templates/nginx.j2", "conten...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 5411, "all_permissive": false }
ansible_role
CarlosLongarela/LWP
1b9a9a6708b6c9b99e40dfc955107c7d72b8f440
0
provisioning/roles/apt
523
[ "no_license" ]
[ { "path": "provisioning/roles/apt/defaults/main.yml", "content": "---\naptget_update: true\naptget_update_cache_valid_time: 3600\n\naptget_upgrade: true\naptget_distupgrade: false\n\naptget_install:\n - mc\n - nano\n - sysv-rc-conf\n - python-pip\n - python-dev\n - libmysqlclient-dev", "license_ty...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 450, "all_permissive": false }
ansible_role
CarlosLongarela/LWP
1b9a9a6708b6c9b99e40dfc955107c7d72b8f440
0
provisioning/roles/mariadb
523
[ "no_license" ]
[ { "path": "provisioning/roles/mariadb/tasks/main.yml", "content": "---\n- name: Añadimos el archivo del repositorio.\n template:\n src: mariadb.list.j2\n dest: /etc/apt/sources.list.d/mariadb.list\n owner: root\n group: root\n mode: 0644\n\n- name: Añadimos la llave del repositorio.\n apt_k...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3704, "all_permissive": false }
ansible_role
CarlosLongarela/LWP
1b9a9a6708b6c9b99e40dfc955107c7d72b8f440
0
provisioning/roles/multi-wordpress
523
[ "no_license" ]
[ { "path": "provisioning/roles/multi-wordpress/tasks/main.yml", "content": "---\n- name: Instalamos WP-CLI.\n get_url:\n url: \"{{ wp_cli_url }}\"\n dest: \"{{ wp_cli_path }}\"\n force: true\n owner: \"{{ wp_cli_webserver_user }}\"\n group: \"{{ wp_cli_webserver_group }}\"\n mode: 0755\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3415, "all_permissive": false }
ansible_role
CarlosLongarela/LWP
1b9a9a6708b6c9b99e40dfc955107c7d72b8f440
0
provisioning/roles/nginx
523
[ "no_license" ]
[ { "path": "provisioning/roles/nginx/tasks/main.yml", "content": "---\n- name: Añadir repositorio oficial de Nginx.\n apt_repository:\n repo: 'ppa:nginx/stable'\n state: present\n update_cache: yes\n\n- name: Instalamos Nginx (versión fastcgi_cache_purge).\n apt:\n name: nginx-extras\n state...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 13248, "all_permissive": false }
ansible_role
brutella/hkcam
959d66471bc0d76859a82d429e9077061f4dde9f
984
ansible/roles/hkcam
523
[ "no_license" ]
[ { "path": "ansible/roles/hkcam/defaults/main.yml", "content": "---\nhkcam_version: '0.2.0'\nhkcam_download_file_name: hkcam-{{ hkcam_version }}_linux_arm.tar.gz\nhkcam_download_url: https://github.com/brutella/hkcam/releases/download/{{ hkcam_version }}/{{ hkcam_download_file_name }}\nhkcam_download_dir: /t...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2837, "all_permissive": false }
ansible_role
brutella/hkcam
959d66471bc0d76859a82d429e9077061f4dde9f
984
ansible/roles/runit
523
[ "no_license" ]
[ { "path": "ansible/roles/runit/meta/main.yml", "content": "---\nallow_duplicates: true", "license_type": "no_license", "detected_licenses": [], "size_bytes": 26 }, { "path": "ansible/roles/runit/tasks/envs.yml", "content": "# Sets environment variables by creating a directory called ...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 5565, "all_permissive": false }
ansible_role
paolopaolopaolo/light-sensor
c091dfd3c5629eed3e68032370b4bdc431cee350
0
orchestration/roles/app
523
[ "no_license" ]
[ { "path": "orchestration/roles/app/templates/nginx_site_config.j2", "content": "map $http_upgrade $connection_upgrade {\n default upgrade;\n '' close;\n}\n\nupstream {{ application_name }}_wsgi_server {\n # fail_timeout=0 means we always retry an upstream even if it failed\n # to return a go...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3676, "all_permissive": false }
ansible_role
paolopaolopaolo/light-sensor
c091dfd3c5629eed3e68032370b4bdc431cee350
0
orchestration/roles/base
523
[ "no_license" ]
[ { "path": "orchestration/roles/base/tasks/main.yml", "content": "---\n\n- name: Ensure bash, OpenSSl, and libssl are the latest versions\n apt: name={{ item }} update_cache={{ update_apt_cache }} state=latest\n with_items:\n - bash\n - openssl\n - libssl-dev\n - libssl-doc\n tags: packages\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1397, "all_permissive": false }
ansible_role
paolopaolopaolo/light-sensor
c091dfd3c5629eed3e68032370b4bdc431cee350
0
orchestration/roles/db
523
[ "no_license" ]
[ { "path": "orchestration/roles/db/tasks/main.yml", "content": "---\n\n- name: Install PostgreSQL\n apt: name={{ item }} update_cache={{ update_apt_cache }} state=installed\n with_items:\n - postgresql\n - postgresql-contrib\n - python-psycopg2\n tags: packages\n\n- name: Ensure the PostgreSQL se...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2643, "all_permissive": false }
ansible_role
paolopaolopaolo/light-sensor
c091dfd3c5629eed3e68032370b4bdc431cee350
0
orchestration/roles/nvm
523
[ "no_license" ]
[ { "path": "orchestration/roles/nvm/tasks/main.yml", "content": "---\n\n- name: Get bashrc\n shell: cat {{ bashrc_path }}\n register: bashrc_contents\n\n- name: Install NVM\n shell: curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.0/install.sh | bash\n become_user: \"{{ bashrc_user }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 484, "all_permissive": false }
ansible_role
dcorto/ansible-lamp-symfony-demo
1d74c8f9c6a962dc12271481c2eabf1a0c77505c
0
ansible/roles/adminer
523
[ "no_license" ]
[ { "path": "ansible/roles/adminer/tasks/main.yml", "content": "---\n- name: create (download) directory\n file:\n path: \"{{ adminer_download_path }}\"\n state: directory\n owner: vagrant\n group: vagrant\n mode: 0755\n\n- name: download (latest)\n get_url:\n url: \"{{ adminer_download_ur...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1279, "all_permissive": false }
ansible_role
dcorto/ansible-lamp-symfony-demo
1d74c8f9c6a962dc12271481c2eabf1a0c77505c
0
ansible/roles/apache
523
[ "no_license" ]
[ { "path": "ansible/roles/apache/tasks/main.yml", "content": "---\n- name: Install Apache + Modules needed\n sudo: yes\n apt: pkg={{ item }} state=present\n with_items:\n - libapache2-mod-fastcgi\n - apache2\n\n- name: Install Apache Modules\n apache2_module: state=present name={{ item }}\n notify...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1534, "all_permissive": false }
ansible_role
dcorto/ansible-lamp-symfony-demo
1d74c8f9c6a962dc12271481c2eabf1a0c77505c
0
ansible/roles/app
523
[ "no_license" ]
[ { "path": "ansible/roles/app/tasks/main.yml", "content": "- name: Set development domain\n lineinfile: dest=/etc/hosts state=present line=\"127.0.0.1 ansible.davidcorto.es\"\n\n- name: Set environment variables\n template: dest=/etc/environment src=environment\n\n- name: Install composer dependencies\n b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 653, "all_permissive": false }
ansible_role
dcorto/ansible-lamp-symfony-demo
1d74c8f9c6a962dc12271481c2eabf1a0c77505c
0
ansible/roles/composer
523
[ "no_license" ]
[ { "path": "ansible/roles/composer/tasks/main.yml", "content": "- name: Install Composer\n shell: curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer creates=/usr/local/bin/composer\n\n- name: Set right permissions on Composer\n file: path=/usr/local/bin/composer mo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 319, "all_permissive": false }
ansible_role
dcorto/ansible-lamp-symfony-demo
1d74c8f9c6a962dc12271481c2eabf1a0c77505c
0
ansible/roles/init
523
[ "no_license" ]
[ { "path": "ansible/roles/init/tasks/main.yml", "content": "---\n- name: Upgrade system packages\n sudo: yes\n apt: upgrade=yes update_cache=yes cache_valid_time=3600\n\n- name: Install System Packages\n sudo: yes\n apt: pkg={{ item }} state=present update_cache=yes cache_valid_time=3600\n with_items:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 512, "all_permissive": false }
ansible_role
dcorto/ansible-lamp-symfony-demo
1d74c8f9c6a962dc12271481c2eabf1a0c77505c
0
ansible/roles/mailhog
523
[ "no_license" ]
[ { "path": "ansible/roles/mailhog/templates/mailhog_supervisor.conf.j2", "content": "[program:mailhog]\ncommand={{ mailhog_install_dir }}/mailhog\nautostart=true\nautorestart=true\nstdout_logfile=/var/log/mailhog.log\nredirect_stderr=true", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 922, "all_permissive": false }
ansible_role
dcorto/ansible-lamp-symfony-demo
1d74c8f9c6a962dc12271481c2eabf1a0c77505c
0
ansible/roles/mysql
523
[ "no_license" ]
[ { "path": "ansible/roles/mysql/tasks/main.yml", "content": "---\n- name: MySQL, Install\n apt: name={{ item }} state=installed update_cache=yes\n with_items:\n - mysql-server\n - python-selinux\n - python-mysqldb\n\n- name: MySQL, Update mysql root password for all root accounts\n mysql_us...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1246, "all_permissive": false }
ansible_role
dcorto/ansible-lamp-symfony-demo
1d74c8f9c6a962dc12271481c2eabf1a0c77505c
0
ansible/roles/php7
523
[ "no_license" ]
[ { "path": "ansible/roles/php7/templates/xdebug.ini.j2", "content": "zend_extension=xdebug.so\n\nxdebug.default_enable = 1\nxdebug.idekey = \"vagrant\"\nxdebug.remote_enable = 1\nxdebug.remote_autostart = 1\nxdebug.remote_port = 9000\nxdebug.remote_log=\"/var/log/php/xdebug.log\"\nxdebug.remote_host=10.0.2.2...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3520, "all_permissive": false }
ansible_role
blue119/ansible-wordpress
5fdfa317458d91c3f4ab9fb7c2e73535061cb664
0
roles/mysql
523
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n- name: Install Mysql package\n apt:\n pkg:\n - mysql-server\n - mysql-client\n - mysql-utilities\n - python-pymysql\n - python-mysqldb\n - libmysqlclient-dev\n state: present\n install_recommends: yes\n upda...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1064, "all_permissive": false }
ansible_role
blue119/ansible-wordpress
5fdfa317458d91c3f4ab9fb7c2e73535061cb664
0
roles/php-fpm
523
[ "no_license" ]
[ { "path": "roles/php-fpm/tasks/main.yml", "content": "---\n- name: Install php-fpm and deps\n apt:\n pkg:\n - php\n - php-fpm\n - php-enchant\n # - php-IDNA_Convert\n - php-mbstring\n - php-mysql\n # - php-PHPMailer\n # - php-process\n # - php-simplepie\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 634, "all_permissive": false }
ansible_role
blue119/ansible-wordpress
5fdfa317458d91c3f4ab9fb7c2e73535061cb664
0
roles/wordpress
523
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "---\n- name: Download WordPress\n get_url:\n url: http://wordpress.org/wordpress-{{ wp_version }}.tar.gz\n dest: /srv/wordpress-{{ wp_version }}.tar.gz\n checksum: \"md5: {{ wp_md5sum }}\"\n\n- name: Extract archive\n # command: chdir...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1605, "all_permissive": false }
ansible_role
bfarhad/defrepo
dede2ee20f0d7d907693ab60733df4f8766574a5
0
roles/deploy_app
523
[ "no_license" ]
[ { "path": "roles/deploy_app/tasks/main.yml", "content": "# roles/deploy_app/tasks/main.yml\n---\n# our war file is \n- name: Deploy war file\n s3: \n bucket: \"{{ war_bucket }}\"\n object: \"{{ war_file }}\" \n dest: \"{{ war_deploy_path }}/{{ war_file }}\"\n mode: get \n overwrite: no\n re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1282, "all_permissive": false }
ansible_role
bfarhad/defrepo
dede2ee20f0d7d907693ab60733df4f8766574a5
0
roles/infrastructure
523
[ "no_license" ]
[ { "path": "roles/infrastructure/tasks/main.yml", "content": "# roles/infrastructure/tasks/main.yml\n---\n- name: Create the tomcat security group\n ec2_group:\n description: \"Open ssh and tomcat ports\"\n name: \"tomcat-sg\"\n region: \"{{ region }}\"\n rules:\n # only allow ssh access fr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2279, "all_permissive": false }
ansible_role
Suhail1820/ansible_playbook_role
65a3660cfa84b8a8ed8394a7d8b6671536ed5e9b
0
roles/docker.io
523
[ "no_license" ]
[ { "path": "roles/docker.io/tasks/main.yml", "content": "---\n# tasks/main.yml for Docker role\n- name: Install Docker on Amazon Linux\n yum:\n name: docker\n state: present\n\n- name: Start Docker service\n service:\n name: docker\n state: started\n enabled: yes\n", "license_type": "no_...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 711, "all_permissive": false }
ansible_role
kazuitox/ansible-unixbench
072ba615801841dcce35f27efbecade5a886c15e
0
playbooks/roles/base
523
[ "no_license" ]
[ { "path": "playbooks/roles/base/tasks/main.yml", "content": "---\n- name: Install Packages\n yum: \n name:\n - make\n - gcc\n - perl\n - perl-Time-HiRes\n state: latest\n register: packages_output\n retries: 5\n delay: 10\n until: packages_output is not failed\n", "license...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 219, "all_permissive": false }
ansible_role
kazuitox/ansible-unixbench
072ba615801841dcce35f27efbecade5a886c15e
0
playbooks/roles/results
523
[ "no_license" ]
[ { "path": "playbooks/roles/results/tasks/main.yml", "content": "#- name: find files \n# shell: (cd /opt/UnixBench/results; find . -maxdepth 1 -type f) | cut -d'/' -f2\n# register: files_to_copy\n\n- name: file files\n find:\n paths: \"/opt/UnixBench/results/\"\n use_regex: True\n register: files_t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 423, "all_permissive": false }