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
Sathvik-ai/Calculator-Anisble
d9f22e8eec01461628ac0768d5cb072373ba20c9
0
roles/flask
7,907
[ "no_license" ]
[ { "path": "roles/flask/tasks/main.yml", "content": "- name: Install Python and Flask\n apt:\n name: python3-pip\n state: present\n\n- name: Install Flask\n pip:\n name: flask\n\n- name: Copy Flask App\n copy:\n src: ../../app/\n dest: /opt/flask_app\n\n- name: Run Flask App\n shell: nohup...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 274, "all_permissive": false }
ansible_role
Sathvik-ai/Calculator-Anisble
d9f22e8eec01461628ac0768d5cb072373ba20c9
0
roles/nginx
7,907
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Copy Nginx Configuration\n template:\n src: nginx.conf.j2\n dest: /etc/nginx/nginx.conf\n notify: Restart Nginx\n- name: Install Nginx\n apt:\n name: nginx\n state: present\n\n- name: Copy Nginx Configuration\n template:\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 697, "all_permissive": false }
ansible_role
maksaptz/Postgres
f7a3c26c99a3ff4ef1dd2a94dc74daec738781da
0
ansible/roles/barman
7,907
[ "no_license" ]
[ { "path": "ansible/roles/barman/tasks/main.yml", "content": "---\n- name: Install packets on barman\n apt:\n name: \"{{item}}\"\n state: present\n update_cache: yes\n loop:\n - python3-psycopg2\n - postgresql\n - postgresql-contrib\n - wget\n - acl\n - barman\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4412, "all_permissive": false }
ansible_role
maksaptz/Postgres
f7a3c26c99a3ff4ef1dd2a94dc74daec738781da
0
ansible/roles/node1
7,907
[ "no_license" ]
[ { "path": "ansible/roles/node1/tasks/main.yml", "content": "---\n- name: Install Postgresql\n apt:\n name: \"{{item}}\"\n state: present\n update_cache: yes\n loop:\n - python3-psycopg2\n - postgresql\n - postgresql-contrib\n - acl\n\n- name: copy postgresql.conf\n copy:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 912, "all_permissive": false }
ansible_role
maksaptz/Postgres
f7a3c26c99a3ff4ef1dd2a94dc74daec738781da
0
ansible/roles/node2
7,907
[ "no_license" ]
[ { "path": "ansible/roles/node2/tasks/main.yml", "content": "---\n- name: Install Postgresql\n apt:\n name: \"{{item}}\"\n state: present\n update_cache: yes\n loop:\n - python3-psycopg2\n - postgresql\n - postgresql-contrib\n - pip\n - acl\n\n- name: install pexpect\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1204, "all_permissive": false }
ansible_role
meghana0102/ansible-todo-task
781ab160102e7ed8f50b342e0eb3d4e290a92a76
0
roles/frontend
7,907
[ "no_license" ]
[ { "path": "roles/frontend/tasks/main.yml", "content": " - name: Install Nginx\n become: yes\n apt:\n name: nginx\n update_cache: yes\n state: present\n \n - name: Download artifact from nexus\n get_url:\n url: http://172.31.4.60:8081/repository/frontend/frontend-{{APP_VER...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1097, "all_permissive": false }
ansible_role
AaronTraas/wordpress-static-vagrant
188412b4753ace31c95d4027d9415c4fd31281a0
0
ansible/roles/apache
7,907
[ "no_license" ]
[ { "path": "ansible/roles/apache/tasks/main.yml", "content": "---\n- name: Install Apache\n apt: pkg={{ item }}\n state=latest\n with_items:\n - apache2\n\n- name: Install Apache Modules\n apache2_module: state=present\n name={{ item }}\n notify: restart apache\n with_items:\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1763, "all_permissive": false }
ansible_role
AaronTraas/wordpress-static-vagrant
188412b4753ace31c95d4027d9415c4fd31281a0
0
ansible/roles/inotify
7,907
[ "no_license" ]
[ { "path": "ansible/roles/inotify/files/staticsync.sh", "content": "#!/bin/sh\n### BEGIN INIT INFO\n# Provides: staticsync\n# Required-Start: $remote_fs $syslog\n# Required-Stop: $remote_fs $syslog\n# Default-Start: 2 3 4 5\n# Default-Stop: 0 1 6\n# Short-Description: Syncs export di...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1195, "all_permissive": false }
ansible_role
AaronTraas/wordpress-static-vagrant
188412b4753ace31c95d4027d9415c4fd31281a0
0
ansible/roles/mysql
7,907
[ "no_license" ]
[ { "path": "ansible/roles/mysql/tasks/main.yml", "content": "---\n- name: Install MySQL Packages\n apt: pkg={{ item }} state=latest\n with_items:\n - mysql-server\n - mysql-client\n - python-mysqldb\n\n- name: Update root password for all root accounts\n mysql_user: >\n name=root \n host={{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1234, "all_permissive": false }
ansible_role
AaronTraas/wordpress-static-vagrant
188412b4753ace31c95d4027d9415c4fd31281a0
0
ansible/roles/nginx
7,907
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx\n apt: pkg=nginx\n state=latest\n\n- name: set permissions in '/usr/share/nginx/html/'\n file: \n dest: /var/www/\n owner: ubuntu\n group: ubuntu\n recurse: yes", "license_type": "no_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 205, "all_permissive": false }
ansible_role
AaronTraas/wordpress-static-vagrant
188412b4753ace31c95d4027d9415c4fd31281a0
0
ansible/roles/php
7,907
[ "no_license" ]
[ { "path": "ansible/roles/php/tasks/main.yml", "content": "- name: Install PHP Packages\n apt: pkg={{ item }}\n state=latest\n with_items: \"{{ php_packages }}\"\n\n- name: enable php-mcrypt config\n shell: phpenmod mcrypt;\n notify:\n - restart apache\n\n- name: Set timezone to '{{ timezone }}'...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 757, "all_permissive": false }
ansible_role
AaronTraas/wordpress-static-vagrant
188412b4753ace31c95d4027d9415c4fd31281a0
0
ansible/roles/server
7,907
[ "no_license" ]
[ { "path": "ansible/roles/server/tasks/main.yml", "content": "---\n- name: Install System Packages\n apt: pkg={{ item }}\n update_cache=yes\n state=latest\n with_items: \"{{ system_packages }}\"\n\n- name: Set timezone to '{{timezone}}'\n template: src=timezone.tpl dest=/etc/timezone\n\n- name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1102, "all_permissive": false }
ansible_role
AaronTraas/wordpress-static-vagrant
188412b4753ace31c95d4027d9415c4fd31281a0
0
ansible/roles/vagrant_local
7,907
[ "no_license" ]
[ { "path": "ansible/roles/vagrant_local/tasks/main.yml", "content": "---\n- name: Update /etc/hosts\n lineinfile: dest=/etc/hosts regexp='^127\\.0\\.0\\.1' line='127.0.0.1 localhost {{ vagrant_local_hostname }}' owner=root group=root mode=0644\n when: vagrant_local_hostname is defined\n", "license_type...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 213, "all_permissive": false }
ansible_role
tksarah/serverspec_lesson
aaca15727967ce43c718fb335f219b64a0b6a69f
0
roles/clear
7,908
[ "no_license" ]
[ { "path": "roles/clear/tasks/del.yml", "content": "- block:\n - name: remove serverspec target container for \"{{ t1name }}\"\n docker_container:\n name: \"{{ t1name }}\"\n image: \"tksarah/lesson_serverspec_target\"\n state: absent\n\n - name: remove serverspec host contain...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 812, "all_permissive": false }
ansible_role
tksarah/serverspec_lesson
aaca15727967ce43c718fb335f219b64a0b6a69f
0
roles/delete_only_dir
7,908
[ "no_license" ]
[ { "path": "roles/delete_only_dir/tasks/users.yml", "content": "- name: Delete lesson1 directory for {{ user }}\n file: path=\"/home/{{ user }}/lesson1_files\" state=absent\n when: lesson == \"del1\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 133 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 133, "all_permissive": false }
ansible_role
tksarah/serverspec_lesson
aaca15727967ce43c718fb335f219b64a0b6a69f
0
roles/lesson1
7,908
[ "no_license" ]
[ { "path": "roles/lesson1/files/lesson1_files/tools/playbook.yml", "content": "- hosts: localhost\n gather_facts: no\n\n vars:\n tname: \"{{ user }}_l1_target\"\n hname: \"{{ user }}_l1_host\"\n port: \"{{ cport }}:80\"\n ops: \"absent\"\n\n tasks:\n - block:\n - name: boot serverspe...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2321, "all_permissive": false }
ansible_role
asjadathick/ansible-docker_registry
0d874c70edfb94e90589912af1dae43cb8507015
0
roles/docker-registry
7,908
[ "no_license" ]
[ { "path": "roles/docker-registry/vars/RedHat.yml", "content": "redhat_yum_repo: \"https://download.docker.com/linux/centos/7/$basearch/stable\"\nredhat_gpg_key: \"https://download.docker.com/linux/centos/gpg\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 141 }, { ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 3328, "all_permissive": false }
ansible_role
eighty4/library
eba83fdc6ef5585850bf8adc812af57d2aa05500
0
ansible/roles/compose
7,908
[ "no_license" ]
[ { "path": "ansible/roles/compose/tasks/main.yml", "content": "---\n\n- name: Install Docker\n import_role:\n name: docker\n\n- set_fact:\n service_group: \"{{ service_name }}\"\n when: service_group is not defined\n\n- set_fact:\n service_user: \"{{ service_name }}\"\n when: service_user is not ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3273, "all_permissive": false }
ansible_role
eighty4/library
eba83fdc6ef5585850bf8adc812af57d2aa05500
0
ansible/roles/consul
7,908
[ "no_license" ]
[ { "path": "ansible/roles/consul/tasks/dns.yml", "content": "---\n\n- name: Create systemd-resolved config dir\n ansible.builtin.file:\n path: /etc/systemd/resolved.conf.d\n state: directory\n\n- name: Create systemd-resolved config\n ansible.builtin.template:\n src: dns.conf\n dest: /etc/syste...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2749, "all_permissive": false }
ansible_role
eighty4/library
eba83fdc6ef5585850bf8adc812af57d2aa05500
0
ansible/roles/docker
7,908
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n\n- name: Install required packages\n apt:\n update_cache: yes\n name: \"{{ item }}\"\n state: present\n with_items:\n - lsb-release\n - gnupg\n - ca-certificates\n - curl\n\n- name: Add Docker GPG apt Key\n apt_key:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 656, "all_permissive": false }
ansible_role
eighty4/library
eba83fdc6ef5585850bf8adc812af57d2aa05500
0
ansible/roles/elasticsearch
7,908
[ "no_license" ]
[ { "path": "ansible/roles/elasticsearch/tasks/es.install.yml", "content": "---\n\n- name: Check if Elasticsearch is installed\n command: dpkg-query -l elasticsearch\n ignore_errors: yes\n register: es_pkg_check\n\n- name: Continuing with Elasticsearch install\n when: not es_pkg_check is succeeded\n bloc...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1212, "all_permissive": false }
ansible_role
eighty4/library
eba83fdc6ef5585850bf8adc812af57d2aa05500
0
ansible/roles/nomad
7,908
[ "no_license" ]
[ { "path": "ansible/roles/nomad/tasks/main.yml", "content": "---\n\n- name: Install required packages\n ansible.builtin.apt:\n update_cache: yes\n name: gpg\n state: present\n\n- name: Install HashiCorp apt key\n ansible.builtin.apt_key:\n url: https://apt.releases.hashicorp.com/gpg\n state:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 664, "all_permissive": false }
ansible_role
jrnp97/Ansible
7ce101b9c9d1434a9259dbc02a54feb873240677
0
ansible_moodle/ansible001/roles/apache
7,908
[ "no_license" ]
[ { "path": "ansible_moodle/ansible001/roles/apache/vars/main.yml", "content": "---\nport_default: 8000\nmoodle_apache_dir: /var/www/html/moodle\nmoodle_source_dir: /opt/moodle\nmoodle_data_dir: /var/www/moodledata\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 }, ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 2920, "all_permissive": false }
ansible_role
jrnp97/Ansible
7ce101b9c9d1434a9259dbc02a54feb873240677
0
ansible_moodle/ansible001/roles/common
7,908
[ "no_license" ]
[ { "path": "ansible_moodle/ansible001/roles/common/tasks/main.yml", "content": "---\n- import_tasks: munin.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 30, "all_permissive": false }
ansible_role
jrnp97/Ansible
7ce101b9c9d1434a9259dbc02a54feb873240677
0
ansible_moodle/ansible001/roles/sqlserver
7,908
[ "no_license" ]
[ { "path": "ansible_moodle/ansible001/roles/sqlserver/tasks/main.yml", "content": "---\n- name: Especificando contraseña root para MySQL\n debconf:\n name: mysql-server\n question: mysql-server/root_password\n value: \"{{ mysql_root_password }}\"\n vtype: password\n\n- name: Confirmando contraseña r...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2173, "all_permissive": false }
ansible_role
jrnp97/Ansible
7ce101b9c9d1434a9259dbc02a54feb873240677
0
ansible_munin/Ansible/roles/apache
7,908
[ "no_license" ]
[ { "path": "ansible_munin/Ansible/roles/apache/tasks/main.yml", "content": "---\n- name: Instalando PHP y modulos requeridos\n apt:\n name: \"{{ item }}\"\n state: present\n update_cache: yes\n with_items:\n - php7.0-json\n - php7.0-mbstring\n - php7.0-intl\n - php7.0-xml\n - php7.0...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 555, "all_permissive": false }
ansible_role
jrnp97/Ansible
7ce101b9c9d1434a9259dbc02a54feb873240677
0
ansible_munin/Ansible/roles/munin-master
7,908
[ "no_license" ]
[ { "path": "ansible_munin/Ansible/roles/munin-master/handlers/main.yml", "content": "---\n# handlers file for munin-master", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "ansible_munin/Ansible/roles/munin-master/tasks/main.yml", "content": "---\...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2611, "all_permissive": false }
ansible_role
jrnp97/Ansible
7ce101b9c9d1434a9259dbc02a54feb873240677
0
ansible_munin/Ansible/roles/munin-node
7,908
[ "no_license" ]
[ { "path": "ansible_munin/Ansible/roles/munin-node/vars/main.yml", "content": "---\n# vars file for munin-node", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "ansible_munin/Ansible/roles/munin-node/tests/test.yml", "content": "---\n- hosts: loca...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1934, "all_permissive": false }
ansible_role
jrnp97/Ansible
7ce101b9c9d1434a9259dbc02a54feb873240677
0
ansible_munin/Ansible/roles/user
7,908
[ "no_license" ]
[ { "path": "ansible_munin/Ansible/roles/user/tasks/main.yml", "content": "---\n- name: Install sudo\n apt:\n name: sudo\n state: present\n\n- name: Ensure ansible user exists\n user:\n name: ansible\n state: present\n comment: Ansible\n\n- name: Ensure ansible user accepts the SSH key\n aut...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 386, "all_permissive": false }
ansible_role
jrnp97/Ansible
7ce101b9c9d1434a9259dbc02a54feb873240677
0
ansible_wiki/Ansible/roles/Apache
7,908
[ "no_license" ]
[ { "path": "ansible_wiki/Ansible/roles/Apache/handlers/main.yml", "content": "---\n# handlers file for Apache", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "ansible_wiki/Ansible/roles/Apache/vars/main.yml", "content": "---\n# vars file for Apac...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1563, "all_permissive": false }
ansible_role
jrnp97/Ansible
7ce101b9c9d1434a9259dbc02a54feb873240677
0
ansible_wiki/Ansible/roles/MediaWiki
7,908
[ "no_license" ]
[ { "path": "ansible_wiki/Ansible/roles/MediaWiki/tasks/main.yml", "content": "---\n- name: Instalando software de control de versiones para mediawiki (git)\n apt:\n name: git\n state: present\n\n- name: Descargando y extrayendo version estable de mediawiki\n unarchive:\n src: \"{{ url_stable }}\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 5673, "all_permissive": false }
ansible_role
jrnp97/Ansible
7ce101b9c9d1434a9259dbc02a54feb873240677
0
ansible_wiki/Ansible/roles/MySQL
7,908
[ "no_license" ]
[ { "path": "ansible_wiki/Ansible/roles/MySQL/vars/main.yml", "content": "---\nmysql_root_usr: root\nmysql_media_usr: mediaW\nmysql_root_password: <PASSWORD>-\nmysql_sock_path: /var/run/mysqld/mysqld.sock\nmysql_media_pwd: <PASSWORD>-\n", "license_type": "no_license", "detected_licenses": [], "siz...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 4509, "all_permissive": false }
ansible_role
Keolite/ansible-debian-10-lamp74
34408b77f742ee3df588e68fb4cdc6912315dedb
0
roles/hostname_conf
7,908
[ "no_license" ]
[ { "path": "roles/hostname_conf/templates/mysql_conf.j2", "content": "<VirtualHost *:80>\n\n ServerName {{ mysql_hostname }}\n\n ServerAdmin webmaster@localhost\n DocumentRoot /var/www/html/phpmyadmin\n\n DocumentRoot /var/www/html/phpmyadmin\n <Directory /var/www/html/phpm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2013, "all_permissive": false }
ansible_role
Keolite/ansible-debian-10-lamp74
34408b77f742ee3df588e68fb4cdc6912315dedb
0
roles/mariadb_10_5
7,908
[ "no_license" ]
[ { "path": "roles/mariadb_10_5/tasks/main.yml", "content": "- name: Install Utility software\n apt:\n update_cache: yes\n state: present\n pkg:\n - software-properties-common\n - dirmngr\n \n- name: Ajoute key\n command: apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_sign...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1651, "all_permissive": false }
ansible_role
Keolite/ansible-debian-10-lamp74
34408b77f742ee3df588e68fb4cdc6912315dedb
0
roles/module_apache2
7,908
[ "no_license" ]
[ { "path": "roles/module_apache2/tasks/main.yml", "content": "- apache2_module:\n state: present\n name: rewrite\n\n- name: enabled mod_rewrite\n apache2_module: \n name=alias\n state=present\n \n- name: enabled mod_rewrite\n apache2_module: \n name=proxy\n state=present\n \n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 339, "all_permissive": false }
ansible_role
Keolite/ansible-debian-10-lamp74
34408b77f742ee3df588e68fb4cdc6912315dedb
0
roles/nodejs
7,908
[ "no_license" ]
[ { "path": "roles/nodejs/tasks/main.yml", "content": "- name: download nodejs 12\n get_url:\n url: https://deb.nodesource.com/setup_15.x\n dest: /tmp/\n mode: 0755\n\n- name: execute setup_5.x script\n command: /tmp/setup_15.x\n\n- name: install nodejs\n apt:\n name: nodejs\n state: present...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 321, "all_permissive": false }
ansible_role
Keolite/ansible-debian-10-lamp74
34408b77f742ee3df588e68fb4cdc6912315dedb
0
roles/php74
7,908
[ "no_license" ]
[ { "path": "roles/php74/tasks/main.yml", "content": "- name: Add apt key.\n apt_key:\n url: https://packages.sury.org/php/apt.gpg\n state: present\n when: ansible_distribution == \"Debian\"\n\n- name: Add repo.\n apt_repository:\n repo: \"deb https://packages.sury.org/php/ {{ ansible_distribution...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1986, "all_permissive": false }
ansible_role
Keolite/ansible-debian-10-lamp74
34408b77f742ee3df588e68fb4cdc6912315dedb
0
roles/phpmyadmin
7,908
[ "no_license" ]
[ { "path": "roles/phpmyadmin/templates/phpmyadmin_conf.j2", "content": "Alias /phpmyadmin /var/www/html/phpmyadmin\n<Directory /var/www/html/phpmyadmin>\n Options SymLinksIfOwnerMatch\n DirectoryIndex index.php\n\n <IfModule mod_php.c>\n <IfModule mod_mime.c>\n AddType application/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 8471, "all_permissive": false }
ansible_role
Keolite/ansible-debian-10-lamp74
34408b77f742ee3df588e68fb4cdc6912315dedb
0
roles/projet_app
7,908
[ "no_license" ]
[ { "path": "roles/projet_app/tasks/main.yml", "content": "- name: mkdir adminer\n file:\n path: \"{{ path_projet }}\"\n state: directory\n mode: 0755\n recurse: yes\n become: yes\n become_user: www-data", "license_type": "no_license", "detected_licenses": [], "size_bytes": 150 } ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 150, "all_permissive": false }
ansible_role
Keolite/ansible-debian-10-lamp74
34408b77f742ee3df588e68fb4cdc6912315dedb
0
roles/utilitaires
7,908
[ "no_license" ]
[ { "path": "roles/utilitaires/tasks/main.yml", "content": "- name: install utilitaires de base\n apt:\n pkg:\n - curl\n - zip\n - unzip\n - git\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 122 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 122, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/autotime
7,908
[ "no_license" ]
[ { "path": "roles/autotime/tasks/main.yml", "content": "- name: Set time and date automatically\n become: true\n ansible.builtin.shell:\n cmd: if [ \"$(timedatectl show -p NTP)\" == \"NTP=no\" ]; then timedatectl set-ntp true; printf \"%s\" \"$?\"; else printf \"%s\" \"-1\"; fi\n register: autotime\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 319, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/configure_pamac
7,908
[ "no_license" ]
[ { "path": "roles/configure_pamac/defaults/main.yml", "content": "---\nremove_unrequired_deps: no\naur_support: no\ncheck_aur_updates: no\nflatpak_support: no\nsnap_support: no\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 106 }, { "path": "roles/configure_pamac...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1777, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/docker
7,908
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Install Docker\n become: true\n pacman:\n name: docker\n state: present\n tags:\n - docker\n\n- name: Enable Docker service\n become: true\n systemd:\n name: docker\n state: started\n enabled: yes\n\n- name: Add user to dock...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 369, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/firewall
7,908
[ "no_license" ]
[ { "path": "roles/firewall/tasks/main.yml", "content": "- name: Enable firewall\n become: true\n community.general.ufw:\n state: enabled\n\n#TODO\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 90, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/hostname
7,908
[ "no_license" ]
[ { "path": "roles/hostname/tasks/main.yml", "content": "---\n- name: Set system hostname\n become: yes\n hostname:\n name: \"{{ hostname }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 85, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/oh-my-zsh
7,908
[ "no_license" ]
[ { "path": "roles/oh-my-zsh/defaults/main.yml", "content": "---\nomz_update_mode: \"auto\"\nomz_update_fequency_days: 13\nomz_theme: \"robbyrussell\"\nomz_custom_plugins: []\nomz_enabled_plugins: []\nomz_file_prefix_lines: []\nomz_source_prefix_lines: []\nomz_file_postfix_lines: []", "license_type": "no_...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 13760, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/packages_aur
7,908
[ "no_license" ]
[ { "path": "roles/packages_aur/tasks/main.yml", "content": "---\n- name: Install AUR packages\n with_items: \"{{ aur_packages }}\"\n kewlfft.aur.aur:\n use: yay\n name: \"{{ item.name }}\"\n state: present\n extra_args: \"{{ '--removemake' if item.remove_make }}\"\n aur_only: yes\n", "li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 224, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/packages_official
7,908
[ "no_license" ]
[ { "path": "roles/packages_official/tasks/main.yml", "content": "---\n- name: Install packages from manjaro official repo\n become: yes\n with_items: \"{{ official_packages }}\"\n community.general.pacman:\n executable: pacman\n state: present\n name: \"{{ item.name }}\"\n extra_args: \"{{ '--...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 260, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/packages_pipx
7,908
[ "no_license" ]
[ { "path": "roles/packages_pipx/tasks/main.yml", "content": "---\n- name: Install pipx packages\n with_items: \"{{ pipx_packages }}\"\n community.general.pipx:\n state: present\n name: \"{{ item }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 15...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 152, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/packages_snap
7,908
[ "no_license" ]
[ { "path": "roles/packages_snap/tasks/main.yml", "content": "- name: Install Snap\n community.general.pacman:\n name: snapd\n state: present\n\n- name: Enable snapd socket\n become: true\n ansible.builtin.systemd:\n name: \"snapd.socket\"\n enabled: yes\n\n- name: Enable snapd service\n becom...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 642, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/pyenv
7,908
[ "no_license" ]
[ { "path": "roles/pyenv/files/install_pyenv_python_version.bash", "content": "#!/usr/bin/env bash\n\nfunction main() {\n ############################################################################\n ## Script info\n ############################################################################\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 14469, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/user_groups
7,908
[ "no_license" ]
[ { "path": "roles/user_groups/tasks/main.yml", "content": "---\n- name: Add user to groups\n become: yes\n with_items: '{{ user_groups }}'\n user:\n state: present\n append: yes\n name: '{{ username }}'\n groups: '{{ item }}'\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 174, "all_permissive": false }
ansible_role
jasonlyle88/ansible-server
0da21beb2e5b29ca9dcafae79ae699b8231193d9
0
roles/users
7,908
[ "no_license" ]
[ { "path": "roles/users/tasks/main.yml", "content": "---\n- name: Setup system groups\n become: yes\n with_items: '{{ users }}'\n group:\n state: present\n name: '{{ item.username }}'\n gid: '{{ item.gid }}'\n system: '{{ item.system }}'\n\n- name: Setup system users\n become: yes\n with_ite...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 484, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure-AKS/db_k8s_peering/roles/k8s_delete
7,908
[ "no_license" ]
[ { "path": "infrastructure-AKS/db_k8s_peering/roles/k8s_delete/tasks/main.yml", "content": "---\n- name: Delete Cluster\n shell: az aks delete --name \"{{name}}\" --resource-group \"{{ resource_group }}\" \n\n- name: Delete Virtual Network\n shell: az network vnet delete --resource-group \"{{ resource_grou...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 295, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure-AKS/db_k8s_peering/roles/k8s_setup
7,908
[ "no_license" ]
[ { "path": "infrastructure-AKS/db_k8s_peering/roles/k8s_setup/defaults/main.yml", "content": "resource_group: azure-k8s-cluster\nk8s_version: \"1.18.10\"\nlocation: westus2\naks_name: k8s-sahithisarabu-me\nusername: azureuser\nnode_count: 6\nnode_size: Standard_D4s_v3\nssh_key: ~/.ssh/cloud.pub\nclient_id: 0...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1815, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure-AKS/db_k8s_peering/roles/metrics_setup
7,908
[ "no_license" ]
[ { "path": "infrastructure-AKS/db_k8s_peering/roles/metrics_setup/defaults/main.yml", "content": "subscription: 98b42acd-cea2-4cd0-a876-f5ac71670675\nresource_group: azure-k8s-cluster\naks_name: k8s-sahithisarabu-me", "license_type": "no_license", "detected_licenses": [], "size_bytes": 115 }, ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 482, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure-AKS/db_k8s_peering/roles/rds_delete
7,908
[ "no_license" ]
[ { "path": "infrastructure-AKS/db_k8s_peering/roles/rds_delete/tasks/main.yml", "content": "---\n- name: Delete MySQL Server Instance\n shell: az mysql server delete \n --resource-group {{ resource_group }} \n --name csye7125\n\n- name: Delete MySQL Server Instance\n shell: az mysql server delete \n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 455, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure-AKS/db_k8s_peering/roles/rds_setup
7,908
[ "no_license" ]
[ { "path": "infrastructure-AKS/db_k8s_peering/roles/rds_setup/defaults/main.yml", "content": "resource_group: azure-k8s-cluster\naks_name: k8s-sahithisarabu-me\nlocation: westus2\nadmin_user: azureuser\nadmin_password: <PASSWORD>\nsize: 5120\nversion: 8.0\nsku_name: B_Gen5_1", "license_type": "no_license...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2344, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure/jenkins_docker/roles/jenkins
7,908
[ "no_license" ]
[ { "path": "infrastructure/jenkins_docker/roles/jenkins/templates/nginx.config.j2", "content": "events {}\nhttp {\n upstream jenkins {\n server 127.0.0.1:8080 fail_timeout=0;\n }\n\n server {\n listen 80 default_server;\n listen [::]:80 defaul...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3991, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure/rds_k8s_vpcPeering/roles/k8s_autoscaling
7,908
[ "no_license" ]
[ { "path": "infrastructure/rds_k8s_vpcPeering/roles/k8s_autoscaling/tasks/main.yml", "content": "---\n- name: Attach IAM policy for nodes\n community.aws.iam_policy:\n iam_type: role\n iam_name: nodes.{{name}}\n policy_name: \"Autoscaling\"\n policy_document: ../roles/k8s_autoscaling/file/policy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 458, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure/rds_k8s_vpcPeering/roles/k8s_setup
7,908
[ "no_license" ]
[ { "path": "infrastructure/rds_k8s_vpcPeering/roles/k8s_setup/defaults/main.yml", "content": "aws_region: us-west-2\nk8s_version: \"1.16.15\"\naws_profile: prod\nname: k8s.sahanakannahallimolesomanna.me\nnode_count: 3\nmaster_size: t2.micro\nnode_size: t2.micro\nssh_key: ~/.ssh/cloud.pub", "license_type"...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2264, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure/rds_k8s_vpcPeering/roles/metrics_setup
7,908
[ "no_license" ]
[ { "path": "infrastructure/rds_k8s_vpcPeering/roles/metrics_setup/tasks/main.yml", "content": "- name: Create Metrics Server\n shell: kubectl apply -f ../roles/metrics_setup/tasks/components.yaml\n environment:\n AWS_PROFILE: \"{{ aws_profile }}\"\n KOPS_STATE_STORE: \"s3://{{name}}\"\n\n\n", "li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 193, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure/rds_k8s_vpcPeering/roles/peering_delete
7,908
[ "no_license" ]
[ { "path": "infrastructure/rds_k8s_vpcPeering/roles/peering_delete/defaults/main.yml", "content": "aws_region: us-west-2\naws_profile: prod\nk8s_vpc_name: k8s.sahanakannahallimolesomanna.me\nrds_vpc_name: rds_vpc\nvpc_name: \"rds_vpc\"\nvpc_cidr: 10.0.0.0/16\n\n", "license_type": "no_license", "detec...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1346, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure/rds_k8s_vpcPeering/roles/peering_setup
7,908
[ "no_license" ]
[ { "path": "infrastructure/rds_k8s_vpcPeering/roles/peering_setup/tasks/main.yml", "content": "---\n- name: Get k8s vpc info\n ec2_vpc_net_info:\n profile: \"{{ aws_profile }}\"\n region: \"{{ aws_region }}\"\n filters:\n \"tag:Name\": \"{{ k8s_vpc_name }}\"\n register: k8s_vpc\n\n- name: Get...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2795, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure/rds_k8s_vpcPeering/roles/rds_delete
7,908
[ "no_license" ]
[ { "path": "infrastructure/rds_k8s_vpcPeering/roles/rds_delete/defaults/main.yml", "content": "name: k8s.sahanakannahallimolesomanna.me\naws_region: us-west-2\naws_profile: prod\nk8s_vpc_name: k8s.sahanakannahallimolesomanna.me\nrds_vpc_name: rds_vpc\nvpc_name: \"rds_vpc\"\nvpc_cidr: 10.0.0.0/16\nvpc_subnets...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3067, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
infrastructure/rds_k8s_vpcPeering/roles/rds_setup
7,908
[ "no_license" ]
[ { "path": "infrastructure/rds_k8s_vpcPeering/roles/rds_setup/defaults/main.yml", "content": "aws_region: us-west-2\nk8s_version: \"1.16.15\"\naws_profile: prod\nname: k8s.sahanakannahallimolesomanna.me\nvpc_name: \"rds_vpc\"\nvpc_cidr: 10.0.0.0/16\nvpc_subnets:\n private-1:\n cidr: 10.0.1.0/24\n az: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 5209, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
jenkins/roles/jenkins
7,908
[ "no_license" ]
[ { "path": "jenkins/roles/jenkins/tasks/main.yml", "content": "---\n- name: Include default variables\n include_vars:\n file: ../../../vars/main.yml\n\n- name: Install latest version of \"openjdk-8-jdk\" \n apt:\n name: openjdk-8-jdk\n state: latest\n install_recommends: yes\n update_cache: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1733, "all_permissive": false }
ansible_role
Sahithi-Sarabu/CSYE7125-Advance-Cloud-Computing
91217bf34f7beb33a5527417178b1453ddbbf4f0
1
k8s/roles/delete
7,908
[ "no_license" ]
[ { "path": "k8s/roles/delete/tasks/main.yml", "content": "---\n- name: Delete Cluster\n shell: kops delete cluster \n --name={{NAME}}\n --state=s3://{{NAME}}\n --yes\n environment:\n AWS_PROFILE: \"{{ AWS_PROFILE }}\"\n KOPS_STATE_STORE: \"s3://{{NAME}}\"", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 261, "all_permissive": false }
ansible_role
samanta2299/terraform-lab
6c805c1fbd6e4f5eac0a4b0dfceb9feaf8f90dff
0
es3/Ansible_control_node/etc/ansible/roles/enable_network_interfaces
7,908
[ "no_license" ]
[ { "path": "es3/Ansible_control_node/etc/ansible/roles/enable_network_interfaces/tasks/main.yml", "content": "---\n- name: \"Gather network interfaces facts\"\n ansible.builtin.setup:\n filter: ansible_interfaces\n register: network_interfaces\n\n- name: \"Bring up all network interfaces\"\n ansible.bu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 350, "all_permissive": false }
ansible_role
samanta2299/terraform-lab
6c805c1fbd6e4f5eac0a4b0dfceb9feaf8f90dff
0
es3/Ansible_control_node/etc/ansible/roles/firewall
7,908
[ "no_license" ]
[ { "path": "es3/Ansible_control_node/etc/ansible/roles/firewall/handlers/main.yml", "content": "---\n- name: \"Save iptables rules\"\n ansible.builtin.command: iptables-save\n register: iptables_output\n\n- name: \"Write iptables rules to file\"\n ansible.builtin.copy:\n content: \"{{ iptables_output.s...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 4107, "all_permissive": false }
ansible_role
samanta2299/terraform-lab
6c805c1fbd6e4f5eac0a4b0dfceb9feaf8f90dff
0
es3/Ansible_control_node/etc/ansible/roles/isc-dhcp
7,908
[ "no_license" ]
[ { "path": "es3/Ansible_control_node/etc/ansible/roles/isc-dhcp/tasks/main.yml", "content": "---\n- name: \"Install ISC DHCP Server\"\n ansible.builtin.apt:\n name: isc-dhcp-server\n state: present\n update_cache: yes\n\n- name: \"Copy DHCP configuration file\"\n ansible.builtin.copy:\n src: /e...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 607, "all_permissive": false }
ansible_role
samanta2299/terraform-lab
6c805c1fbd6e4f5eac0a4b0dfceb9feaf8f90dff
0
es3/Ansible_control_node/etc/ansible/roles/netplan_config
7,908
[ "no_license" ]
[ { "path": "es3/Ansible_control_node/etc/ansible/roles/netplan_config/tasks/main.yml", "content": "---\n- name: \"Copy netplan configuration to the VM\"\n ansible.builtin.copy:\n src: /etc/ansible/roles/netplan_config/files/00-cloud-init.yaml\n dest: /etc/netplan/00-cloud-init.yaml\n owner: root\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 456, "all_permissive": false }
ansible_role
samanta2299/terraform-lab
6c805c1fbd6e4f5eac0a4b0dfceb9feaf8f90dff
0
es3/Ansible_control_node/etc/ansible/roles/static_ip_config
7,908
[ "no_license" ]
[ { "path": "es3/Ansible_control_node/etc/ansible/roles/static_ip_config/tasks/main.yml", "content": "---\n- name: \"Enable IP forwarding\"\n ansible.builtin.sysctl:\n name: net.ipv4.ip_forward\n value: \"1\"\n state: present\n reload: yes\n notify: Apply sysctl changes\n\n- name: \"Copy netplan...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 968, "all_permissive": false }
ansible_role
zerok/speedtesting
ad5d9af772a09ab16d6e31163a8ef3aecd3e9b06
2
ansible/roles/chronograf
7,908
[ "no_license" ]
[ { "path": "ansible/roles/chronograf/templates/chronograf.service.j2", "content": "[Unit]\nDescription=Chronograf\n\n[Service]\nExecStart=/opt/chronograf-1.6.2-1/usr/bin/chronograf --influxdb-url=http://localhost:8086\nUser=chronograf\nWorkingDirectory=/var/lib/chronograf\n\n[Install]\nWantedBy=multi-user.ta...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1121, "all_permissive": false }
ansible_role
zerok/speedtesting
ad5d9af772a09ab16d6e31163a8ef3aecd3e9b06
2
ansible/roles/influxdb
7,908
[ "no_license" ]
[ { "path": "ansible/roles/influxdb/handlers/main.yml", "content": "- name: restart influxdb\n systemd:\n name: influxdb.service\n daemon_reload: yes\n state: restarted\n enabled: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { "path": "an...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1546, "all_permissive": false }
ansible_role
zerok/speedtesting
ad5d9af772a09ab16d6e31163a8ef3aecd3e9b06
2
ansible/roles/speedtesting
7,908
[ "no_license" ]
[ { "path": "ansible/roles/speedtesting/templates/speedtest.service.j2", "content": "[Service]\nType=oneshot\nExecStart=/usr/local/bin/pipenv run python speedtest.py --influx-database speedtesting\nWorkingDirectory=/opt/speedtesting\nUser=speedtesting\n", "license_type": "no_license", "detected_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 2097, "all_permissive": false }
ansible_role
amit-chauhan-aws/ansible-roboshop
4fef45729e805521acd643f0dc49d344058c2c51
0
roles/catalogue
7,908
[ "no_license" ]
[ { "path": "roles/catalogue/tasks/main.yml", "content": "- name: RUn NodeJS Common Setup\n include_role:\n name: common\n tasks_from: nodejs\n vars:\n APP_NAME: catalogue\n\n", "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
amit-chauhan-aws/ansible-roboshop
4fef45729e805521acd643f0dc49d344058c2c51
0
roles/common
7,908
[ "no_license" ]
[ { "path": "roles/common/tasks/go.yml", "content": "- name: Add Application User\n include: application-user.yml\n\n- name: Download Artifacts\n include: artifact-download.yml\n\n- name: Copy Artifacts\n copy:\n src: /tmp/{{APP_NAME}}\n dest: /home/{{APPLICATION_USER}}\n remote_src: yes\n owne...
{ "task_files": 10, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 11, "total_bytes": 5767, "all_permissive": false }
ansible_role
amit-chauhan-aws/ansible-roboshop
4fef45729e805521acd643f0dc49d344058c2c51
0
roles/dispatch
7,908
[ "no_license" ]
[ { "path": "roles/dispatch/tasks/main.yml", "content": "- name: Setup GoLanG Service - Dispatch\n include_role:\n name: common\n tasks_from: go\n vars:\n APP_NAME: dispatch\n\n\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
amit-chauhan-aws/ansible-roboshop
4fef45729e805521acd643f0dc49d344058c2c51
0
roles/frontend
7,908
[ "no_license" ]
[ { "path": "roles/frontend/tasks/main.yml", "content": "- name: Install Nginx\n yum:\n name: nginx\n state: present\n\n- name: Download Artifacts\n include_role:\n name: common\n tasks_from: artifact-download\n vars:\n APP_NAME: frontend\n\n- name: Remove old htdocs\n file:\n path: /usr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 577, "all_permissive": false }
ansible_role
amit-chauhan-aws/ansible-roboshop
4fef45729e805521acd643f0dc49d344058c2c51
0
roles/mongo
7,908
[ "no_license" ]
[ { "path": "roles/mongo/tasks/main.yml", "content": "- name: Setup MongoDB yum repo\n copy:\n src: mongo.repo\n dest: /etc/yum.repos.d/mongodb.repo\n\n- name: Install MongoDB\n yum:\n name: mongodb-org\n state: latest\n\n- name: Start Service MongoDB\n systemd:\n state: started\n name: m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 490, "all_permissive": false }
ansible_role
amit-chauhan-aws/ansible-roboshop
4fef45729e805521acd643f0dc49d344058c2c51
0
roles/mysql
7,908
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "- name: Check Package Installed\n yum:\n list: mysql-community-server\n register: out\n\n- name: Download MySQL\n unarchive:\n src: \"{{MYSQL_URL}}\"\n dest: /tmp\n remote_src: yes\n when: out.results|length == 0\n\n- name: Remove MariaDB\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1558, "all_permissive": false }
ansible_role
amit-chauhan-aws/ansible-roboshop
4fef45729e805521acd643f0dc49d344058c2c51
0
roles/payment
7,908
[ "no_license" ]
[ { "path": "roles/payment/tasks/main.yml", "content": "- name: Run Python Common Setup\n include_role:\n name: common\n tasks_from: python\n vars:\n APP_NAME: payment\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 119, "all_permissive": false }
ansible_role
amit-chauhan-aws/ansible-roboshop
4fef45729e805521acd643f0dc49d344058c2c51
0
roles/rabbitmq
7,908
[ "no_license" ]
[ { "path": "roles/rabbitmq/tasks/main.yml", "content": "- name: Install Erlang\n yum:\n name: https://packages.erlang-solutions.com/erlang/rpm/centos/7/x86_64/esl-erlang_22.2.1-1~centos~7_amd64.rpm\n state: present\n\n- name: RabbitMQ Repos Setup\n shell: curl -s https://packagecloud.io/install/repos...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 496, "all_permissive": false }
ansible_role
amit-chauhan-aws/ansible-roboshop
4fef45729e805521acd643f0dc49d344058c2c51
0
roles/redis
7,908
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yml", "content": "- name: Install Redis repos\n yum:\n name: http://rpms.remirepo.net/enterprise/remi-release-7.rpm\n state: present\n\n- name: Install redis\n yum:\n name: redis\n state: present\n enablerepo: remi\n\n- name: Start Redis\n systemd:\n na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 289, "all_permissive": false }
ansible_role
amit-chauhan-aws/ansible-roboshop
4fef45729e805521acd643f0dc49d344058c2c51
0
roles/shipping
7,908
[ "no_license" ]
[ { "path": "roles/shipping/tasks/main.yml", "content": "- name: Setup Java Service\n include_role:\n name: common\n tasks_from: java\n vars:\n APP_NAME: shipping\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 114 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 114, "all_permissive": false }
ansible_role
dgarros/ravello-ansible
6484bb9e10e48f6ea3503d2555004a247dd86286
0
roles/ravello.application_create
7,908
[ "no_license" ]
[ { "path": "roles/ravello.application_create/tasks/main.yaml", "content": "---\n###############################\n## Check tmp dir ###\n###############################\n - name: Create tmp directory\n file: path={{ ravello_tmp_dir }} state=directory\n run_once: True\n tags: [ crea...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 9920, "all_permissive": false }
ansible_role
dgarros/ravello-ansible
6484bb9e10e48f6ea3503d2555004a247dd86286
0
roles/ravello.application_delete
7,908
[ "no_license" ]
[ { "path": "roles/ravello.application_delete/tasks/main.yaml", "content": "---\n###############################\n## Get Application ID ###\n###############################\n - name: Get App ID from Ravello\n ravello_get_id:\n resource_name: \"{{ ravello_app_name }}\"\n resource_ty...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 931, "all_permissive": false }
ansible_role
dgarros/ravello-ansible
6484bb9e10e48f6ea3503d2555004a247dd86286
0
roles/ravello.applications_create
7,908
[ "no_license" ]
[ { "path": "roles/ravello.applications_create/defaults/main.yaml", "content": "\n#\n\nravello_blueprint: not defined\nravello_app_list: []\nravello_tmp_dir: /tmp/ravello\nravello_expiration_time_min: 30\n\nravello_fqdn_file_name: fqdn\nravello_fqdn_dir: app\n\nravello_inventory_template: inventory.ini.j2\nra...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 10534, "all_permissive": false }
ansible_role
dgarros/ravello-ansible
6484bb9e10e48f6ea3503d2555004a247dd86286
0
roles/ravello.applications_delete
7,908
[ "no_license" ]
[ { "path": "roles/ravello.applications_delete/tasks/main.yaml", "content": "---\n###############################\n## Get Application ID ###\n###############################\n - name: Get App ID from Ravello\n ravello_get_id:\n resource_name: \"{{ item.app_name }}\"\n resource_type...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1003, "all_permissive": false }
ansible_role
dgarros/ravello-ansible
6484bb9e10e48f6ea3503d2555004a247dd86286
0
roles/ravello.applications_start
7,908
[ "no_license" ]
[ { "path": "roles/ravello.applications_start/tasks/main.yaml", "content": "---\n###############################\n## Get Application ID ###\n###############################\n - name: Get App ID from Ravello\n ravello_get_id:\n resource_type: applications\n resource_name: \"{{ item....
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1627, "all_permissive": false }
ansible_role
dgarros/ravello-ansible
6484bb9e10e48f6ea3503d2555004a247dd86286
0
roles/ravello.applications_stop
7,908
[ "no_license" ]
[ { "path": "roles/ravello.applications_stop/tasks/main.yaml", "content": "---\n###############################\n## Get Application ID ###\n###############################\n - name: Get App ID from Ravello\n ravello_get_id:\n resource_type: applications\n resource_name: \"{{ item.a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 991, "all_permissive": false }
ansible_role
dgarros/ravello-ansible
6484bb9e10e48f6ea3503d2555004a247dd86286
0
roles/ravello.get_fqdn
7,908
[ "no_license" ]
[ { "path": "roles/ravello.get_fqdn/defaults/main.yaml", "content": "\n#\nravello_connectivity_check: true\nravello_connectivity_port: 22\nravello_connectivity_timeout: 5\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 98 }, { "path": "roles/ravello.get_fqdn/tasks/...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1770, "all_permissive": false }
ansible_role
dgarros/ravello-ansible
6484bb9e10e48f6ea3503d2555004a247dd86286
0
roles/ravello.vm_start
7,908
[ "no_license" ]
[ { "path": "roles/ravello.vm_start/tasks/main.yaml", "content": "---\n\n###############################\n## Get Application ID ###\n###############################\n - name: Get App ID from Ravello\n ravello_get_id:\n resource_name: \"{{ ravello_app_name }}\"\n resource_type: appl...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3215, "all_permissive": false }
ansible_role
hung2602/ansible-tool
bb6fef16e605cc1b3e7e3dad98d292cf12d73fb7
0
roles/adduser
7,910
[ "no_license" ]
[ { "path": "roles/adduser/tasks/main.yaml", "content": "---\n\n\n- debug: msg=\" Create User {{ users }} \"\n- debug: msg=\" Remove User {{ users_deleted }}\"\n\n- name: Create admin users\n user:\n name: \"{{item[1].user}}\"\n password: \"{{ item[1].password | password_hash('<PASSWORD>') }}\"\n co...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1830, "all_permissive": false }
ansible_role
hung2602/ansible-tool
bb6fef16e605cc1b3e7e3dad98d292cf12d73fb7
0
roles/cassandra-cluster
7,910
[ "no_license" ]
[ { "path": "roles/cassandra-cluster/templates/jmxremote.password.j2", "content": "cassandra {{ cassandra_jmx_password }}\ncontrolRole someOtherHardToRememberPassword", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 }, { "path": "roles/cassandra-cluster/defaults/ma...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2772, "all_permissive": false }
ansible_role
hung2602/ansible-tool
bb6fef16e605cc1b3e7e3dad98d292cf12d73fb7
0
roles/cassandra-reaper
7,910
[ "no_license" ]
[ { "path": "roles/cassandra-reaper/templates/cassandra-reaper.service.j2", "content": "[Unit]\nDescription=Reaper for Apache Cassandra\nDocumentation=http://cassandra-reaper.io/\nWants=remote-fs.target syslog.socket\nAfter=remote-fs.target syslog.socket\n\n[Service]\nEnvironment=\"REAPER_JMX_KEY={{ jmx_key }...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 2109, "all_permissive": false }
ansible_role
hung2602/ansible-tool
bb6fef16e605cc1b3e7e3dad98d292cf12d73fb7
0
roles/change-hostname
7,910
[ "no_license" ]
[ { "path": "roles/change-hostname/tasks/main.yaml", "content": "---\n- name: Change the hostname to our standard\n hostname:\n name=\"{{ inventory_hostname }}\"\n when:\n ansible_fqdn != ansible_ssh_host\n\n\n\n# - name: Fix /etc/hosts removing the old hostname\n# tags:\n# - hosts\n# lineinfi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 896, "all_permissive": false }
ansible_role
hung2602/ansible-tool
bb6fef16e605cc1b3e7e3dad98d292cf12d73fb7
0
roles/mongodb
7,910
[ "no_license" ]
[ { "path": "roles/mongodb/defaults/main.yaml", "content": "dir_ex: /opt/mongodb", "license_type": "no_license", "detected_licenses": [], "size_bytes": 20 }, { "path": "roles/mongodb/templates/mongodb-repo.sh.j2", "content": "curl -fsSL https://www.mongodb.org/static/pgp/server-6.0.asc...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1161, "all_permissive": false }
ansible_role
hung2602/ansible-tool
bb6fef16e605cc1b3e7e3dad98d292cf12d73fb7
0
roles/mongodb-exporter
7,910
[ "no_license" ]
[ { "path": "roles/mongodb-exporter/handlers/main.yaml", "content": "---\r\n- name: Restart mongodb_exporter\r\n systemd:\r\n name: mongodb_exporter\r\n state: restarted\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 101 }, { "path": "roles/mongodb-export...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1507, "all_permissive": false }