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
Mohamed-Magdy-Dewidar/ansible-lamp-deploy
e3e751ba4bf7e8db02a01cdf3c6dfa6e10087a0e
0
roles/mysql
1,139
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yaml", "content": "\n# ---\n# - name: Install MySQL dependencies\n# apt:\n# name: \n# - mysql-server\n# - python3-pymysql\n# state: present\n# update_cache: yes\n\n# - name: Ensure MySQL service is running\n# service:\n# name: mysql\n# st...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3658, "all_permissive": false }
ansible_role
Mohamed-Magdy-Dewidar/ansible-lamp-deploy
e3e751ba4bf7e8db02a01cdf3c6dfa6e10087a0e
0
roles/php
1,139
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yaml", "content": "- name: Install PHP and Apache PHP module\n apt:\n name: \"{{ item }}\"\n state: present\n update_cache: yes\n loop:\n - php\n - libapache2-mod-php\n\n- name: Restart Apache to load PHP module\n service:\n name: apache2\n state: rest...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 250, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/apt
1,139
[ "no_license" ]
[ { "path": "roles/apt/tasks/main.yml", "content": "- name: Install dependent library\n when: INSTALL_DEPENDENT | bool\n become: true\n apt:\n name: \"{{ item }}\"\n cache_valid_time: 3600\n update_cache: true\n loop:\n # Python\n - python3-venv\n - python3-wheel\n - python3-setuptool...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1126, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/bash
1,139
[ "no_license" ]
[ { "path": "roles/bash/tasks/main.yml", "content": "- name: Blockinfile\n when: CONFIG_BASHRC_COLOR | bool\n blockinfile:\n path: \"{{ OE_HOME }}/.bashrc\"\n marker: \"# {mark} BASHRC_COLOR\"\n block: |\n parse_git_branch() {\n git branch 2> /dev/null | sed -e \"/^[^*]/d\" -e \"s/* \\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 409, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/demo
1,139
[ "no_license" ]
[ { "path": "roles/demo/tasks/main.yml", "content": "- name: Update && Upgrade\n changed_when: false\n become: true\n shell:\n cmd: echo \"good\" >> ./log/log.log\n args:\n executable: /bin/bash\n warn: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 159 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 386, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/fzf
1,139
[ "no_license" ]
[ { "path": "roles/fzf/tasks/main.yml", "content": "- name: Clone fzf\n when: INSTALL_FZF | bool\n git:\n repo: https://github.com/junegunn/fzf.git\n dest: \"{{ OE_HOME }}/.fzf\"\n depth: 1\n version: master\n \n- name: Install python pexpect\n when: INSTALL_FZF | bool\n become: true\n apt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 937, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/git_config
1,139
[ "no_license" ]
[ { "path": "roles/git_config/files/git_config.py", "content": "import os\nimport codecs\nimport six\nfrom colorama import Fore, Style\n\ndef echo(msg, msg_type=None):\n if not isinstance(msg, six.string_types):\n msg = str(msg)\n if msg_type == \"warning\":\n colored_msg = Fore.YELLOW + m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3201, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/lsd
1,139
[ "no_license" ]
[ { "path": "roles/lsd/tasks/main.yml", "content": "- name: (Check) if LSD is installed\n when: INSTALL_LSD | bool\n command: dpkg-query -W lsd\n register: check_lsd_deb\n failed_when: check_lsd_deb.rc > 1\n changed_when: check_lsd_deb.rc == 1\n\n- name: (Check) system amd or arm\n when: INSTALL_LSD | b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1462, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/nerd_fonts
1,139
[ "no_license" ]
[ { "path": "roles/nerd_fonts/tasks/main.yml", "content": "- name: Get Nerd Font latest tag\n when: INSTALL_NERD_FONTS | bool\n github_release:\n user: ryanoasis\n repo: nerd-fonts\n action: latest_release\n register: nerd_font_latest\n\n- name: Ensure SourceCodePro directory exists\n when: INSTA...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 788, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/nvm
1,139
[ "no_license" ]
[ { "path": "roles/nvm/meta/main.yml", "content": "galaxy_info:\n role_name: nvm\n author: Poliyka\n description: Ansible role for nvm\n license: MIT\n min_ansible_version: 2.13.3\n\n platforms:\n - name: Debian\n versions:\n - all\n - name: Ubuntu\n versions:\n - all\n\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 826, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/pyenv
1,139
[ "no_license" ]
[ { "path": "roles/pyenv/tasks/main.yml", "content": "- name: Download pyenv-installer\n when: INSTALL_PYENV | bool\n get_url:\n url: https://raw.github.com/yyuu/pyenv-installer/master/bin/pyenv-installer\n dest: \"/tmp/pyenv-installer.sh\"\n mode: 0755\n group: \"{{ OE_USER }}\"\n owner: \"{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3451, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/ranger
1,139
[ "no_license" ]
[ { "path": "roles/ranger/meta/main.yml", "content": "galaxy_info:\n role_name: ranger\n author: Poliyka\n description: Ansible role for ranger\n license: MIT\n min_ansible_version: 2.13.3\n\n platforms:\n - name: Debian\n versions:\n - all\n - name: Ubuntu\n versions:\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 587, "all_permissive": false }
ansible_role
poliyka/ansible-ubuntu-script
fc7ab58abae7a86984435e45f4d227c922b4d575
0
roles/yarn
1,139
[ "no_license" ]
[ { "path": "roles/yarn/meta/main.yml", "content": "galaxy_info:\n role_name: yarn\n author: Poliyka\n description: Ansible role for Yarn\n license: MIT\n min_ansible_version: 2.13.3\n\n platforms:\n - name: Debian\n versions:\n - all\n - name: Ubuntu\n versions:\n - all\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 997, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/add_vm_users
1,139
[ "no_license" ]
[ { "path": "roles/add_vm_users/vars/main.yml", "content": "---\n# vars file for update_vm_users\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "roles/add_vm_users/tasks/main.yml", "content": "---\n# tasks file for update_vm_users\n- name: Ensu...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1521, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/common
1,139
[ "no_license" ]
[ { "path": "roles/common/defaults/main.yml", "content": "---\ncaroot_certificate_chain_url: \"https://pki.HOST_NAME.ru/v1/CA/ca_chain\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 76 }, { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Apt ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1638, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/del_vm_users
1,139
[ "no_license" ]
[ { "path": "roles/del_vm_users/tasks/main.yml", "content": "---\n# tasks file for del_vm_users\n- name: Remove the user \n ansible.builtin.user:\n name: \"{{ item }}\"\n state: absent\n remove: yes\n with_items: \"{{ USER_DATA }}\"", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 296, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/dir_backup
1,139
[ "no_license" ]
[ { "path": "roles/dir_backup/vars/main.yml", "content": "---\n# vars file for dir_backup\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "roles/dir_backup/molecule/default/converge.yml", "content": "---\n- name: Converge\n hosts: all\n tasks:...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 4277, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/docker_install
1,139
[ "no_license" ]
[ { "path": "roles/docker_install/defaults/main.yml", "content": "---\n# defaults file for nexus\nuser: devops_user", "license_type": "no_license", "detected_licenses": [], "size_bytes": 47 }, { "path": "roles/docker_install/tasks/main.yml", "content": "---\n# tasks file for nexus\n- n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 987, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/filebeat_install
1,139
[ "no_license" ]
[ { "path": "roles/filebeat_install/defaults/main.yaml", "content": "filebeat_repository: \"https://repo.HOST_NAME.ru/repository\"\nfilebeat_version: \"8.12.2\"\nfilebeat_deb_name: \"filebeat\"\nlogstash_host: \"\" # IP and PORT of a logstash-server, example: 192.168.0.1:5044\nlogfiles_watched_list: # List o...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2324, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/java_install
1,139
[ "no_license" ]
[ { "path": "roles/java_install/tasks/main.yml", "content": "---\n - name: Update APT package manager repositories cache\n ansible.builtin.apt:\n update_cache: true\n cache_valid_time: 3600\n\n - debug:\n msg: \"Based on your request java version to be installed is: {{ JAVA_VERSION }}\"\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 345, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/logstash_install
1,139
[ "no_license" ]
[ { "path": "roles/logstash_install/tasks/main.yaml", "content": "---\n- name: \"Install logstash deb package\"\n ansible.builtin.apt:\n deb: \"{{ logstash_repository }}/logstash-{{ logstash_version }}-amd64.deb\"\n\n- name: \"Create logstash config directories\"\n ansible.builtin.file:\n path: \"/etc...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1932, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/lvm_setup
1,139
[ "no_license" ]
[ { "path": "roles/lvm_setup/tasks/main.yml", "content": "---\n\n- name: Setting host facts about disks on machine\n ansible.builtin.set_fact: \n tf_disks: \"{{ ansible_facts.device_links.ids }}\"\n\n- name: \"Read device names\"\n set_fact: \n device: \"{{ DEVICE_PREFIX | product(tf_disks.values () |...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2061, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/nginx_exporter_install
1,139
[ "no_license" ]
[ { "path": "roles/nginx_exporter_install/templates/nginx_exporter.d/systemd-unit.j2", "content": "[Unit]\nDescription=Nginx exporter\nAfter=network.target\n\n[Service]\nType=simple\nUser=nginx_exporter\nExecStart=/usr/bin/nginx_exporter \nExecReload=/bin/kill -HUP $MAINPID\nRestart=always\nTimeoutSec=3\nSysl...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2038, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/nginx_install
1,139
[ "no_license" ]
[ { "path": "roles/nginx_install/vars/main.yml", "content": "---\n# vars file for nginx\nNGINX_METRICS_URL: stub_status\nNGINX_METRICS_PORT: 8081", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 }, { "path": "roles/nginx_install/tasks/main.yml", "content": "---...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 9704, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/node_exporter_install
1,139
[ "no_license" ]
[ { "path": "roles/node_exporter_install/templates/server/node_exporter.service.j2", "content": "[Unit]\nDescription=Node Exporter\nRequires=node_exporter.socket\n\n[Service]\nUser=node_exporter\nEnvironmentFile=/etc/node_exporter.d/node_exporter.env\nExecStart=/usr/bin/node_exporter --web.systemd-socket $OPT...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2273, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/openvpn_exporter_install
1,139
[ "no_license" ]
[ { "path": "roles/openvpn_exporter_install/tasks/main.yml", "content": "- name: Ensure group openvpn_exporter exists\n ansible.builtin.group:\n name: openvpn_exporter\n state: present\n\n- name: Create openvpn_exporter user\n ansible.builtin.user:\n name: openvpn_exporter\n shell: /usr/sbin/nol...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 2948, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/postgres_backup
1,139
[ "no_license" ]
[ { "path": "roles/postgres_backup/tasks/main.yml", "content": "---\n- name: Check exist backup directory\n ansible.builtin.stat:\n path: \"{{ BACKUP_DIR }}\"\n register: register_backup_dir\n\n- name: Create a backup directory\n ansible.builtin.file:\n path: \"{{ BACKUP_DIR }}\"\n state: director...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3151, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/postgres_exporter_install
1,139
[ "no_license" ]
[ { "path": "roles/postgres_exporter_install/templates/consul.d/postgres_exporter-service.json.j2", "content": "{\n \"service\": {\n \"id\": \"postgres_exporter\",\n \"name\": \"postgres_exporter\",\n \"tags\": [\"postgres_exporter\"],\n \"port\": 9187,\n \"checks\": [\n {\n \"id\"...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 3218, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/postgres_init
1,139
[ "no_license" ]
[ { "path": "roles/postgres_init/defaults/main.yml", "content": "---\n# defaults file for postgres_init\n#project: tms #Укажите название проекта\n#env: dev #Укажите окружение\n#vault_token: # Токен для Vault\nvault_mountpoint: project_secrets\nvault_url: https://pki.HOST_NAME.ru/\nACTION: \"init_db\"\nuser_db...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2262, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/postgres_install
1,139
[ "no_license" ]
[ { "path": "roles/postgres_install/templates/postgresql.conf.j2", "content": "data_directory = '/var/lib/postgresql/{{ VERSION }}/main' # use data in another directory\nhba_file = '/etc/postgresql/{{ VERSION }}/main/pg_hba.conf' # host-based authentication file\nident_file = '/etc/postgresql/...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 5310, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/postgres_restore
1,139
[ "no_license" ]
[ { "path": "roles/postgres_restore/README.md", "content": "########## Роль ресторинга бэкапов PostgreSQL#\nВнимание! При использовании роли возможна потеря данных, позаботесь о бэкапе перед использованием.\n\nРоль удаляет и создает заново схему \"public\", а в месте с этим удаляет все таблицы из этой схемы\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3107, "all_permissive": false }
ansible_role
lacedaemonium/ansible-roles
578b557fc7ac79dd3ce375a9a0339de80ba6fabe
0
roles/routes_setup
1,139
[ "no_license" ]
[ { "path": "roles/routes_setup/tasks/main.yml", "content": "- name: Template a file to /etc/netplan/routes.yaml\n ansible.builtin.template:\n src: routes.j2\n dest: /etc/netplan/routes.yaml\n owner: root\n group: root\n mode: '0600'\n\n- name: Apply netplan\n ansible.builtin.shell: netplan a...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1453, "all_permissive": false }
ansible_role
imgntn/hifi-cloud
640da1d2ecfaab9be84a17807c6b5e0fbd020658
0
vagrant/hifi-ubuntu-dev/provisioning/roles/development
1,139
[ "no_license" ]
[ { "path": "vagrant/hifi-ubuntu-dev/provisioning/roles/development/tasks/main.yml", "content": "---\n- name: Add required repositories\n apt_repository:\n repo: \"{{ item }}\"\n state: present\n update_cache: yes\n with_items:\n - \"{{ development.repositories }}\"\n\n- name: Install apt packag...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1802, "all_permissive": false }
ansible_role
jspc/scorodesk
30af69ef2ec15dbc7ea102b0aaef9b06c7bee124
0
ansible/roles/beamly.scorodesk
1,139
[ "no_license" ]
[ { "path": "ansible/roles/beamly.scorodesk/tasks/main.yml", "content": "---\n# tasks file for scorodesk\n- name: Download scorodesk binary\n get_url:\n url: \"{{ scorodesk_url }}\"\n dest: \"{{ scorodesk_binpath }}\"\n mode: 0755\n\n- name: Detect systemd\n shell: '[[ $(systemctl) =~ -\\.mount ]] ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2695, "all_permissive": false }
ansible_role
dcloud/cosmic-cube
285dff2b9c4bd8c04a12fa951f0aac8aad752b96
5
provisioning/roles/common
1,139
[ "no_license" ]
[ { "path": "provisioning/roles/common/tasks/main.yaml", "content": "---\n- name: Install base dev packages\n apt: pkg={{item}} update_cache=yes cache_valid_time=3600\n with_items:\n - build-essential\n - python-dev\n - cmake\n - git\n - mercurial\n\n- name: Get pip installer\n get_url: dest...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 340, "all_permissive": false }
ansible_role
dcloud/cosmic-cube
285dff2b9c4bd8c04a12fa951f0aac8aad752b96
5
provisioning/roles/ipython-notebook
1,139
[ "no_license" ]
[ { "path": "provisioning/roles/ipython-notebook/tasks/main.yaml", "content": "---\n- name: Install base dev packages\n apt: pkg={{item}} update_cache=yes cache_valid_time=3600\n with_items:\n - libzmq3\n - libzmq3-dev\n\n- name: Install ipython with all the extras\n pip: name={{item}}\n with_items:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 385, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/certrenew
1,139
[ "no_license" ]
[ { "path": "roles/certrenew/tasks/main.yml", "content": "---\n- name: Set certificate auto-renew cron task\n cron:\n name: \"cert-renew\"\n minute: \"0\"\n hour: \"2\"\n job: \"/bin/certbot renew -n\"\n user: root\n...", "license_type": "no_license", "detected_licenses": [], "size...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 161, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/docker
1,139
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n\n- name: Uninstall Docker.\n apt:\n name: docker docker-engine docker.io containerd runc\n state: absent\n purge: yes\n\n- name: Instal necesary software.\n apt:\n name: apt-transport-https, ca-certificates, gnupg-agent, software-prope...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 969, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/fail2ban
1,139
[ "no_license" ]
[ { "path": "roles/fail2ban/tasks/main.yml", "content": "- name: Install fail2ban\n apt:\n name: fail2ban\n state: present\n\n- name: Copy fail2ban jail config\n copy:\n src: \"jail.local\"\n dest: /etc/fail2ban/jail.local\n notify: restart fail2ban\n", "license_type": "no_license", "de...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 418, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/initial
1,139
[ "no_license" ]
[ { "path": "roles/initial/tasks/users.yml", "content": "---\n- name: Add user lt\n user:\n name: lt\n uid: 10000\n groups: docker\n shell: /bin/bash\n append: yes\n#- name: Add user lt to microk8s group\n# user:\n# name: lt\n# groups: microk8s\n# append: yes\n- name: Add user ltback...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1521, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/java
1,139
[ "no_license" ]
[ { "path": "roles/java/tasks/main.yml", "content": "---\n- name: Install java packages\n apt:\n name: openjdk-17-jdk\n state: latest\n...\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 88 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 88, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/launch-backup
1,139
[ "no_license" ]
[ { "path": "roles/launch-backup/tasks/main.yml", "content": "---\n\n- name: Launch host backup\n shell: /bin/bash /home/ltbackup/bin/launch-host-backup.sh\n become: yes\n become_user: ltbackup\n async: 1000\n poll: 0\n\n...\n\n", "license_type": "no_license", "detected_licenses": [], "size_b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 160, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/microk8s
1,139
[ "no_license" ]
[ { "path": "roles/microk8s/tasks/main.yml", "content": "---\n- name: Ensure snapd is installed\n apt:\n name: snapd\n state: present\n update_cache: yes\n\n- name: Ensure microk8s is absent (if exists)\n shell: |\n snap list microk8s && snap remove microk8s || echo \"microk8s is not installed\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1158, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/nginx
1,139
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Install Nginx\n apt:\n name: nginx, certbot, python3-certbot-nginx\n state: latest\n\n- name: Copy custom error files\n copy:\n src: \"{{ role_path }}/files/custom_error/\"\n dest: /usr/share/nginx/error_pages\n remote_src: no...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 621, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/other-users
1,139
[ "no_license" ]
[ { "path": "roles/other-users/tasks/users.yml", "content": "---\n- name: Add user {{ user_name }}\n user: \n name: \"{{ user_name }}\"\n #groups: docker, microk8s\n shell: /bin/bash\n append: yes \n...\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 149 ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 363, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/restore
1,139
[ "no_license" ]
[ { "path": "roles/restore/tasks/main.yml", "content": "---\n- name: \"Retrieve last backup\"\n shell: s3cmd get --skip-existing s3://backup/\"{{ service }}\"/backup_\"{{ service }}\"-vol_\"{{ today }}\".tar.gz /home/qobackup/\"{{ service }}\".tar.gz\n become: yes\n become_user: ltbackup\n\n- name: \"Unzip...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 918, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/s3cmd
1,139
[ "no_license" ]
[ { "path": "roles/s3cmd/tasks/main.yml", "content": "- name: Install s3cmd\n pip:\n name: s3cmd\n state: present\n\n- name: Config s3cmd\n copy:\n src: \"{{ s3file }}\"\n dest: /home/ltbackup/.s3cfg\n", "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
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/update-cicd-services
1,139
[ "no_license" ]
[ { "path": "roles/update-cicd-services/tasks/main.yml", "content": "---\n- name: Launch update script\n shell: \"/bin/bash /opt/{{ ansible_hostname }}/update.sh\"\n async: 1000\n poll: 0\n...\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 120 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 120, "all_permissive": false }
ansible_role
Sk8luigiray/ansible
576968a9672edb113b52d826306272be720ce7d0
0
roles/upgrade
1,139
[ "no_license" ]
[ { "path": "roles/upgrade/tasks/main.yml", "content": "---\n- name: Update packages\n apt: update_cache=yes force_apt_get=yes cache_valid_time=3600\n\n- name: Upgrade packages\n apt: upgrade=dist force_apt_get=yes\n...\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 160...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 160, "all_permissive": false }
ansible_role
MikkoVasankari/dev-ansible
2a6fd986577a42422ae165f8d2ac6381b361fd9c
0
roles/docker
1,139
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Check if Docker is installed\n ansible.builtin.stat:\n path: /usr/bin/docker\n register: docker_stat\n\n- name: Download Docker installation script\n ansible.builtin.get_url:\n url: https://get.docker.com\n dest: /tmp/get-docker.sh\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 608, "all_permissive": false }
ansible_role
MikkoVasankari/dev-ansible
2a6fd986577a42422ae165f8d2ac6381b361fd9c
0
roles/go
1,139
[ "no_license" ]
[ { "path": "roles/go/tasks/main.yml", "content": "- name: Download Golang tarball\n ansible.builtin.get_url:\n url: https://go.dev/dl/go1.22.2.linux-amd64.tar.gz\n dest: /tmp/go.tar.gz\n\n- name: Extract Golang tarball\n become: yes\n become_method: sudo\n ansible.builtin.unarchive:\n src: /tmp/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 390, "all_permissive": false }
ansible_role
MikkoVasankari/dev-ansible
2a6fd986577a42422ae165f8d2ac6381b361fd9c
0
roles/rust
1,139
[ "no_license" ]
[ { "path": "roles/rust/tasks/main.yml", "content": "- name: Check if Rust is installed\n ansible.builtin.stat:\n path: /home/{{ ansible_env.USER }}/.cargo/bin/rustc\n register: rustc_stat\n become_user: \"{{ ansible_env.USER }}\"\n\n- name: Download Rustup installation script\n ansible.builtin.get_url...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 872, "all_permissive": false }
ansible_role
MikkoVasankari/dev-ansible
2a6fd986577a42422ae165f8d2ac6381b361fd9c
0
roles/zsh
1,139
[ "no_license" ]
[ { "path": "roles/zsh/files/.zshrc", "content": "echo '\n\n /\\_/\\\n( o.o ) Welcome '$USER'\n > ^ <\n\n'\n\nexport PATH=$HOME/bin:/usr/local/bin:$PATH\n\n# Path to your oh-my-zsh installation.\nexport ZSH=\"$HOME/.oh-my-zsh\"\n\nZSH_THEME=\"awesomepanda\"\n\n# Uncomment the following line if you want to ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2929, "all_permissive": false }
ansible_role
siiieyy/hoa9
4a3031f90c525c136561b6069de28d8c36029f4b
0
roles/common
1,239
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Update package cache\n package:\n name: '*'\n state: latest\n when: ansible_distribution == \"Ubuntu\"\n\n- name: Update package cache\n yum:\n name: '*'\n state: latest\n when: ansible_distribution == \"CentOS\"\n\n- name: In...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 337, "all_permissive": false }
ansible_role
siiieyy/hoa9
4a3031f90c525c136561b6069de28d8c36029f4b
0
roles/prometheus
1,239
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yml", "content": "---\n- name: Install Prometheus\n become: yes\n become_user: root\n block:\n - name: Import Grafana GPG Key\n apt_key:\n url: https://packages.grafana.com/gpg.key\n when: ansible_distribution == \"Ubuntu\"\n\n - name: Add Pro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1037, "all_permissive": false }
ansible_role
mikechau/haproxy-passenger-standalone-rolling-upgrades
2df1e2c796ff76d81a3abd61ad951a245170d477
2
ansible/roles/common
1,239
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: upgrade all packages\n yum: name=* state=latest\n\n- name: install the 'Development tools' package group\n yum: name=\"@Development tools\" state=present\n\n- name: install new packages\n yum: >\n name=\"{{ item }}\"\n state=...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 849, "all_permissive": false }
ansible_role
mikechau/haproxy-passenger-standalone-rolling-upgrades
2df1e2c796ff76d81a3abd61ad951a245170d477
2
ansible/roles/haproxy
1,239
[ "no_license" ]
[ { "path": "ansible/roles/haproxy/README.md", "content": "# Haproxy Ansible Role\n\n`Ansible` role for compiling `Haproxy` and installs `Haproxyctl`.\n\nCurrently for `CentOS` only.\n\n## Notes:\n\nRemember to enable UDP 514 on `syslog`.\n\nExample `rsyslog.conf`:\n\n```\n$ModLoad imudp\n$UDPServerRun 514\n`...
{ "task_files": 10, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 17, "total_bytes": 8355, "all_permissive": false }
ansible_role
mikechau/haproxy-passenger-standalone-rolling-upgrades
2df1e2c796ff76d81a3abd61ad951a245170d477
2
ansible/roles/iptables
1,239
[ "no_license" ]
[ { "path": "ansible/roles/iptables/tasks/main.yml", "content": "---\n- name: open ports\n command: \"iptables -I INPUT -p tcp -m tcp --dport {{ item }} -j ACCEPT\"\n with_items:\n - 80\n - 4000\n - 4001\n\n- name: save iptables\n command: service iptables save\n", "license_type": "no_license"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 198, "all_permissive": false }
ansible_role
mikechau/haproxy-passenger-standalone-rolling-upgrades
2df1e2c796ff76d81a3abd61ad951a245170d477
2
ansible/roles/jemalloc
1,239
[ "no_license" ]
[ { "path": "ansible/roles/jemalloc/tasks/_install_package.yml", "content": "---\n- name: install jemalloc\n yum: >\n name=\"{{ item }}\"\n state=present\n enablerepo=epel\n with_items:\n - jemalloc\n - jemalloc-devel\n", "license_type": "no_license", "detected_licenses": [], "siz...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1603, "all_permissive": false }
ansible_role
mikechau/haproxy-passenger-standalone-rolling-upgrades
2df1e2c796ff76d81a3abd61ad951a245170d477
2
ansible/roles/mysql
1,239
[ "no_license" ]
[ { "path": "ansible/roles/mysql/tasks/main.yml", "content": "---\n- name: install mysql\n yum: \"name={{ item }} state=present\"\n with_items:\n - mysql\n - mysql-server\n - mysql-devel\n - python-pip\n\n- name: install python libraries\n pip: >\n name=\"{{ item }}\"\n state=present\n w...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 950, "all_permissive": false }
ansible_role
MTN-RowinAndruscavage/bukkit_deploy
c1e1f35a7493e653ac15bb1df9d3441e54d35af7
0
roles/jre_docker
1,239
[ "no_license" ]
[ { "path": "roles/jre_docker/defaults/main.yml", "content": "---\n# defaults file for jre_docker\napp_jarfiles: []\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 52 }, { "path": "roles/jre_docker/templates/Dockerfile.j2", "content": "FROM {{ item.java_docker_...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 3750, "all_permissive": false }
ansible_role
miiraheart/apache-playbook
31fbf5a605196de095c3afad476b8b5fe4be23c2
0
roles/webserver
1,239
[ "no_license" ]
[ { "path": "roles/webserver/templates/index.html.j2", "content": "<html>\n<head>\n <title>Apache Web Server - RedHat</title>\n</head>\n<body>\n <h1>\n Thank you for using our services. Apache Web Server is now installed on this machine. \n \n </h1>\n \n <p>\n <img src=\"Re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 683, "all_permissive": false }
ansible_role
tr-bnr/ansible-demo
320e83d1b6e864123e0ad9a8ec5f660fa4d4d56e
0
roles/nginx
1,239
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "- name: \"Install nginx\"\n apt: \n name: \"nginx\"\n update_cache: yes\n- name: \"Adds default config\"\n template: \n src: default\n dest: /etc/nginx/sites-available/default\n owner: root\n group: root\n notify: \"restart nginx\"\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 626, "all_permissive": false }
ansible_role
amirehsansadeghi/Ansible-role-for-Atlassian-install
2e1d981f94e734dab730d2ec9d7d90239198d938
0
roles/add-user-group
1,239
[ "no_license" ]
[ { "path": "roles/add-user-group/tasks/main.yml", "content": "---\n- name: Add the group with a specific gid\n group:\n name: \"{{ item.name }}\"\n gid: \"{{ item.gid }}\"\n with_items: \"{{ groups }}\"\n\n- name: Add the user with a specific uid and a gid\n user:\n name: \"{{ item.name }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 557, "all_permissive": false }
ansible_role
amirehsansadeghi/Ansible-role-for-Atlassian-install
2e1d981f94e734dab730d2ec9d7d90239198d938
0
roles/delete
1,239
[ "no_license" ]
[ { "path": "roles/delete/tasks/main.yml", "content": "---\n\n- name: 'remove packages: {{ packages_to_remove }}'\n apt:\n name: '{{ item }}'\n state: absent\n with_items: '{{ packages_to_remove }}'\n\n- name: \"remove binaries: {{ packages_to_download }}\"\n file:\n path: /opt/{{ item.name }}*\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 302, "all_permissive": false }
ansible_role
amirehsansadeghi/Ansible-role-for-Atlassian-install
2e1d981f94e734dab730d2ec9d7d90239198d938
0
roles/prepare
1,239
[ "no_license" ]
[ { "path": "roles/prepare/tasks/main.yml", "content": "---\n\n- name: 'install base packages: {{ base_packages_to_install }}'\n yum:\n name: '{{ item }}'\n state: present\n with_items: '{{ base_packages_to_install }}'\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_by...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 167, "all_permissive": false }
ansible_role
kconde2/kabascript-docker-symfony
6c09e074e0087565eb0c9ef3597b372690aa804b
0
playbooks/roles/deploy
1,239
[ "no_license" ]
[ { "path": "playbooks/roles/deploy/tasks/build.yml", "content": "---\n- include_tasks: \"{{ include_path }}\"\n with_items: \"{{ deploy_build_before | default([]) }}\"\n loop_control:\n loop_var: include_path\n tags: deploy-build-before\n\n- name: Copy project templates\n delegate_to: \"{{ deploy_cont...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 13, "total_bytes": 17799, "all_permissive": false }
ansible_role
kconde2/kabascript-docker-symfony
6c09e074e0087565eb0c9ef3597b372690aa804b
0
playbooks/roles/rollback
1,239
[ "no_license" ]
[ { "path": "playbooks/roles/rollback/defaults/main.yml", "content": "project_root: \"/sapp\"\nproject_current_path: \"{{ my_sites[site].current_path | default('current') }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 101 }, { "path": "playbooks/roles/rollbac...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 5021, "all_permissive": false }
ansible_role
Eric9395/Cloud
bb072bd28895eae5231bebd12615977f634e1cd2
0
create_instance/create_instance1/roles/common
1,239
[ "no_license" ]
[ { "path": "create_instance/create_instance1/roles/common/tasks/main.yml", "content": "---\n\n# - name: Update\n# become: yes\n# command: apt update\n\n\n- name: Install pip3\n become: yes\n apt:\n name: ['python3-pip']\n state: latest\n update_cache: yes\n when: ansible_distribution == 'Ubun...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 312, "all_permissive": false }
ansible_role
Eric9395/Cloud
bb072bd28895eae5231bebd12615977f634e1cd2
0
create_instance/create_instance2/roles/common
1,239
[ "no_license" ]
[ { "path": "create_instance/create_instance2/roles/common/tasks/main.yml", "content": "---\n\n# - name: Update\n# become: yes\n# command: sudo apt update\n\n\n- name: Install pip3\n become: yes\n apt:\n name: ['python3-pip']\n state: latest\n update_cache: yes\n when: ansible_distribution == ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 317, "all_permissive": false }
ansible_role
Eric9395/Cloud
bb072bd28895eae5231bebd12615977f634e1cd2
0
create_instance/create_instance4/roles/instance
1,239
[ "no_license" ]
[ { "path": "create_instance/create_instance4/roles/instance/tasks/main.yml", "content": "---\n- name: create an instance\n os_server:\n name: '{{ instance_name }}'\n image: '{{ instance_image }}'\n key_name: '{{ instance_key_name }}'\n flavor: '{{ instance_flavor }}'\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 625, "all_permissive": false }
ansible_role
Eric9395/Cloud
bb072bd28895eae5231bebd12615977f634e1cd2
0
deployment/roles/common
1,239
[ "no_license" ]
[ { "path": "deployment/roles/common/tasks/main.yml", "content": "---\n# Team 20\n# Team member: <NAME>, 908282\n# <NAME>, 815901\n# <NAME>, 846305\n# <NAME>, 864735\n# <NAME>, 740145\n\n- name: Update apt package\n become: yes\n apt:\n name: [\"apt\"]\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1790, "all_permissive": false }
ansible_role
Eric9395/Cloud
bb072bd28895eae5231bebd12615977f634e1cd2
0
deployment/roles/deploy_crawler
1,239
[ "no_license" ]
[ { "path": "deployment/roles/deploy_crawler/templates/Dockerfile.j2", "content": "FROM python:3.6.8\n\nWORKDIR /twitter_crawler\n\nCOPY . /twitter_crawler\n\nRUN pip3 install --trusted-host pypi.python.org couchdb\n\nRUN pip3 install --trusted-host pypi.python.org tweepy\n\nRUN pip3 install --trusted-host py...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 14235, "all_permissive": false }
ansible_role
Eric9395/Cloud
bb072bd28895eae5231bebd12615977f634e1cd2
0
deployment/roles/deploy_web
1,239
[ "no_license" ]
[ { "path": "deployment/roles/deploy_web/templates/local.conf.j2", "content": "# first we declare our upstream server, which is our Gunicorn application\nupstream web {\n # docker will automatically resolve this to the correct address\n # because we use the same name as the service: \"web\"\n server ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1772, "all_permissive": false }
ansible_role
Eric9395/Cloud
bb072bd28895eae5231bebd12615977f634e1cd2
0
deployment/roles/setup_couchdb_cluster
1,239
[ "no_license" ]
[ { "path": "deployment/roles/setup_couchdb_cluster/templates/cluster.sh.j2", "content": "#!/usr/bin/env bash\necho \"Join in CouchDB Cluster\"\n\nuser={{ couchdb_username }}\npass={{ <PASSWORD> }}\nmaster_ip={{ coordination_node_ip }}\nslave_ip={{ ansible_default_ipv4.address }}\n\n\ncurl -X POST \"http://${...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2772, "all_permissive": false }
ansible_role
Eric9395/Cloud
bb072bd28895eae5231bebd12615977f634e1cd2
0
deployment/roles/setup_swarm
1,239
[ "no_license" ]
[ { "path": "deployment/roles/setup_swarm/tasks/main.yml", "content": "---\n# Team 20\n# Team member: <NAME>, 908282\n# <NAME>, 815901\n# <NAME>, 846305\n# <NAME>, 864735\n# <NAME>, 740145\n\n- name: Setup master node\n when: inventory_hostname in groups['m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 936, "all_permissive": false }
ansible_role
lgq9220/Ansible-demo
b756370ef2dcf74af46d3dceb1cd0287fece8943
0
roles/exception-service
1,239
[ "permissive" ]
[ { "path": "roles/exception-service/tasks/main.yml", "content": "---\n- name: \"name={{ app_name }}, port={{ app_port }}, version={{ app_version }}, instance={{ app_instance }}\"\n set_stats:\n data: {}\n- name: check\n script:\n cmd: \"./rest-service-check.sh\"\n register: healthResponse\n# - name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 541, "all_permissive": true }
ansible_role
lgq9220/Ansible-demo
b756370ef2dcf74af46d3dceb1cd0287fece8943
0
roles/rest-service
1,239
[ "permissive" ]
[ { "path": "roles/rest-service/vars/main.yml", "content": "---\napp_name: rest-service\napp_instance: 3\napp_port: 8001\napp_version: 1.1\n\ndebug: true\ntmpfile: \"{{ app_name }}.tmp\"", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 117 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 731, "all_permissive": true }
ansible_role
lgq9220/Ansible-demo
b756370ef2dcf74af46d3dceb1cd0287fece8943
0
roles/terminal-service
1,239
[ "permissive" ]
[ { "path": "roles/terminal-service/tasks/main.yml", "content": "---\n- name: show app info\n debug:\n msg: \"{{ appName }}\"", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 59 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 59, "all_permissive": true }
ansible_role
beedydo/aap_aws_testing
71c52710bfc9c81c16cca10f4c40701de4737548
0
roles/apache
1,239
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n- name: Install httpd package\n ansible.builtin.dnf:\n name: httpd\n state: present\n \n- name: EReload and enable httpd at startup\n ansible.builtin.service:\n name: httpd\n state: reloaded\n\n- name: Configure and enable firewall\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 612, "all_permissive": false }
ansible_role
tjscratch/inna-react
882feaa2cd1b9df7f3a3d14e7e12df327e81f2a3
0
tools/provision/roles/webserver
1,239
[ "no_license" ]
[ { "path": "tools/provision/roles/webserver/tasks/main.yml", "content": "- include: deploy.yml tags=deploy\n- include: nginx.yml tags=nginx\n- include: forever.yml tags=forever", "license_type": "no_license", "detected_licenses": [], "size_bytes": 101 }, { "path": "tools/provision/roles/w...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1484, "all_permissive": false }
ansible_role
mirasecurity/automation
c8262f6c08af1300c3ed4daf871dde98aa865dcb
1
ansible_automation/ansible/roles/build_kvm
1,239
[ "no_license" ]
[ { "path": "ansible_automation/ansible/roles/build_kvm/files/helpers.py", "content": "import os\nimport subprocess\nimport tarfile\nfrom pathlib import Path\nfrom urllib.parse import urlparse\nfrom ipaddress import IPv4Network\n\nimport requests\n\n\ndef create_directory(path):\n os.makedirs(path, exist_o...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 20238, "all_permissive": false }
ansible_role
mirasecurity/automation
c8262f6c08af1300c3ed4daf871dde98aa865dcb
1
ansible_automation/ansible/roles/cleanup_hypervisor
1,239
[ "no_license" ]
[ { "path": "ansible_automation/ansible/roles/cleanup_hypervisor/tasks/main.yml", "content": "---\n# Stop the VM\n- name: Destroy the VM\n shell: virsh destroy \"{{ vm_qcow_name }}\"\n become: True\n ignore_errors: True\n\n- name: Undefine the VM\n shell: virsh undefine \"{{ vm_qcow_name }}\"\n become: T...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1872, "all_permissive": false }
ansible_role
mirasecurity/automation
c8262f6c08af1300c3ed4daf871dde98aa865dcb
1
ansible_automation/ansible/roles/setup_hypervisor
1,239
[ "no_license" ]
[ { "path": "ansible_automation/ansible/roles/setup_hypervisor/templates/01-mira-bridges.yaml.j2", "content": "# /etc/netplan/01-mira-bridges.yaml\n# Base bridge example\nnetwork:\n version: 2\n renderer: networkd\n bridges:\n {{ vm_network_net_a }}:\n dhcp4: no\n dhcp6: no\n mtu: 1500\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 4756, "all_permissive": false }
ansible_role
mirasecurity/automation
c8262f6c08af1300c3ed4daf871dde98aa865dcb
1
ansible_automation/ansible/roles/ssh_remote_setup_individual
1,239
[ "no_license" ]
[ { "path": "ansible_automation/ansible/roles/ssh_remote_setup_individual/tasks/main.yml", "content": "---\n- name: Run command on host\n expect:\n echo: yes\n command: ssh-copy-id -i /root/.ssh/ansible -f {{ hypervisor_username }}@{{ hypervisor_hostname }}\n responses:\n '(.*)yes/no/\\[fingerp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 390, "all_permissive": false }
ansible_role
prashanthkp3103/tools-automation
2a0434660b02abf9efe95d26e77da942aebf085e
0
roles/github-runner
1,259
[ "no_license" ]
[ { "path": "roles/github-runner/tasks/main.yml", "content": "#provision github runner instance with terraform\n# Following steps need to be run manually\n# sudo curl -L -o /etc/yum.repos.d/gh-cli.repo https://cli.github.com/packages/rpm/gh-cli.repo\n# sudo dnf install gh -y\n# Run below commands with ec2-use...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4279, "all_permissive": false }
ansible_role
prashanthkp3103/tools-automation
2a0434660b02abf9efe95d26e77da942aebf085e
0
roles/minikube
1,259
[ "no_license" ]
[ { "path": "roles/minikube/tasks/main.yml", "content": "- name: Set prompt\n ansible.builtin.shell: set-prompt minikube\n\n- name: Extended Disk volume\n ansible.builtin.shell: growpart /dev/nvme0n1 4 ; lvextend -r -L +12G /dev/mapper/RootVG-varVol\n #ansible.builtin.shell: growpart /dev/nvme0n1 4 ; lvext...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 808, "all_permissive": false }
ansible_role
chinnak7416/tools-automation-code
e237c92ebad817c0c41195a375833da2afac522a
0
roles/artifactory
1,259
[ "no_license" ]
[ { "path": "roles/artifactory/tasks/main.yml", "content": "- name: Set-prompt name\n ansible.builtin.shell: set-prompt artifactory\n#\n#- name: Copy Jfrog repo\n# ansible.builtin.template:\n# src: jfrog.repo\n# dest: /etc/yum.repos.d/jfrog-artifactory-rpms.repo\n#\n##- name: Download repo file url\n#...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1510, "all_permissive": false }
ansible_role
chinnak7416/tools-automation-code
e237c92ebad817c0c41195a375833da2afac522a
0
roles/elk
1,259
[ "no_license" ]
[ { "path": "roles/elk/tasks/main.yml", "content": "- name: Set-prompt name\n ansible.builtin.shell: set-prompt elk\n\n- name: Copy Elastic repo\n ansible.builtin.template:\n src: elastic.repo\n dest: /etc/yum.repos.d/elastic.repo\n\n- name: Install Elasticsearch\n ansible.builtin.dnf:\n name: ela...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1374, "all_permissive": false }
ansible_role
chinnak7416/tools-automation-code
e237c92ebad817c0c41195a375833da2afac522a
0
roles/grafana
1,259
[ "no_license" ]
[ { "path": "roles/grafana/templates/prom-datasource.yml", "content": "apiVersion: 1\n\ndatasources:\n - name: Prometheus\n type: prometheus\n access: proxy\n # Access mode - proxy (server in the UI) or direct (browser in the UI).\n url: http://prometheus.ramdevops78.online:9090/\n jsonData:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 811, "all_permissive": false }
ansible_role
chinnak7416/tools-automation-code
e237c92ebad817c0c41195a375833da2afac522a
0
roles/jenkins
1,259
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/jenkins-jobs.yml", "content": "- name: Install python-jenkins\n ansible.builtin.pip:\n name: python-jenkins\n executable: pip3.9\n\n- name: Create Job xml file\n ansible.builtin.template:\n src: jobs/mbpipeline.xml\n dest: /tmp/{{item}}.xml\n loop:\n - fronte...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 869, "all_permissive": false }
ansible_role
migtools/wadsworth
995c3a9698d700cd6d955ffd92151f5d86bc66fe
0
deploy/roles/wadsworth
1,259
[ "permissive" ]
[ { "path": "deploy/roles/wadsworth/defaults/main.yml", "content": "---\n# defaults file for wadsworth\ninstall_path: /srv/wadsworth\njira_creds_source_file: /srv/wadsworth/jira-creds\nrepo_url: https://github.com/eriknelson/wadsworth\nversion: v0.2.0\nsystemd_custom_install_path: /etc/systemd/system\nnodejs_...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 2710, "all_permissive": true }
ansible_role
prasadbagal/ansible-project-structure
34a8312b1c2ef71a9dce99899e8bfd3689f5fba0
0
roles/apache
1,259
[ "no_license" ]
[ { "path": "roles/apache/tasks/install_apache.yml", "content": "- apt:\n name: \"apache2\"\n state: absent\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 }, { "path": "roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n\n- name: ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 236, "all_permissive": false }
ansible_role
phdonadio/flask
34c1ada844d258d1250e657dcc950c901275a407
0
provisioning/roles/common
1,259
[ "no_license" ]
[ { "path": "provisioning/roles/common/tasks/main.yml", "content": "# Install common componants required on the VM/VMs to support required functionality.\n#\n - name: Install the EPEL Repository\n yum:\n name: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm\n state: insta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 242, "all_permissive": false }
ansible_role
phdonadio/flask
34c1ada844d258d1250e657dcc950c901275a407
0
provisioning/roles/db
1,259
[ "no_license" ]
[ { "path": "provisioning/roles/db/tasks/main.yml", "content": "# Install MonoDB Server.\n#\n\n- name: Install MongoDB Server\n yum:\n name: mongodb-server\n state: installed\n \n- name: Enable MongoDB Service\n service:\n name: mongod.service\n enabled: yes\n\n- name: Start MongoDB\n service:...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 410, "all_permissive": false }
ansible_role
phdonadio/flask
34c1ada844d258d1250e657dcc950c901275a407
0
provisioning/roles/web
1,259
[ "no_license" ]
[ { "path": "provisioning/roles/web/tasks/main.yml", "content": "# Install the required packages to support the flask application.\n- name: Installing flask\n yum:\n name: \"{{ item }}\"\n state: installed\n with_items:\n - python-flask\n - python-pip\n\n# The following python modules are not pa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 478, "all_permissive": false }
ansible_role
AravindhStanley/central-log-repository
8d066709f26ccb64c7d14b326d5edbaa7f9a198f
1
roles/elasticsearch8
1,259
[ "permissive" ]
[ { "path": "roles/elasticsearch8/handlers/main.yml", "content": "---\n# handlers file for elasticsearch8\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 39 }, { "path": "roles/elasticsearch8/tasks/ubuntu/install.yml", "content": "---\n-...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 16363, "all_permissive": true }
ansible_role
AravindhStanley/central-log-repository
8d066709f26ccb64c7d14b326d5edbaa7f9a198f
1
roles/haproxy
1,259
[ "permissive" ]
[ { "path": "roles/haproxy/templates/haproxy.cfg.j2", "content": "global\n chroot /var/lib/haproxy\n user haproxy\n group haproxy\n daemon\n log 127.0.0.1 local1\n maxconn 40000\n nbproc 1\n stats socket /var/lib/haproxy/haproxy.sock group haproxy mode 660 expose-fd listeners\n\ndefaults\n log global...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 4642, "all_permissive": true }
ansible_role
AravindhStanley/central-log-repository
8d066709f26ccb64c7d14b326d5edbaa7f9a198f
1
roles/keepalived
1,259
[ "permissive" ]
[ { "path": "roles/keepalived/handlers/main.yml", "content": "---\n# handlers file for keepalived\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 35 }, { "path": "roles/keepalived/defaults/main.yml", "content": "---\n# defaults file for ...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1821, "all_permissive": true }
ansible_role
AravindhStanley/central-log-repository
8d066709f26ccb64c7d14b326d5edbaa7f9a198f
1
roles/kibana8
1,259
[ "permissive" ]
[ { "path": "roles/kibana8/defaults/main.yml", "content": "---\n## Variables for Download Phase\nkibana8_version: \"{{ VERSION }}\"\nkibana8_port: 5601\n\nkibana8_package_url:\n ubuntu: \"https://artifacts.elastic.co/downloads/kibana/kibana-{{ kibana8_version }}-amd64.deb\"\n redhat: \"https://artifacts.ela...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 5456, "all_permissive": true }