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
kneissel/Ansible-SrvWeb
0f86d640b9f2274e59d058d1c10e0f9833de2989
0
roles/common
7,603
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: Install libmcrypt-dev\n apt: name=libmcrypt-dev state=present update_cache=yes\n\n- name: Create www root directory\n file:\n path: /home/www\n state: directory\n mode: '0777'\n\n- name: Add user\n user:\n name: \"{{ web_user_name }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 315, "all_permissive": false }
ansible_role
kneissel/Ansible-SrvWeb
0f86d640b9f2274e59d058d1c10e0f9833de2989
0
roles/mysql
7,603
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "- name: Set MySQL root password before installing\n debconf: \n name: 'mysql-server' \n question: 'mysql-server/db_root_passwd' \n value: '{{db_root_passwd | quote}}' \n vtype: 'password'\n \n- name: Confirm MySQL root password before insta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1921, "all_permissive": false }
ansible_role
kneissel/Ansible-SrvWeb
0f86d640b9f2274e59d058d1c10e0f9833de2989
0
roles/nginx
7,603
[ "no_license" ]
[ { "path": "roles/nginx/templates/server.j2", "content": "upstream fastcgi_backend {\n server unix:/var/run/php/php7.2-fpm-{{ web_user_name }}.sock;\n}\n\nserver {\n listen 80 default_server;\n listen [::]:80 default_server;\n server_name {{ web_server_name }};\n return 30...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3241, "all_permissive": false }
ansible_role
kneissel/Ansible-SrvWeb
0f86d640b9f2274e59d058d1c10e0f9833de2989
0
roles/php-fpm
7,603
[ "no_license" ]
[ { "path": "roles/php-fpm/templates/server.j2", "content": "[{{ web_user_name }}]\nuser = {{ web_user_name }}\ngroup = {{ web_user_name }}\nlisten = /var/run/php/php7.2-fpm-{{ web_user_name }}.sock\nlisten.owner = www-data\nlisten.group = www-data\npm = dynamic\npm.max_children = 15\npm.start_servers = 5\npm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2843, "all_permissive": false }
ansible_role
Exeldoe123/cloudninja-devops-project
ce1a88a05a5c4fa3fe18687c684f9be4af24b1aa
0
vagrant/ansible/roles/cloudninja-app
7,603
[ "no_license" ]
[ { "path": "vagrant/ansible/roles/cloudninja-app/templates/ecosystem.config.js.j2", "content": "module.exports = {\n apps: [{\n name: 'cloudninja-app',\n script: 'src/app.js',\n instances: 2,\n exec_mode: 'cluster',\n env: {\n NODE_ENV: 'production',\n PORT: 3000\n },\n error_...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2150, "all_permissive": false }
ansible_role
Exeldoe123/cloudninja-devops-project
ce1a88a05a5c4fa3fe18687c684f9be4af24b1aa
0
vagrant/ansible/roles/nginx
7,603
[ "no_license" ]
[ { "path": "vagrant/ansible/roles/nginx/tasks/main.yml", "content": "---\n- name: Installation de Nginx\n apt:\n name: nginx\n state: present\n update_cache: yes\n\n- name: Démarrage et activation de Nginx\n service:\n name: nginx\n state: started\n enabled: yes\n\n- name: Configuration d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2424, "all_permissive": false }
ansible_role
Exeldoe123/cloudninja-devops-project
ce1a88a05a5c4fa3fe18687c684f9be4af24b1aa
0
vagrant/ansible/roles/nodejs
7,603
[ "no_license" ]
[ { "path": "vagrant/ansible/roles/nodejs/tasks/main.yml", "content": "---\n- name: Installation de Node.js repository\n shell: curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -\n args:\n creates: /etc/apt/sources.list.d/nodesource.list\n\n- name: Installation de Node.js\n apt:\n name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1019, "all_permissive": false }
ansible_role
Exeldoe123/cloudninja-devops-project
ce1a88a05a5c4fa3fe18687c684f9be4af24b1aa
0
vagrant/ansible/roles/postgresql
7,603
[ "no_license" ]
[ { "path": "vagrant/ansible/roles/postgresql/tasks/main.yml", "content": "---\n- name: Installation de PostgreSQL\n apt:\n name:\n - postgresql\n - postgresql-contrib\n - python3-psycopg2\n state: present\n update_cache: yes\n\n- name: Démarrage et activation de PostgreSQL\n service...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1251, "all_permissive": false }
ansible_role
Exeldoe123/cloudninja-devops-project
ce1a88a05a5c4fa3fe18687c684f9be4af24b1aa
0
vagrant/ansible/roles/security
7,603
[ "no_license" ]
[ { "path": "vagrant/ansible/roles/security/tasks/main.yml", "content": "---\n- name: Configuration du firewall UFW\n ufw:\n state: enabled\n policy: deny\n direction: incoming\n\n- name: Autorisation SSH\n ufw:\n rule: allow\n port: \"22\"\n proto: tcp\n\n- name: Configuration des mises à...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1034, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
ansible/roles/common
7,603
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1680, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
ansible/roles/consul-template
7,603
[ "no_license" ]
[ { "path": "ansible/roles/consul-template/tasks/main.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1010, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
ansible/roles/docker
7,603
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/debian.yml", "content": "---\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2092, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
ansible/roles/fakeswitch
7,603
[ "no_license" ]
[ { "path": "ansible/roles/fakeswitch/files/savepersist", "content": "#!/bin/bash\necho \"savepersist\"\nexit 0\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "ansible/roles/fakeswitch/files/persist", "content": "#!/bin/bash\necho \"persist\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1411, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
ansible/roles/java8-oracle
7,603
[ "no_license" ]
[ { "path": "ansible/roles/java8-oracle/tasks/main.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1226, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
ansible/roles/registry
7,603
[ "no_license" ]
[ { "path": "ansible/roles/registry/tasks/main.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# ht...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1470, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/ansible
7,603
[ "no_license" ]
[ { "path": "roles/ansible/tasks/main.yml", "content": "---\n\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http:/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1304, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/compute-node
7,603
[ "no_license" ]
[ { "path": "roles/compute-node/tasks/networking.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# ...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 15, "total_bytes": 31688, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/docker
7,603
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://ww...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1517, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/fabric-switch
7,603
[ "no_license" ]
[ { "path": "roles/fabric-switch/templates/connect", "content": "#!/bin/bash\n\nBG=0\n\nwhile [ $# -gt 0 ]; do\n case $1 in\n -bg|-background)\n BG=1\n esac\n shift\ndone\n\nIP=$(ping -c 1 {{ controller_ip }} 2>/dev/null | grep PING | awk '{print $3}' | sed -e 's/[\\(\\)]//g')\nwhile [ \"$IP x\" ==...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 9334, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/head-node
7,603
[ "no_license" ]
[ { "path": "roles/head-node/files/commands/cord-registry", "content": "#!/bin/bash\n#D Displays information about Docker images in the CORD POD registry\n\nPROG=$(echo $(basename $0) | sed -e 's/^cord-/cord /g')\n\nusage() {\n echo \"usage: $PROG [-r|--registry <registry] <sub-command> [options]\"\n ec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 27093, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/java8-oracle
7,603
[ "no_license" ]
[ { "path": "roles/java8-oracle/tasks/main.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http:/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1280, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/local-ubuntu-repository
7,603
[ "no_license" ]
[ { "path": "roles/local-ubuntu-repository/templates/sources.list.j2", "content": "\n{#\nCopyright 2017-present Open Networking Foundation\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the Licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2624, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/maas
7,603
[ "no_license" ]
[ { "path": "roles/maas/templates/automation-compose.yml.j2", "content": "\n{#\nCopyright 2017-present Open Networking Foundation\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nh...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 39109, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/maas-user-privkey
7,603
[ "no_license" ]
[ { "path": "roles/maas-user-privkey/tasks/main.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1010, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/maas-user-pubkey
7,603
[ "no_license" ]
[ { "path": "roles/maas-user-pubkey/tasks/main.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# ht...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 915, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/onos-fabric
7,603
[ "no_license" ]
[ { "path": "roles/onos-fabric/defaults/main.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 13596, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/registry
7,603
[ "no_license" ]
[ { "path": "roles/registry/tasks/main.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3827, "all_permissive": false }
ansible_role
opencord/maas
6f6491879619cc5d55ac0ee0dc8ee911d3b62832
13
roles/ssh-key
7,603
[ "no_license" ]
[ { "path": "roles/ssh-key/tasks/main.yml", "content": "\n# Copyright 2017-present Open Networking Foundation\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1991, "all_permissive": false }
ansible_role
0x4272616E646F6E/zero-touch-proxmox
97f78de3eab77d5a450f67a24666ee8b8c87bbc0
0
ansible/playbooks/roles/base
7,603
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/base/tasks/main.yml", "content": "---\n- name: Set Timezone\n community.general.timezone:\n name: \"{{ _timezone }}\"\n when: _base_configure_timezone\n changed_when: false\n\n- name: Set Locale\n community.general.locale_gen:\n name: \"{{ _locale }}\"\n when: _...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3199, "all_permissive": false }
ansible_role
0x4272616E646F6E/zero-touch-proxmox
97f78de3eab77d5a450f67a24666ee8b8c87bbc0
0
ansible/playbooks/roles/terraform
7,603
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/terraform/tasks/main.yml", "content": "---\n- name: Create User\n ansible.builtin.command:\n cmd: pveum user add {{ _terraform_username }}@pve --password {{ _terraform_password }}\n changed_when: false\n when: configure_terraform\n\n- name: Create Role\n ansible.bui...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1803, "all_permissive": false }
ansible_role
chillinger/setup_dev_machine
9aa32c05eb97e87d1e08fc4bfa41be8c4c63e08f
0
roles/install_font
7,603
[ "no_license" ]
[ { "path": "roles/install_font/tasks/main.yml", "content": "---\n\n- name: install fontawesome\n copy:\n src: 'font_awesome_regular400_.otf'\n dest: '/usr/share/fonts/font_awesome_regular400_.otf'\n notify: 'rebuild fonts cache'", "license_type": "no_license", "detected_licenses": [], "si...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 170, "all_permissive": false }
ansible_role
chillinger/setup_dev_machine
9aa32c05eb97e87d1e08fc4bfa41be8c4c63e08f
0
roles/install_software
7,603
[ "no_license" ]
[ { "path": "roles/install_software/tasks/main.yml", "content": "---\n\n- name: set up repositories\n yum_repository: \"{{ item }}\"\n with_items:\n - name: vivaldi\n description: vivaldi Browser repository\n baseurl: http://repo.vivaldi.com/stable/rpm/x86_64\n gpgkey: http://repo.vivaldi.com/stab...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1224, "all_permissive": false }
ansible_role
LuminousXLB/ansible-qemu
a81f5b6cec5afd0a868e010317f5b7f085cfc77a
0
roles/cloud-utils
7,603
[ "no_license" ]
[ { "path": "roles/cloud-utils/tasks/libcap2.yml", "content": "---\n- name: \"libcap2: Prepare source code\"\n include_role:\n name: common\n tasks_from: download.yml\n vars:\n task: libcap2\n tar_url: \"{{ urls.libcap2 }}\"\n tar_dst: \"{{ (tmp_dir, urls.libcap2 | basename) | path_join }}\"\...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1802, "all_permissive": false }
ansible_role
LuminousXLB/ansible-qemu
a81f5b6cec5afd0a868e010317f5b7f085cfc77a
0
roles/common
7,603
[ "no_license" ]
[ { "path": "roles/common/tasks/download.yml", "content": "---\n- block:\n - name: \"{{ task }}: Check source code archive\"\n stat:\n path: \"{{ tar_dst }}\"\n register: tar_st\n failed_when: not tar_st.stat.exists\n\n rescue:\n - name: \"{{ task }}: Download source code archive\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 958, "all_permissive": false }
ansible_role
LuminousXLB/ansible-qemu
a81f5b6cec5afd0a868e010317f5b7f085cfc77a
0
roles/qemu
7,603
[ "no_license" ]
[ { "path": "roles/qemu/tasks/glib.yml", "content": "---\n- name: \"GLib: Prepare source code\"\n include_role:\n name: common\n tasks_from: download.yml\n vars:\n task: GLib\n tar_url: \"{{ urls.glib }}\"\n tar_dst: \"{{ (tmp_dir, urls.glib | basename) | path_join }}\"\n tar_dir: \"{{ (tm...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1847, "all_permissive": false }
ansible_role
mortik/sentry-provisioning
2c0cc57cabe7996377a93096c71e4b86e98b81b7
1
provisioning/roles/app
7,603
[ "no_license" ]
[ { "path": "provisioning/roles/app/handlers/main.yml", "content": "---\n- name: restart supervisor\n shell: \"supervisorctl restart {{ app }}-app-1\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 80 }, { "path": "provisioning/roles/app/templates/sentry.js", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 7664, "all_permissive": false }
ansible_role
mortik/sentry-provisioning
2c0cc57cabe7996377a93096c71e4b86e98b81b7
1
provisioning/roles/common
7,603
[ "no_license" ]
[ { "path": "provisioning/roles/common/tasks/main.yml", "content": "---\n- name: install basic packages\n apt:\n pkg: \"{{ item }}\"\n state: installed\n update-cache: yes\n with_items:\n - python-software-properties\n - python\n - g++\n - make\n - vim\n - htop\n - git-core\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 386, "all_permissive": false }
ansible_role
mortik/sentry-provisioning
2c0cc57cabe7996377a93096c71e4b86e98b81b7
1
provisioning/roles/database
7,603
[ "no_license" ]
[ { "path": "provisioning/roles/database/meta/main.yml", "content": "---\ndependencies:\n- common\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 27 }, { "path": "provisioning/roles/database/tasks/main.yml", "content": "---\n- name: install postgres packages\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 585, "all_permissive": false }
ansible_role
mortik/sentry-provisioning
2c0cc57cabe7996377a93096c71e4b86e98b81b7
1
provisioning/roles/user
7,603
[ "no_license" ]
[ { "path": "provisioning/roles/user/tasks/main.yml", "content": "- name: add application user\n user:\n name: \"{{ user }}\"\n state: \"present\"\n home: \"/home/{{ user }}\"\n shell: \"/bin/bash\"\n\n- name: chown application user directory\n file:\n path: \"/home/{{ user }}\"\n owner: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 629, "all_permissive": false }
ansible_role
mortik/sentry-provisioning
2c0cc57cabe7996377a93096c71e4b86e98b81b7
1
provisioning/roles/webserver
7,603
[ "no_license" ]
[ { "path": "provisioning/roles/webserver/templates/https_vhost.js", "content": "server {\n listen 80;\n server_name www.{{ domain }};\n rewrite ^/(.*) http://{{ domain }}/$1 permanent;\n}\n\nserver {\n listen 443;\n server_name www.{{ domain }};\n rewrite ^/(.*) https://{{ domain }}/$1 permanent;\n\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3306, "all_permissive": false }
ansible_role
BMancel/DevOps
540d3cd15523c94af7fff5bc01595bcd3f733207
0
Ansible/roles/app
7,604
[ "no_license" ]
[ { "path": "Ansible/roles/app/tasks/main.yml", "content": "---\n# tasks file for roles/app\n\n- name: Pull the backend image\n docker_image:\n name: unptitcurieux/my-backend\n tag: latest\n source: pull\n vars:\n ansible_python_interpreter: /usr/bin/python3\n\n- name: Run the backend\n docker_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 410, "all_permissive": false }
ansible_role
BMancel/DevOps
540d3cd15523c94af7fff5bc01595bcd3f733207
0
Ansible/roles/database
7,604
[ "no_license" ]
[ { "path": "Ansible/roles/database/tasks/main.yml", "content": "---\n# tasks file for roles/database\n\n- name: Pull the database image\n docker_image:\n name: unptitcurieux/my-database\n tag: latest\n source: pull\n vars:\n ansible_python_interpreter: /usr/bin/python3\n \n- name: Run the datab...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 421, "all_permissive": false }
ansible_role
BMancel/DevOps
540d3cd15523c94af7fff5bc01595bcd3f733207
0
Ansible/roles/frontend
7,604
[ "no_license" ]
[ { "path": "Ansible/roles/frontend/tasks/main.yml", "content": "---\n# tasks file for roles/frontend\n\n- name: Pull the frontend image\n docker_image:\n name: unptitcurieux/my-frontend\n tag: latest\n source: pull\n vars:\n ansible_python_interpreter: /usr/bin/python3\n\n- name: Run the fronte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 459, "all_permissive": false }
ansible_role
BMancel/DevOps
540d3cd15523c94af7fff5bc01595bcd3f733207
0
Ansible/roles/proxy
7,604
[ "no_license" ]
[ { "path": "Ansible/roles/proxy/tasks/main.yml", "content": "---\n# tasks file for roles/proxy\n\n- name: Pull the proxy image\n docker_image:\n name: unptitcurieux/my-httpd\n tag: latest\n source: pull\n vars:\n ansible_python_interpreter: /usr/bin/python3\n\n- name: Run the proxy container\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 440, "all_permissive": false }
ansible_role
deploji/ansible-playbooks
9ee2858e02ba33e7438b4921a758843f99a4596e
2
playbooks/roles/deploy-stack
7,604
[ "no_license" ]
[ { "path": "playbooks/roles/deploy-stack/tasks/main.yml", "content": "- name: create temporary dir\n tempfile:\n state: directory\n suffix: deploji_\n register: tempdir\n\n- name: Template stack files\n template:\n src: \"{{item}}\"\n dest: \"{{tempdir.path}}/\"\n with_fileglob: \"stacks/{{ap...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 421, "all_permissive": false }
ansible_role
Prathesh98/CI-CD
62195a6cf72b3c1c41269f5e6285a2b195212139
0
ansible/roles/downloadwar
7,604
[ "no_license" ]
[ { "path": "ansible/roles/downloadwar/tasks/main.yml", "content": "---\n- name: Fetch maven-metadata.xml content from Nexus\n uri:\n url: \"{{ metadata_url }}\"\n method: GET\n user: \"{{ nexus_username }}\"\n password: \"{{ <PASSWORD> }}\"\n force_basic_auth: yes\n return_content: yes\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1194, "all_permissive": false }
ansible_role
Prathesh98/CI-CD
62195a6cf72b3c1c41269f5e6285a2b195212139
0
ansible/roles/takeBackup
7,604
[ "no_license" ]
[ { "path": "ansible/roles/takeBackup/tasks/main.yml", "content": "---\n- name: Find the WAR file in the webapps directory\n ansible.builtin.find:\n paths: /home/tomcat1/apache-tomcat-10.1.31/webapps\n patterns:\n - 'SimpleWebApplication-*.war'\n - 'SimpleWebApplication-*'\n recurse: yes\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1163, "all_permissive": false }
ansible_role
i-am-a-small-man/environment
accc1088b6b7f4b6f40a20feb78e637f10be3fb8
0
ansible/roles/common
7,604
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n# This playbook contains common plays that will be run on all nodes.\n\n- name: Install ntp \n sudo: yes\n yum: name=ntp state=present\n\n- name: Configure ntp file\n sudo: yes\n template: src=ntp.conf.j2 dest=/etc/ntp.conf\n\n- name: Sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 419, "all_permissive": false }
ansible_role
i-am-a-small-man/environment
accc1088b6b7f4b6f40a20feb78e637f10be3fb8
0
ansible/roles/db
7,604
[ "no_license" ]
[ { "path": "ansible/roles/db/tasks/main.yml", "content": "---\n# Retrieve the current hostname, because {{ ansible_hostname }} still contains the old name\n- shell: hostname\n register: current_hostname\n\n- name: Install Mysql package\n yum: name={{ item }} state=installed\n sudo: yes\n with_items:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1110, "all_permissive": false }
ansible_role
i-am-a-small-man/environment
accc1088b6b7f4b6f40a20feb78e637f10be3fb8
0
ansible/roles/web
7,604
[ "no_license" ]
[ { "path": "ansible/roles/web/tasks/install_httpd.yml", "content": "---\n- name: Install http\n yum: name={{ item }} state=present\n sudo: yes\n with_items:\n - httpd\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "path": "ansible/roles/web/tasks/i...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 2105, "all_permissive": false }
ansible_role
henriques200/Ansible-RouterOS-Conf
8fe091a87bf4cadd0f0bf1086ec88dafdd7e0378
0
roles/mikrotik_conf
7,604
[ "no_license" ]
[ { "path": "roles/mikrotik_conf/tasks/update_os.yml", "content": "--- \n- name: Get RouterOS version\n routeros_command:\n commands: /system package update print\n register: output_routeros_version\n- name: Show RouterOS version\n debug:\n msg: \"{{ output_routeros_version }}\"\n- name: Checking for O...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 1674, "all_permissive": false }
ansible_role
AdrianoMorsa/sanux-ansible
f55ba5fbe67a7c5b83e701932a65a178922e2d7f
0
project-k8s-install/deploy-app-v1/roles/deploy-app
7,604
[ "no_license" ]
[ { "path": "project-k8s-install/deploy-app-v1/roles/deploy-app/files/service-app.yml", "content": "apiVersion: v1\nkind: Service\nmetadata:\n labels:\n app: sanux\n run: nginx\n track: stable\n name: sanux\n namespace: default\nspec:\n externalTrafficPolicy: Cluster\n ports:\n - nodePort: 3222...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1914, "all_permissive": false }
ansible_role
AdrianoMorsa/sanux-ansible
f55ba5fbe67a7c5b83e701932a65a178922e2d7f
0
project-k8s-install/install_k8s/roles/install-k8s
7,604
[ "no_license" ]
[ { "path": "project-k8s-install/install_k8s/roles/install-k8s/tasks/install.yml", "content": "- name: Installing Docker\n shell: curl -fsSL https://get.docker.com | bash\n\n- name: Copying daemon.json\n template:\n src: daemon.json\n dest: /etc/docker/daemon.json\n owner: root\n group: root\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1010, "all_permissive": false }
ansible_role
AdrianoMorsa/sanux-ansible
f55ba5fbe67a7c5b83e701932a65a178922e2d7f
0
project-k8s-install/install_k8s/roles/install-monit-tools
7,604
[ "no_license" ]
[ { "path": "project-k8s-install/install_k8s/roles/install-monit-tools/vars/main.yml", "content": "---\n# vars file for install-monit-tools\nget_repo_helm: https://prometheus-community.github.io/helm-charts\ndeploy_prometheus: prometheus-community/kube-prometheus-stack", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 558, "all_permissive": false }
ansible_role
AdrianoMorsa/sanux-ansible
f55ba5fbe67a7c5b83e701932a65a178922e2d7f
0
project-k8s-install/install_k8s/roles/join-workers
7,604
[ "no_license" ]
[ { "path": "project-k8s-install/install_k8s/roles/join-workers/tasks/join-cluster.yml", "content": "- name:\n debug:\n msg: \"[WORKER] K8S_TOKEN_HOLDER - O token eh {{ hostvars['K8S_TOKEN_HOLDER']['token'] }}\"\n\n- name:\n debug:\n msg: \"[WORKER] K8S_TOKEN_HOLDER - O hash eh {{ hostvars['K8S_TOKEN_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 573, "all_permissive": false }
ansible_role
AdrianoMorsa/sanux-ansible
f55ba5fbe67a7c5b83e701932a65a178922e2d7f
0
project-k8s-install/provisioning/roles/create-instances
7,604
[ "no_license" ]
[ { "path": "project-k8s-install/provisioning/roles/create-instances/vars/main.yml", "content": "---\n# vars file for create-instances\ninstance_type: t2.medium\nsec_group_name: K8S\nimage: ami-05f7491af5eef733a\nkeypair: ansible\nregion: eu-central-1\ncount: 3\nprofile: ansible ", "license_type": "no_lic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3283, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/00-download-raspbian
7,604
[ "no_license" ]
[ { "path": "roles/00-download-raspbian/tasks/main.yml", "content": "---\n- name: Download Last Raspbian Stretch\n get_url:\n dest: ./raspbian-stretch-lite.img.zip\n url: https://downloads.raspberrypi.org/raspbian_lite_latest\n\n- name: Unzipping Image\n unarchive:\n dest: ./\n src: raspbian-str...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 488, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/00a-increase-partition-size
7,604
[ "no_license" ]
[ { "path": "roles/00a-increase-partition-size/tasks/main.yml", "content": "---\n- name: Increasing file size\n raw: \"dd if=/dev/zero bs={{ 1024*1024 }} count={{ increase_partition_size }} >> {{ image }}\"\n\n- name: Detecting free space in image\n raw: \"parted {{ image }} unit s print free\"\n register:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1921, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/01-mounting
7,604
[ "no_license" ]
[ { "path": "roles/01-mounting/tasks/main.yml", "content": "---\n- name: See partitioning\n raw: LANG=POSIX fdisk -l {{ image }}\n register: output1 \n changed_when: false\n\n- name: Prepare Sector Size\n set_fact: \n sector_size: '{{ output1.stdout | regex_findall (\"Units: sectors of 1 \\* (?P<siz...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1454, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/02-chrooting
7,604
[ "no_license" ]
[ { "path": "roles/02-chrooting/tasks/main.yml", "content": "---\n- name: Mount dev for chroot\n become: true\n mount:\n path: ./part2/dev\n src: /dev\n state: mounted\n fstype: devtmpfs\n opts: noauto\n fstab: ./temp_fstab\n\n- name: Mount proc for chroot\n become: true\n mount:\n pa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 512, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/03-initial-prepare
7,604
[ "no_license" ]
[ { "path": "roles/03-initial-prepare/tasks/main.yml", "content": "---\n- name: Copying qemu static\n become: true\n copy:\n src: /usr/bin/qemu-arm-static\n dest: ./part2/usr/bin/qemu-arm-static\n mode: 0755\n owner: root\n group: root\n\n- name: See UUID of partition\n raw: 'blkid {{ image ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1083, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/04-basic-configs
7,604
[ "no_license" ]
[ { "path": "roles/04-basic-configs/tasks/main.yml", "content": "---\n- name: Copying wpa_supplicant\n become: true\n copy:\n src: wpa_supplicant.conf\n dest: ./part2/etc/wpa_supplicant\n remote_src: yes\n mode: 0600\n\n- name: Allowing ssh\n become: true\n copy:\n content: \"\"\n dest: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 315, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/05-network-config
7,604
[ "no_license" ]
[ { "path": "roles/05-network-config/tasks/main.yml", "content": "---\n- name: Copying interfaces file\n copy:\n src: interfaces\n dest: /etc/network/interfaces\n mode: 0644\n delegate_to: ./part2\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 137 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 137, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/10-develop
7,604
[ "no_license" ]
[ { "path": "roles/10-develop/tasks/main.yml", "content": "---\n- name: Installing git\n apt:\n name: \n - git\n delegate_to: ./part2\n\n- name: Adding GO environment to .bashrc\n lineinfile:\n path: /home/pi/.bashrc\n state: present\n line: \"{{ item }}\"\n create: yes\n with_items:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 688, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/11-usb-gps
7,604
[ "no_license" ]
[ { "path": "roles/11-usb-gps/tasks/main.yml", "content": "---\n- name: installing packages\n apt: \n name: \n - gpsd \n - gpsd-clients\n - python-gps \n delegate_to: ./part2\n\n- name: Copying gpsd for USB stick\n copy:\n src: gpsd\n dest: /etc/default\n mode: 0644\n delegate_t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 507, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/12-dragino
7,604
[ "no_license" ]
[ { "path": "roles/12-dragino/tasks/main.yml", "content": "---\n- name: Install wiringpi\n apt:\n name:\n - wiringpi\n - gpsd\n - gpsd-clients\n - python-gps \n delegate_to: ./part2\n\n- name: configuring /boot/config.txt\n lineinfile:\n path: ./part1/config.txt\n line: \"{{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 705, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/13-i2c-display
7,604
[ "no_license" ]
[ { "path": "roles/13-i2c-display/tasks/main.yml", "content": "---\n- name: Install packages\n apt:\n name:\n - i2c-tools\n - python-smbus\n delegate_to: ./part2\n\n- name: Adding i2c modules to modules\n lineinfile:\n path: /etc/modules\n state: present\n regexp: '^{{ item }}'\n l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2067, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/15-camera
7,604
[ "no_license" ]
[ { "path": "roles/15-camera/tasks/main.yml", "content": "- name: Enabling camera at boot \n lineinfile:\n path: ./part1/config.txt\n regexp: '^{{ item.split(\"=\")[0] }}'\n line: \"{{ item }}\"\n with_items:\n - \"start_x=1\"\n - \"gpu_mem=128\"\n - \"disable_camera_led=1\"\n\n- name: Add...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1270, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/21-wifi-ap
7,604
[ "no_license" ]
[ { "path": "roles/21-wifi-ap/tasks/main.yml", "content": "---\n- name: installing packages\n apt: \n name: \n - dnsmasq \n - hostapd\n delegate_to: ./part2\n\n- name: Configuring static server IP\n lineinfile:\n path: /etc/dhcpcd.conf\n state: present\n line: \"{{ item }}\"\n with_i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 953, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/22-wifi-bridging
7,604
[ "no_license" ]
[ { "path": "roles/22-wifi-bridging/tasks/main.yml", "content": "---\n- name: installing packages\n apt: \n name: \n - bridge-utils\n delegate_to: ./part2\n\n\n- name: Denying dhcp for bridge interfaces\n lineinfile:\n path: /etc/dhcpcd.conf\n state: present\n regexp: '^denyinterfaces {{ i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1024, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/22-wifi-routing
7,604
[ "no_license" ]
[ { "path": "roles/22-wifi-routing/tasks/main.yml", "content": "---\n- name: Configuring routing for server\n lineinfile:\n path: /etc/sysctl.conf\n state: present\n line: \"net.ipv4.ip_forward=1\"\n regexp: 'net\\.ipv4\\.ip_forward=1'\n delegate_to: ./part2\n\n- name: Copying nat iptables save ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 615, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/23-bluetooth-a2dp
7,604
[ "no_license" ]
[ { "path": "roles/23-bluetooth-a2dp/tasks/main.yml", "content": "---\n- name: installing packages\n apt: \n name: \n - pulseaudio\n - pulseaudio-module-bluetooth\n - pi-bluetooth\n delegate_to: ./part2\n\n# Check that hci0 is ok. (For integrated hciuart.service )\n# Check that bluetoothd ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2439, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/97-final-init
7,604
[ "no_license" ]
[ { "path": "roles/97-final-init/tasks/main.yml", "content": "---\n- name: Making directory for self_check\n file:\n state: directory\n recurse: yes\n path: \"{{ self_check_path }}\"\n owner: pi\n group: pi\n delegate_to: ./part2\n\n- name: Rendering self_check.sh\n template:\n src: self_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1079, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/98-unchrooting
7,604
[ "no_license" ]
[ { "path": "roles/98-unchrooting/tasks/main.yml", "content": "---\n#- name: Unmount dev for chroot\n# become: true\n# mount:\n# path: ./part2/dev\n# src: /dev\n# state: absent\n# fstype: devtmpfs\n# fstab: ./temp_fstab\n# ignore_errors: yes\n\n- name: Unmount dev for chroot\n become: true\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 698, "all_permissive": false }
ansible_role
serg-2/prepare_raspberry_gps_image
3bb71e38007d5aa945c04942e1b8a4e2b1074bdf
0
roles/99-unmounting
7,604
[ "no_license" ]
[ { "path": "roles/99-unmounting/tasks/main.yml", "content": "---\n- name: unmount Partition 1\n become: true\n mount:\n path: ./part1\n src: \"{{image}}\"\n fstype: vfat\n state: absent\n fstab: ./temp_fstab\n\n- name: unmount Partition 2\n become: true\n mount:\n path: ./part2\n src...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 384, "all_permissive": false }
ansible_role
lsampaioweb/git-template-repository
5ddf20d2c487e7111c6d9d1e8c9b3e61febad231
0
.skeleton/ansible/roles/destroy
7,604
[ "no_license" ]
[ { "path": ".skeleton/ansible/roles/destroy/tasks/main.yml", "content": "---\n- name: \"Changing the hostname\"\n ansible.builtin.import_tasks: \"roles/common/tasks/debian/os/hostname.yml\"\n\n- name: \"Installing required packages\"\n ansible.builtin.import_tasks: \"installing-packages.yml\"\n", "lice...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 436, "all_permissive": false }
ansible_role
lsampaioweb/git-template-repository
5ddf20d2c487e7111c6d9d1e8c9b3e61febad231
0
.skeleton/ansible/roles/provision
7,604
[ "no_license" ]
[ { "path": ".skeleton/ansible/roles/provision/tasks/setup-app.yml", "content": "---\n- name: \"Ensure the '{{ docker_path }}' directory exists\"\n ansible.builtin.file:\n path: \"{{ docker_path }}\"\n state: \"directory\"\n mode: \"0644\"\n\n- name: \"Copying the application's file to the target\"\...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1855, "all_permissive": false }
ansible_role
AlmogLevig/Jenkin-on-K8s-Cluster-with-Terraform-and-Ansible
108ae81f56560633585c27ad6e00b7bee2fe9452
0
Ansible/roles/add-worker
7,606
[ "no_license" ]
[ { "path": "Ansible/roles/add-worker/tasks/main.yml", "content": "- name: Copy join command to worker nodes.\n become: true\n become_method: sudo\n become_user: root\n copy:\n src: /tmp/kubernetes_join_command\n dest: /tmp/kubernetes_join_command\n mode: 0777 \n\n- name: Join the Worker nodes w...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 703, "all_permissive": false }
ansible_role
AlmogLevig/Jenkin-on-K8s-Cluster-with-Terraform-and-Ansible
108ae81f56560633585c27ad6e00b7bee2fe9452
0
Ansible/roles/aliases
7,606
[ "no_license" ]
[ { "path": "Ansible/roles/aliases/tasks/main.yml", "content": "# #####################\n# transfering aliases\n# #####################\n- name: Copying the .bash_aliases directory\n ansible.builtin.copy:\n src: ../Aliases/.bash_aliases\n dest: /home/{{ ansible_user }}\n\n- name: source .bashrc \n be...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 363, "all_permissive": false }
ansible_role
AlmogLevig/Jenkin-on-K8s-Cluster-with-Terraform-and-Ansible
108ae81f56560633585c27ad6e00b7bee2fe9452
0
Ansible/roles/containerd
7,606
[ "no_license" ]
[ { "path": "Ansible/roles/containerd/tasks/main.yml", "content": "- name: Installing Prerequisites for Kubernetes\n apt: \n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg-agent\n - vim\n - software-properties-common\n state: present\n \n- name: Cr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1319, "all_permissive": false }
ansible_role
AlmogLevig/Jenkin-on-K8s-Cluster-with-Terraform-and-Ansible
108ae81f56560633585c27ad6e00b7bee2fe9452
0
Ansible/roles/docker
7,606
[ "no_license" ]
[ { "path": "Ansible/roles/docker/tasks/main.yml", "content": "- name: Add Dockers official GPG key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n- name: Add Docker Repository\n apt_repository:\n repo: deb [arch=amd64] https://download.docker.com/linux/ubuntu xe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 499, "all_permissive": false }
ansible_role
AlmogLevig/Jenkin-on-K8s-Cluster-with-Terraform-and-Ansible
108ae81f56560633585c27ad6e00b7bee2fe9452
0
Ansible/roles/ingress
7,606
[ "no_license" ]
[ { "path": "Ansible/roles/ingress/tasks/main.yml", "content": "- name: Copying the yml directory\n ansible.builtin.copy:\n src: ../K8s/Ingress\n dest: /home/{{ ansible_user }}\n\n- name: applying ingress-controller\n become_user: \"{{ ansible_user }}\"\n become_method: sudo\n become: true\n comman...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 668, "all_permissive": false }
ansible_role
AlmogLevig/Jenkin-on-K8s-Cluster-with-Terraform-and-Ansible
108ae81f56560633585c27ad6e00b7bee2fe9452
0
Ansible/roles/init-master
7,606
[ "no_license" ]
[ { "path": "Ansible/roles/init-master/tasks/main.yml", "content": "\n- name: Intilizing Kubernetes Cluster\n command: kubeadm init --pod-network-cidr=10.244.0.0/16\n run_once: true\n- pause: seconds=20\n\n- name: Create directory .kube config\n become_user: \"{{ ansible_user }}\"\n become_method: sudo\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1384, "all_permissive": false }
ansible_role
AlmogLevig/Jenkin-on-K8s-Cluster-with-Terraform-and-Ansible
108ae81f56560633585c27ad6e00b7bee2fe9452
0
Ansible/roles/jenkins-pswd
7,606
[ "no_license" ]
[ { "path": "Ansible/roles/jenkins-pswd/tasks/main.yml", "content": "- name: \"creating Jenkins Password file\"\n remote_user: \"{{ ansible_user }}\"\n become: true\n become_method: sudo\n become_user: root\n command: \"{{ item }}\"\n with_items:\n - kubectl cp $(kgpo --output=name --namespace=devops...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 634, "all_permissive": false }
ansible_role
AlmogLevig/Jenkin-on-K8s-Cluster-with-Terraform-and-Ansible
108ae81f56560633585c27ad6e00b7bee2fe9452
0
Ansible/roles/jenkins-server
7,606
[ "no_license" ]
[ { "path": "Ansible/roles/jenkins-server/tasks/main.yml", "content": "# # #####################\n# # Deploy Jenkins Server\n# # ####################\n\n- name: Copying the yml directory\n ansible.builtin.copy:\n src: ../k8s/Jenkins-server\n dest: /home/{{ ansible_user }}\n\n- name: applying service-ac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 490, "all_permissive": false }
ansible_role
AlmogLevig/Jenkin-on-K8s-Cluster-with-Terraform-and-Ansible
108ae81f56560633585c27ad6e00b7bee2fe9452
0
Ansible/roles/swap
7,606
[ "no_license" ]
[ { "path": "Ansible/roles/swap/tasks/main.yml", "content": " - name: Make the Swap inactive\n command: swapoff -a\n\n - name: Remove Swap entry from /etc/fstab.\n lineinfile:\n dest: /etc/fstab\n regexp: swap\n state: absent\n...", "license_type": "no_license", "detected...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 191, "all_permissive": false }
ansible_role
AlmogLevig/Jenkin-on-K8s-Cluster-with-Terraform-and-Ansible
108ae81f56560633585c27ad6e00b7bee2fe9452
0
Ansible/roles/update
7,606
[ "no_license" ]
[ { "path": "Ansible/roles/update/tasks/main.yml", "content": "- name: Update apt repo Ubuntu boxes\n apt:\n update_cache: yes\n force_apt_get: yes\n cache_valid_time: 3600\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
ckrez/csirtg-sensor-ansible-role
fc38fa4440442becfa732e470bf39fc4f13b1d2e
1
roles/csirtg-base
7,606
[ "no_license" ]
[ { "path": "roles/csirtg-base/tasks/packages.yml", "content": "\n- name: Install pip\n package:\n name: python-pip\n state: latest\n\n- name: Install csirtg python modules\n pip:\n name: \"{{ item }}\"\n state: latest\n with_items:\n - pip\n - csirtg-smrt\n - csirtgsdk\n", "licens...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 466, "all_permissive": false }
ansible_role
ckrez/csirtg-sensor-ansible-role
fc38fa4440442becfa732e470bf39fc4f13b1d2e
1
roles/csirtg-ssh-logger
7,606
[ "no_license" ]
[ { "path": "roles/csirtg-ssh-logger/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - csirtg-ssh-logger", "license_type": "no_license", "detected_licenses": [], "size_bytes": 75 }, { "path": "roles/csirtg-ssh-logger/tasks/main.yml", "content": ...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 2336, "all_permissive": false }
ansible_role
ckrez/csirtg-sensor-ansible-role
fc38fa4440442becfa732e470bf39fc4f13b1d2e
1
roles/csirtg-ufw
7,606
[ "no_license" ]
[ { "path": "roles/csirtg-ufw/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - csirtg-ufw", "license_type": "no_license", "detected_licenses": [], "size_bytes": 68 }, { "path": "roles/csirtg-ufw/templates/csirtg-cef.env.j2", "content": "CSIRTG_...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 1437, "all_permissive": false }
ansible_role
emannersvip/ansible
51371368c9a4314c1639acea8723dc0fe95e6b21
0
roles/casaos
7,606
[ "no_license" ]
[ { "path": "roles/casaos/handlers/main.yml", "content": "---\n# handlers file for casaos\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "roles/casaos/defaults/main.yml", "content": "---\n# defaults file for casaos\n", "license_type": "no_l...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 393, "all_permissive": false }
ansible_role
emannersvip/ansible
51371368c9a4314c1639acea8723dc0fe95e6b21
0
roles/dhcp_server
7,606
[ "no_license" ]
[ { "path": "roles/dhcp_server/templates/dhcpd.conf.j2", "content": "# dhcpd.conf\n#\n# Attention: If /etc/ltsp/dhcpd.conf exists, that will be used as\n# configuration file instead of this file.\n#\n\noption domain-name \"edsonmanners.com\";\noption domain-name-servers 192.168.68.5, 192.168.70.90;\n#option d...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 7986, "all_permissive": false }
ansible_role
emannersvip/ansible
51371368c9a4314c1639acea8723dc0fe95e6b21
0
roles/dns_server
7,606
[ "no_license" ]
[ { "path": "roles/dns_server/tasks/main.yml", "content": "---\n# tasks file for dns_server\n\n- include_tasks: debian.yml\n when: ansible_os_family == \"Debian\"\n tags:\n - unbound\n\n- include_tasks: redhat.yml\n when: ansible_os_family == \"RedHat\"\n tags:\n - unbound", "license_type": "no_...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 6052, "all_permissive": false }
ansible_role
emannersvip/ansible
51371368c9a4314c1639acea8723dc0fe95e6b21
0
roles/docker_server
7,606
[ "no_license" ]
[ { "path": "roles/docker_server/handlers/main.yml", "content": "---\n# handlers file for docker_server\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/docker_server/tasks/main.yml", "content": "---\n# tasks file for docker_server\n# http...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 955, "all_permissive": false }
ansible_role
emannersvip/ansible
51371368c9a4314c1639acea8723dc0fe95e6b21
0
roles/frigate
7,606
[ "no_license" ]
[ { "path": "roles/frigate/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - frigate\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "roles/frigate/vars/main.yml", "content": "---\n# vars file for frigate...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2958, "all_permissive": false }
ansible_role
emannersvip/ansible
51371368c9a4314c1639acea8723dc0fe95e6b21
0
roles/mediamtx
7,606
[ "no_license" ]
[ { "path": "roles/mediamtx/templates/mediamtx.service.j2", "content": "[Unit]\nDescription=MediaMTX service\nAfter=network.target\nStartLimitIntervalSec=0\n[Service]\nType=simple\nRestart=always\nRestartSec=1\nUser=emanners\nExecStart={{ install_bin_path }}/mediamtx {{ install_cfg_path }}/mediamtx.yml\n\n[In...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2391, "all_permissive": false }
ansible_role
emannersvip/ansible
51371368c9a4314c1639acea8723dc0fe95e6b21
0
roles/node-exporter
7,606
[ "no_license" ]
[ { "path": "roles/node-exporter/tasks/main.yml", "content": "---\n# tasks file for node-exporter\n- name: 'Install archive packages'\n ansible.builtin.package:\n name: unzip\n state: present\n\n- name: 'Install archive packages'\n ansible.builtin.package:\n name: tar\n state: present\n\n- name:...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3036, "all_permissive": false }
ansible_role
emannersvip/ansible
51371368c9a4314c1639acea8723dc0fe95e6b21
0
roles/prometheus
7,606
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yml", "content": "---\n# tasks file for prometheus\n- name: Create Prometheus config directory\n ansible.builtin.file:\n path: /etc/prometheus\n state: directory\n owner: emanners\n group: emanners\n mode: 0775\n recurse: no\n\n- name: Create Prometh...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2269, "all_permissive": false }
ansible_role
emannersvip/ansible
51371368c9a4314c1639acea8723dc0fe95e6b21
0
roles/report_alive
7,606
[ "no_license" ]
[ { "path": "roles/report_alive/templates/eom_report_alive.service.j2", "content": "[Unit]\nDescription=Report Alive Service\nAfter=network.target systemd-tmpfiles-setup-dev.service\n#Requires=postfix.service\n#Requires=exim4.service\n\n[Service]\nType=oneshot\nKillMode=process\nUser=emanners\nExecStart=/usr/...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 1592, "all_permissive": false }
ansible_role
emannersvip/ansible
51371368c9a4314c1639acea8723dc0fe95e6b21
0
roles/webhook_receiver
7,606
[ "no_license" ]
[ { "path": "roles/webhook_receiver/tasks/main.yml", "content": "---\n# tasks file for webhook_receiver\n\n- name: 'Python Webhook Receiver'\n ansible.builtin.template:\n src: 'python_flask_webhook_server.py.j2'\n dest: '/usr/local/bin/webhook.py'\n mode: '0755'\n\n- name: 'Install Pip3'\n ansible....
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 1137, "all_permissive": false }