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
sergeykirzh/devops-netology
2d8883af4197935ef03de221997bf94d6e164db2
0
diplom/ansible/roles/iptables
4,257
[ "no_license" ]
[ { "path": "diplom/ansible/roles/iptables/tasks/main.yml", "content": "---\n\n- name: Allow connections local network\n ansible.builtin.iptables:\n chain: INPUT\n source: 192.168.0.0/16\n jump: ACCEPT\n\n- name: Allow connections on multiple ports\n ansible.builtin.iptables:\n chain: INPUT\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 859, "all_permissive": false }
ansible_role
sergeykirzh/devops-netology
2d8883af4197935ef03de221997bf94d6e164db2
0
diplom/ansible/roles/mysql-master
4,257
[ "no_license" ]
[ { "path": "diplom/ansible/roles/mysql-master/tasks/main.yml", "content": "---\n\n- name: install mssql\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - python3-pymysql\n - mysql-server\n\n- name: install conf\n template:\n src: my.cnf\n dest: /etc/mysql/my.cnf\n notify:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1247, "all_permissive": false }
ansible_role
sergeykirzh/devops-netology
2d8883af4197935ef03de221997bf94d6e164db2
0
diplom/ansible/roles/mysql-slave
4,257
[ "no_license" ]
[ { "path": "diplom/ansible/roles/mysql-slave/defaults/main.yml", "content": "init_replication: true", "license_type": "no_license", "detected_licenses": [], "size_bytes": 22 }, { "path": "diplom/ansible/roles/mysql-slave/files/my.cnf", "content": "[mysqld]\n#datadir=/var/lib/mysql\n#s...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1254, "all_permissive": false }
ansible_role
sergeykirzh/devops-netology
2d8883af4197935ef03de221997bf94d6e164db2
0
diplom/ansible/roles/mysql_restore
4,257
[ "no_license" ]
[ { "path": "diplom/ansible/roles/mysql_restore/tasks/main.yml", "content": "\n- name: copy sql_dump to target host\n copy: \n src: dump.sql\n dest: /tmp/dump.sql\n\n- name: Restore database wordpress\n community.mysql.mysql_db:\n login_unix_socket: /var/run/mysqld/mysqld.sock\n name: wordpress\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 267, "all_permissive": false }
ansible_role
sergeykirzh/devops-netology
2d8883af4197935ef03de221997bf94d6e164db2
0
diplom/ansible/roles/nginx
4,257
[ "no_license" ]
[ { "path": "diplom/ansible/roles/nginx/tasks/main.yml", "content": "---\n\n- name: install Nginx\n include_tasks: install-nginx.yml\n\n- name: Creates directory\n file:\n path: /var/www/html/.well-known/acme-challenge/\n state: directory\n\n- name: Nginx conf copy \n copy:\n src: nginx.conf\n ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1738, "all_permissive": false }
ansible_role
sergeykirzh/devops-netology
2d8883af4197935ef03de221997bf94d6e164db2
0
diplom/ansible/roles/node_exporter
4,257
[ "no_license" ]
[ { "path": "diplom/ansible/roles/node_exporter/tasks/main.yml", "content": "---\n\n- name: create node_exporter system group\n group:\n name: node_exporter\n system: true\n state: present\n\n- name: create node_exporter system user\n user:\n name: node_exporter\n system: true\n shell: \"/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1013, "all_permissive": false }
ansible_role
sergeykirzh/devops-netology
2d8883af4197935ef03de221997bf94d6e164db2
0
diplom/ansible/roles/php
4,257
[ "no_license" ]
[ { "path": "diplom/ansible/roles/php/tasks/main.yml", "content": "---\n\n- name: install php\n apt: \n name: \"{{ item }}\"\n state: present\n with_items:\n - php-mysql\n - php-fpm\n\n- name: start php-fpm\n service:\n name: php7.4-fpm\n state: started\n enabled: yes", "license_type": "no_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 200, "all_permissive": false }
ansible_role
sergeykirzh/devops-netology
2d8883af4197935ef03de221997bf94d6e164db2
0
diplom/ansible/roles/prometheus
4,257
[ "no_license" ]
[ { "path": "diplom/ansible/roles/prometheus/tasks/main.yml", "content": "- name: create prometheus system group\n group:\n name: prometheus\n system: true\n state: present\n\n- name: create prometheus system user\n user:\n name: prometheus\n system: true\n shell: \"/usr/sbin/nologin\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2814, "all_permissive": false }
ansible_role
sergeykirzh/devops-netology
2d8883af4197935ef03de221997bf94d6e164db2
0
diplom/ansible/roles/wordpress
4,257
[ "no_license" ]
[ { "path": "diplom/ansible/roles/wordpress/tasks/main.yml", "content": "---\n\n- name: install nginx\n apt:\n name: nginx\n state: present\n\n- name: install conf\n copy:\n src: web.conf\n dest: /etc/nginx/nginx.conf\n tags: conf\n notify: restart nginx\n\n- name: sync wordress\n include_tasks: ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3650, "all_permissive": false }
ansible_role
gabulc/kafka-docker-images-tenpo
5ecbd1d2bdefd20b88c6634ae7f5b2e4cb9c6de0
0
ansible/roles/add-accounts
4,257
[ "no_license" ]
[ { "path": "ansible/roles/add-accounts/tasks/main.yml", "content": "- block:\n - name: \"Create groups\"\n group:\n name: \"{{ item.name }}\"\n state: \"present\"\n with_items: \"{{ aa_groups }}\"\n\n - name: \"Create users, generate ed25519 keys, and add groups to users\"\n user:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 765, "all_permissive": false }
ansible_role
gabulc/kafka-docker-images-tenpo
5ecbd1d2bdefd20b88c6634ae7f5b2e4cb9c6de0
0
ansible/roles/base
4,257
[ "no_license" ]
[ { "path": "ansible/roles/base/vars/main.yml", "content": "base_pkgs:\n - git\n - htop\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "ansible/roles/base/defaults/main.yml", "content": "sudoer_user_name: ubuntu\n", "license_type": "no_li...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1021, "all_permissive": false }
ansible_role
gabulc/kafka-docker-images-tenpo
5ecbd1d2bdefd20b88c6634ae7f5b2e4cb9c6de0
0
ansible/roles/git-deploy
4,257
[ "no_license" ]
[ { "path": "ansible/roles/git-deploy/defaults/main.yml", "content": "repo_branch: master\narchive_filename: repo.tar\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 47 }, { "path": "ansible/roles/git-deploy/tasks/main.yml", "content": "# App deploy from a git ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1478, "all_permissive": false }
ansible_role
gabulc/kafka-docker-images-tenpo
5ecbd1d2bdefd20b88c6634ae7f5b2e4cb9c6de0
0
ansible/roles/mysql-cli
4,257
[ "no_license" ]
[ { "path": "ansible/roles/mysql-cli/tasks/setup-Debian.yml", "content": "---\n- name: Ensure old versions of MySQL are not installed\n package:\n name:\n - mysql-client\n state: absent\n\n- name: Add MySQL apt key\n apt_key:\n keyserver: pgp.mit.edu\n id: 5072E1F5\n state: present\n re...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1030, "all_permissive": false }
ansible_role
gabulc/kafka-docker-images-tenpo
5ecbd1d2bdefd20b88c6634ae7f5b2e4cb9c6de0
0
ansible/roles/postgres-cli
4,257
[ "no_license" ]
[ { "path": "ansible/roles/postgres-cli/defaults/main.yml", "content": "---\n# Versions\npostgres_version: '12'\npostgres_package: \"postgresql-client-{{ postgres_version }}\"\npostgres_package_state: present\n\n# Used only for Debian/Ubuntu. Switch 'stable' to 'edge' if needed.\npostgres_apt_arch: amd64\npos...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1541, "all_permissive": false }
ansible_role
emeka/stack-marathon
694ce41d7c7ffcf98643b9764d98bafba3a27677
0
roles/rackspace
4,257
[ "no_license" ]
[ { "path": "roles/rackspace/tasks/network.yml", "content": "---\n\n- name: Ensure Network {{state}}\n vars:\n state: present\n local_action:\n module: rax_network\n label: \"{{item.name}}\"\n cidr: \"{{item.cidr}}\"\n region: \"{{region}}\"\n state: \"{{state}}\"\n with_items: \"{{networ...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1252, "all_permissive": false }
ansible_role
y-nakazawa/demo_vagrat_docker
ab76bc7c019189f984fe16a639b614e372deed82
2
vagrant_demo/centos67_x64_ansible/provisioning/roles/nginx
4,137
[ "no_license" ]
[ { "path": "vagrant_demo/centos67_x64_ansible/provisioning/roles/nginx/tasks/main.yml", "content": "---\n# file: provisioning/roles/nginx/tasks/main.yml\n- name: install nginx\n yum: name=nginx state=present\n\n#- name: put nginx.conf\n# template: src=roles/nginx/templates/nginx.conf.j2 dest=/etc/nginx/ngi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 575, "all_permissive": false }
ansible_role
lusianneDjepang/phoneBooks_gitlab_CICD
fbdb0de5d0354963a7494d8e70252fe4452744a7
1
roles/phone-books
4,137
[ "no_license" ]
[ { "path": "roles/phone-books/tasks/main.yml", "content": "---\n# This playbook is used to deploy phone-books application based on Docker\n\n# build and push builded images\n\n- name: Log into DockerHub\n docker_login:\n username: \"{{ docker_hub_login }}\"\n email: \"{{ docker_hub_email }}\"\n pas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1807, "all_permissive": false }
ansible_role
scrhicks/ansible-playbooks
47370ca4b23f9dc1ce847dfe23c260f407a7881d
0
roles/vault
4,137
[ "permissive" ]
[ { "path": "roles/vault/tasks/initialize.yml", "content": "---\n- name: Gathering vault status\n shell: 'vault status -format=json'\n register: vault_status_results\n failed_when: vault_status_results.rc != 2\n\n- name: Parse output of vault stauts\n set_fact:\n vault_status_parsed: '{{ vault_status_r...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 4426, "all_permissive": true }
ansible_role
omgsian/ansible
96a9fb5e57bae1e7ca088af584b6f858e7b21832
0
mrh-ansible/roles/loadbalancers
4,137
[ "no_license" ]
[ { "path": "mrh-ansible/roles/loadbalancers/tasks/main.yml", "content": "---\n# tasks file for roles/loadbalancers\n- name: Creating template\n template:\n src: ../../../config/lb-config.j2\n dest: /etc/httpd/conf.d/lb.conf\n owner: bin\n group: wheel\n mode: 064\n notify: Restart apache\n",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 224, "all_permissive": false }
ansible_role
omgsian/ansible
96a9fb5e57bae1e7ca088af584b6f858e7b21832
0
mrh-ansible/roles/webservers
4,137
[ "no_license" ]
[ { "path": "mrh-ansible/roles/webservers/tasks/main.yml", "content": "---\n# tasks file for roles/webservers\n- name: Upload application file\n copy:\n src: ../files/index.php\n dest: \"{{ path_to_app }}\"\n mode: 0755\n tags: upload\n- name: Create simple info page\n copy:\n dest: \"{{ path_t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 658, "all_permissive": false }
ansible_role
miharahiro/ansible-molecule-for-existing-routers
50bf456141ed1cbf1f8c3b9227b0371cc1cb55ab
0
roles/cisco-setup
4,137
[ "no_license" ]
[ { "path": "roles/cisco-setup/defaults/main.yml", "content": "---\n# defaults file for cisco-setup\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "roles/cisco-setup/tasks/main.yml", "content": "---\n# tasks file for cisco-setup\n- name: hello\...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 1357, "all_permissive": false }
ansible_role
nullkal/dotfiles
2fc5c5b29b9dfb9341e82a63880c63a88ad18ad6
1
roles/git
4,137
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "---\n- name: Insert configuration block in ~/.gitconfig\n blockinfile:\n path: ~/.gitconfig\n create: yes\n block: \"{{ lookup('file', 'files/gitconfig') }}\"\n\n- name: Insert configuration block in ~/.gitignore\n blockinfile:\n path: ~/.gitig...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 321, "all_permissive": false }
ansible_role
nullkal/dotfiles
2fc5c5b29b9dfb9341e82a63880c63a88ad18ad6
1
roles/nvim
4,137
[ "no_license" ]
[ { "path": "roles/nvim/local_files/vimrc.d/plugin-lightline.vim", "content": "let g:lightline = {\n\\ 'active': {\n\\ 'left': [\n\\ [ 'mode', 'paste' ],\n\\ [ 'fugitive', 'readonly', 'filename' ]\n\\ ],\n\\ 'right': [\n\\ [ 'lineinfo', 'syntastic' ],\n\\ [ 'percent' ],\n\\ [ 'fileformat', '...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 14, "total_bytes": 8483, "all_permissive": false }
ansible_role
nullkal/dotfiles
2fc5c5b29b9dfb9341e82a63880c63a88ad18ad6
1
roles/ssh
4,137
[ "no_license" ]
[ { "path": "roles/ssh/tasks/main.yml", "content": "---\n- name: Create ~/.ssh if it does not exist\n file:\n path: ~/.ssh\n state: directory\n mode: '0700'\n\n- name: Insert configuration block in ~/.ssh/config\n blockinfile:\n path: ~/.ssh/config\n create: yes\n block: \"{{ lookup('file'...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 268, "all_permissive": false }
ansible_role
nullkal/dotfiles
2fc5c5b29b9dfb9341e82a63880c63a88ad18ad6
1
roles/tmux
4,137
[ "no_license" ]
[ { "path": "roles/tmux/local_files/tmux.conf.d/statusline.tmux", "content": "tmux set-option -g status-interval 1\n\ntmux set-option -g status-bg \"colour238\"\ntmux set-option -g status-fg \"colour255\"\n\ntmux set-option -g status-left \"#[fg=colour255,bg=colour241] #S #[default] \"\ntmux set-option -g sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1833, "all_permissive": false }
ansible_role
nullkal/dotfiles
2fc5c5b29b9dfb9341e82a63880c63a88ad18ad6
1
roles/zsh
4,137
[ "no_license" ]
[ { "path": "roles/zsh/local_files/zshrc.d/completion.zsh", "content": "#fpath=($DOTFILES_DIR/zsh/zsh-completions/src/ $fpath)\n\nautoload -U compinit; compinit\n\nsetopt auto_list\nsetopt auto_menu\nsetopt auto_param_keys\nsetopt auto_param_slash\nsetopt correct\nsetopt list_packed\nsetopt list_types\nsetopt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 3231, "all_permissive": false }
ansible_role
jakubgs/status.im-mining
9222c12cf0e44a7d95e486861450f2b464acc8a8
0
ansible/roles/common
4,137
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: Install common tools\n apt:\n name: \"{{ item }}\"\n with_items:\n - htop\n - net-tools\n - jq\n - ipython\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 127 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 127, "all_permissive": false }
ansible_role
jakubgs/status.im-mining
9222c12cf0e44a7d95e486861450f2b464acc8a8
0
ansible/roles/docker
4,137
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n- name: Add signing key for docker repo\n apt_key:\n url: \"https://download.docker.com/linux/ubuntu/gpg\"\n\n- name: Add docker repo\n apt_repository:\n repo: \"deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ansible_dist...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 748, "all_permissive": false }
ansible_role
jakubgs/status.im-mining
9222c12cf0e44a7d95e486861450f2b464acc8a8
0
ansible/roles/miner
4,137
[ "no_license" ]
[ { "path": "ansible/roles/miner/tasks/main.yml", "content": "---\n- import_tasks: geth.yml\n- import_tasks: metrics.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 57 }, { "path": "ansible/roles/miner/tasks/metrics.yml", "content": "---\n- name: Install py...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3256, "all_permissive": false }
ansible_role
jakubgs/status.im-mining
9222c12cf0e44a7d95e486861450f2b464acc8a8
0
ansible/roles/monitoring-client
4,137
[ "no_license" ]
[ { "path": "ansible/roles/monitoring-client/tasks/main.yml", "content": "---\n- name: Creates /docker/netdata directory\n file:\n path: \"/docker/netdata\"\n state: directory\n\n- name: Check existence of monitor_host variable\n fail:\n msg: \"Provide domain monitoring host.\"\n when: monitor_hos...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 995, "all_permissive": false }
ansible_role
jakubgs/status.im-mining
9222c12cf0e44a7d95e486861450f2b464acc8a8
0
ansible/roles/monitoring-server
4,137
[ "no_license" ]
[ { "path": "ansible/roles/monitoring-server/templates/graphite.yml", "content": "apiVersion: 1\n\n#deleteDatasources:\n# - name: Graphite\n# orgId: 1\n\ndatasources:\n- name: Graphite\n type: graphite\n access: proxy\n orgId: 1\n url: http://graphite:80\n basicAuth: true\n basicAuthUser: admin\n b...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2788, "all_permissive": false }
ansible_role
QxDruid/trinitycore335
21df658bf8cc73a84c5da09932d062a48b012a57
0
ansible/roles/mariadb
4,137
[ "no_license" ]
[ { "path": "ansible/roles/mariadb/tasks/create_user.yml", "content": "---\n- name: Create database user with name 'db_user' and password '<PASSWORD>' with all database privileges\n community.mysql.mysql_user:\n login_user: root\n login_password: \"{{ <PASSWORD> }}\"\n host: \"%\"\n name: \"{{ db...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2134, "all_permissive": false }
ansible_role
QxDruid/trinitycore335
21df658bf8cc73a84c5da09932d062a48b012a57
0
ansible/roles/trinitycore
4,137
[ "no_license" ]
[ { "path": "ansible/roles/trinitycore/tasks/extract_models.yaml", "content": "- name: Copy WOW client to extract files\n ansible.builtin.copy:\n src: \"{{client_folder}}\"\n dest: /home/trinity/\n owner: trinity\n group: trinity\n mode: '0744'\n\n- name: Copy binaries to extract files\n ansi...
{ "task_files": 8, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 12, "total_bytes": 6357, "all_permissive": false }
ansible_role
lalitjoshi29/my-ansible-playbooks
259cdee9a857a3e0b3dee518a1d56eec1f813ad3
0
PrePostServerConfigOutput/roles/pre_pst_chk
4,137
[ "no_license" ]
[ { "path": "PrePostServerConfigOutput/roles/pre_pst_chk/files/linux_output.sh", "content": "#!/bin/bash\n\n## common system information\necho -e \"************* System information***************\"\necho -e -n \"System uptime: \"; uptime\necho -e -n \"System date and time: \"; date\necho -e -n \"Kernel...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 5784, "all_permissive": false }
ansible_role
lalitjoshi29/my-ansible-playbooks
259cdee9a857a3e0b3dee518a1d56eec1f813ad3
0
os_patching/roles/amzn_patching
4,137
[ "no_license" ]
[ { "path": "os_patching/roles/amzn_patching/tasks/postactivity.yml", "content": "- name: Take output of important system configuration in a file - POST patching\n script: \"{{ role_path }}/files/linux_output.sh >> /var/tmp/POST_{{ ansible_hostname }}_system_info_output_{{ ansible_date_time.date }}.txt\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 763, "all_permissive": false }
ansible_role
lalitjoshi29/my-ansible-playbooks
259cdee9a857a3e0b3dee518a1d56eec1f813ad3
0
os_patching/roles/rhel_patching
4,137
[ "no_license" ]
[ { "path": "os_patching/roles/rhel_patching/vars/main.yml", "content": "---\n# vars file for rhel_patching\nmail_recipient: <EMAIL>\n\n\n#app_mail_recipient: <EMAIL>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "os_patching/roles/rhel_patching/f...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 4645, "all_permissive": false }
ansible_role
iktakahiro/ansible_playbooks
b15a1257f633e0c05787757ec2204b15d4fe9390
10
roles/common
4,137
[ "no_license" ]
[ { "path": "roles/common/vars/vars.json", "content": "{\n \"base\": {\n \"get_url\" : \"https://example.com/\"\n },\n \"users\": [\n {\n \"name\": \"test1\",\n \"primary_group\": \"test1\",\n \"secondary_groups\": \"wheel\",\n \"public_key\":...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 3450, "all_permissive": false }
ansible_role
iktakahiro/ansible_playbooks
b15a1257f633e0c05787757ec2204b15d4fe9390
10
roles/package
4,137
[ "no_license" ]
[ { "path": "roles/package/templates/init/init_tomcat.j2", "content": "#!/bin/bash\n#\n# tomcat - this script starts and stops the tomcat daemon\n#\n# chkconfig: - 99 99\n# description: Tomcat is a Java application server\n# processname: tomcat\n# pidfile: /var/run/tomcat.pid\n\n# source function libra...
{ "task_files": 20, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 47, "total_bytes": 48702, "all_permissive": false }
ansible_role
ribha91/playbook
c691e74f216961a81422ad017b32b233dc389228
0
roles/apache
4,137
[ "no_license" ]
[ { "path": "roles/apache/tasks/service.yml", "content": "#start httpd service\n- name: start apache service\n service: \n name: httpd\n state: started\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "path": "roles/apache/tasks/configure.yml", ...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 489, "all_permissive": false }
ansible_role
miyyet/abdock
07e4ea23c4350496464e0df64f8a0dc180a12e82
0
ansible/roles/basic
4,137
[ "no_license" ]
[ { "path": "ansible/roles/basic/tasks/main.yml", "content": "- name: \"Installing softwars\"\n apt: pkg={{ item }} state=present\n with_items:\n - vim\n - git", "license_type": "no_license", "detected_licenses": [], "size_bytes": 99 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 99, "all_permissive": false }
ansible_role
MbqIIB/devops_exam
6143a48a8863fbd1bb014c8ae05038dd66d43080
0
ansible/jenkins_setup/roles/geerlingguy.docker
4,137
[ "no_license" ]
[ { "path": "ansible/jenkins_setup/roles/geerlingguy.docker/tasks/main.yml", "content": "---\n- include: setup-RedHat.yml\n when: ansible_os_family == 'RedHat'\n\n- include: setup-Debian.yml\n when: ansible_os_family == 'Debian'\n\n- name: Install Docker.\n package: name={{ docker_package }} state={{ docke...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 513, "all_permissive": false }
ansible_role
Fale/servers
22b4aa43aab1e441bf5f681431a897b404537e9a
0
roles/common
4,137
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yaml", "content": "---\n- name: Ensure EPEL is available on EL\n package:\n name: epel-release\n state: present\n become: True\n when: ansible_distribution == 'CentOS'\n\n- name: Upgrade all packages\n package:\n name: '*'\n state: latest\n become: True\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 3437, "all_permissive": false }
ansible_role
Fale/servers
22b4aa43aab1e441bf5f681431a897b404537e9a
0
roles/db
4,137
[ "no_license" ]
[ { "path": "roles/db/templates/server.cnf", "content": "# This is read by the standalone daemon and embedded servers\n[server]\n\n# This is only for the mysqld standalone daemon\n[mysqld]\n\n# Galera-related settings\n[galera]\nwsrep_on=on\nwsrep_provider=/usr/lib64/galera/libgalera_smm.so\n{% if groups.mini...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1588, "all_permissive": false }
ansible_role
Fale/servers
22b4aa43aab1e441bf5f681431a897b404537e9a
0
roles/glusterfs
4,137
[ "no_license" ]
[ { "path": "roles/glusterfs/tasks/main.yaml", "content": "---\n- name: Ensure GlusterFS is installed\n package:\n name: '{{ item }}'\n state: installed\n become: True\n with_items:\n - fuse-libs\n - glusterfs-server\n - glusterfs-client\n - nfs-utils\n\n- name: Ensure GlusterFS can pass ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2419, "all_permissive": false }
ansible_role
Fale/servers
22b4aa43aab1e441bf5f681431a897b404537e9a
0
roles/kvm
4,137
[ "no_license" ]
[ { "path": "roles/kvm/tasks/main.yaml", "content": "---\n- name: Ensure KVM packages are present\n package:\n name: '{{ item }}'\n state: present\n become: True\n with_items:\n - bridge-utils\n - libvirt\n - libvirt-daemon-kvm\n - NetworkManager-glib\n - qemu-kvm\n- name: Ensure that ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 388, "all_permissive": false }
ansible_role
Fale/servers
22b4aa43aab1e441bf5f681431a897b404537e9a
0
roles/web
4,137
[ "no_license" ]
[ { "path": "roles/web/files/preparecerts", "content": "#!/bin/bash\n\n# Delete the /tmp/dhparam.pem if it's older than 12hrs and generate a\n# new one if it does not exists\nfind /tmp/dhparam.pem -mmin +720 -delete > /dev/null\nif [ ! -f /tmp/dhparam.pem ]; then\n openssl dhparam -out /etc/ssl/certs/dhpar...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 6912, "all_permissive": false }
ansible_role
yutee/infra-repo
7c05e4208fb49d6390f677292f2bae7316ddacbe
0
ansible/roles/argocd_install
4,137
[ "no_license" ]
[ { "path": "ansible/roles/argocd_install/tasks/main.yml", "content": "\n# first install Nginx Ingress Controller\n- name: Add nginx-ingress helm repository\n kubernetes.core.helm_repository:\n name: ingress-nginx\n repo_url: https://kubernetes.github.io/ingress-nginx\n\n- name: Create ingress-nginx na...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4158, "all_permissive": false }
ansible_role
yutee/infra-repo
7c05e4208fb49d6390f677292f2bae7316ddacbe
0
ansible/roles/logging_stack
4,137
[ "no_license" ]
[ { "path": "ansible/roles/logging_stack/defaults/main.yml", "content": "\nlogging_namespace: logging\nefk_release_name: efk\nelasticsearch_replicas: 3\nkibana_service_type: ClusterIP", "license_type": "no_license", "detected_licenses": [], "size_bytes": 106 }, { "path": "ansible/roles/log...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1175, "all_permissive": false }
ansible_role
yutee/infra-repo
7c05e4208fb49d6390f677292f2bae7316ddacbe
0
ansible/roles/monitoring_stack
4,137
[ "no_license" ]
[ { "path": "ansible/roles/monitoring_stack/defaults/main.yml", "content": "\nmonitoring_namespace: monitoring\nprometheus_release_name: prometheus\ngrafana_admin_password: <PASSWORD>", "license_type": "no_license", "detected_licenses": [], "size_bytes": 104 }, { "path": "ansible/roles/mon...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2204, "all_permissive": false }
ansible_role
ravikirankotharu/ansible
00461940b1f1a9a3bd8ab22173df83769adbc4f8
0
roles/tomcatroles
4,277
[ "no_license" ]
[ { "path": "roles/tomcatroles/handlers/main.yml", "content": "---\n# handlers file for tomcatroles\n- name: restart tomcat\n service:\n state: restarted\n name: tomcat", "license_type": "no_license", "detected_licenses": [], "size_bytes": 107 }, { "path": "roles/tomcatroles/tasks/m...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 2239, "all_permissive": false }
ansible_role
agerro/ubuntu-setup
22d030ef269239c0204d8b5c0a6ffd33a479fd71
0
roles/applications
4,277
[ "no_license" ]
[ { "path": "roles/applications/tasks/main.yaml", "content": "- import_tasks: applications.yaml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "roles/applications/tasks/applications.yaml", "content": "- name: Install slack\n apt:\n deb:...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 154, "all_permissive": false }
ansible_role
agerro/ubuntu-setup
22d030ef269239c0204d8b5c0a6ffd33a479fd71
0
roles/configuration
4,277
[ "no_license" ]
[ { "path": "roles/configuration/tasks/main.yaml", "content": "- import_tasks: zsh.yaml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 24 }, { "path": "roles/configuration/tasks/zsh.yaml", "content": "- name: Update repositories cache and install \"zsh\"\n beco...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 152, "all_permissive": false }
ansible_role
agerro/ubuntu-setup
22d030ef269239c0204d8b5c0a6ffd33a479fd71
0
roles/dotfiles
4,277
[ "no_license" ]
[ { "path": "roles/dotfiles/tasks/main.yaml", "content": "- name: Create folder for zsh sources\n file:\n path: $HOME/.zsh_sources\n state: directory\n owner: \"{{ ansible_user }}\"\n group: \"{{ ansible_user }}\"\n mode: 0755\n\n- name: Copy dotfiles\n copy:\n src: \"{{ role_path }}/files...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 497, "all_permissive": false }
ansible_role
agerro/ubuntu-setup
22d030ef269239c0204d8b5c0a6ffd33a479fd71
0
roles/tools
4,277
[ "no_license" ]
[ { "path": "roles/tools/tasks/cloud.yaml", "content": "- name: Download AWS CLI\n unarchive:\n src: https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip\n dest: /tmp/ansible-downloads\n remote_src: yes\n\n- name: Install (or update) AWS CLI\n become: yes\n command: /tmp/ansible-downloads/aws/...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2747, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/android
4,277
[ "no_license" ]
[ { "path": "roles/android/tasks/main.yml", "content": "- name: Install Platform Tools\n ansible.builtin.apt:\n name: android-sdk-platform-tools\n tate: present\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 110 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 110, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/ansible
4,277
[ "no_license" ]
[ { "path": "roles/ansible/tasks/main.yml", "content": "- name: Install Dependencies\n ansible.builtin.apt:\n name: pipx\n state: present\n\n- name: Install Ansible\n community.general.pipx:\n name: \"{{ item }}\"\n with_items:\n - \"ansible\"\n - \"ansible-lint\"\n", "license_type": "no...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 211, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/apt-update
4,277
[ "no_license" ]
[ { "path": "roles/apt-update/tasks/main.yml", "content": "- name: Update Apt\n ansible.builtin.apt:\n update_cache: true\n cache_valid_time: 3600\n upgrade: dist\n autoremove: true\n autoclean: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 151 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 151, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/bw
4,277
[ "no_license" ]
[ { "path": "roles/bw/tasks/main.yml", "content": "- name: Install bitwarden\n community.general.snap:\n name: bw\n classic: true\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 102 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 102, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/docker
4,277
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Docker\n ansible.builtin.apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - docker.io\n - docker-compose-v2\n become: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 149 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 149, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/dotconfig
4,277
[ "no_license" ]
[ { "path": "roles/dotconfig/tasks/main.yml", "content": "- name: Check Install\n ansible.builtin.stat:\n path: \"{{ lookup('ansible.builtin.env', 'HOME') }}/.dotconfigs\"\n register: dotconfigs_path_result\n\n- name: Install Dotconfigs\n ansible.builtin.git:\n repo: '<EMAIL>:winetree94/dotconfigs.gi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 455, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/fish
4,277
[ "no_license" ]
[ { "path": "roles/fish/files/fish/conf.d/snap.fish", "content": "set -x PATH /snap/bin $PATH\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "roles/fish/files/fish/config.fish", "content": "set -g fish_greeting\n\n# apply user bin\nset -x PATH ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 3465, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/git
4,277
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "- name: Install git\n ansible.builtin.apt:\n name: git\n state: present\n\n- name: Copy gitconfig\n ansible.builtin.copy:\n src: gitconfig\n dest: \"{{ lookup('ansible.builtin.env', 'HOME') }}/.gitconfig\"\n owner: \"{{ lookup('ansible.built...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 341, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/gui-apps
4,277
[ "no_license" ]
[ { "path": "roles/gui-apps/tasks/main.yml", "content": "- name: Install Flatpak Apps\n community.general.flatpak:\n name: \"{{ item.name }}\"\n state: \"{{ item.state }}\"\n with_items:\n - { name: com.bitwarden.desktop, state: present }\n - { name: org.videolan.VLC, state: present }\n - { n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1659, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/kubectl
4,277
[ "no_license" ]
[ { "path": "roles/kubectl/tasks/main.yml", "content": "- name: Setup Kubectl Dir\n ansible.builtin.file:\n path: \"{{ lookup('ansible.builtin.env', 'HOME') }}/.kube\"\n state: directory\n owner: \"{{ lookup('ansible.builtin.env', 'USER') }}\"\n group: \"{{ lookup('ansible.builtin.env', 'USER') }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1467, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/node
4,277
[ "no_license" ]
[ { "path": "roles/node/vars/main.yml", "content": "node_version: \"20.19.0\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 24 }, { "path": "roles/node/tasks/main.yml", "content": "- name: Check Node Installation\n ansible.builtin.stat:\n path: \"{{ looku...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 714, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/nvim
4,277
[ "no_license", "permissive" ]
[ { "path": "roles/nvim/files/nvim/plugin/treesitter.lua", "content": "local add, now, later = MiniDeps.add, MiniDeps.now, MiniDeps.later\n\nlater(function()\n add({\n source = 'nvim-treesitter/nvim-treesitter',\n checkout = 'master',\n monitor = 'main',\n hooks = { post_checkout = function() vim...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 12, "total_bytes": 16914, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/python3
4,277
[ "no_license" ]
[ { "path": "roles/python3/tasks/main.yml", "content": "- name: Install Python3\n ansible.builtin.apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - python3\n - pipx\n - build-essential\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
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/rust
4,277
[ "no_license" ]
[ { "path": "roles/rust/tasks/main.yml", "content": "- name: Check if cargo is installed\n ansible.builtin.stat:\n path: \"{{ lookup('ansible.builtin.env', 'HOME') }}/.cargo\"\n register: cargo_exists\n become: false\n\n- name: Download Installer\n when: not cargo_exists.stat.exists\n ansible.builtin....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 514, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/setup-flatpak
4,277
[ "no_license" ]
[ { "path": "roles/setup-flatpak/tasks/main.yml", "content": "- name: Install\n ansible.builtin.apt:\n name: flatpak\n state: present\n\n- name: Check flathub repository\n ansible.builtin.command: \"flatpak remotes\"\n register: flatpak_remotes_result\n changed_when: false\n\n- name: Regitser flathu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 758, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/setup-homebrew
4,277
[ "no_license" ]
[ { "path": "roles/setup-homebrew/tasks/main.yml", "content": "- name: Install required dependencies\n ansible.builtin.apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - curl\n - git\n - build-essential\n\n- name: Checking brew install\n ansible.builtin.stat:\n path: /home/lin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 841, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/setup-snap
4,277
[ "no_license" ]
[ { "path": "roles/setup-snap/tasks/main.yml", "content": "- name: Install snap\n ansible.builtin.apt:\n name: snapd\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 79, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/tmux
4,277
[ "no_license" ]
[ { "path": "roles/tmux/files/.tmux.conf", "content": "set-option -sa terminal-overrides \",xterm*:Tc\"\nset -g mouse on\n# set -g set-clipboard on\n\n# OSC 52를 통해 클립보드 연동 활성화 (tmux 2.6 이상)\nset -s set-clipboard external\n\n# allow-passthrough 옵션은 Neovim 등 내부 애플리케이션이 직접 OSC 52를 사용하도록 허용합니다.\n# 이 설정이 없으면 Neovi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2218, "all_permissive": false }
ansible_role
tinyrack94/dotconfigs
e9e210a5af4b621580b0f4bd417029e6c53b1e3b
0
roles/zsh
4,277
[ "no_license" ]
[ { "path": "roles/zsh/tasks/main.yml", "content": "- name: Install zsh\n ansible.builtin.apt:\n name: git\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 57 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 57, "all_permissive": false }
ansible_role
amateu/ansible_kubespray
a2aea2846d1333e0a9dca1202451a8c0ee405926
0
ansible/ansible-infra/ansible/roles/bootstrap
4,277
[ "no_license" ]
[ { "path": "ansible/ansible-infra/ansible/roles/bootstrap/tasks/merge.yml", "content": "- name: init dict\n set_fact:\n namespaces_dict1: \"{{ {} }}\"\n namespaces_dict2: \"{{ {} }}\"\n\n- name: translate namespaces_dict1\n set_fact:\n namespaces_dict1: \"{{ namespaces_dict1|default({}) | combine(...
{ "task_files": 17, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 22, "total_bytes": 42013, "all_permissive": false }
ansible_role
amateu/ansible_kubespray
a2aea2846d1333e0a9dca1202451a8c0ee405926
0
ansible/ansible-infra/ansible/roles/cis
4,277
[ "no_license" ]
[ { "path": "ansible/ansible-infra/ansible/roles/cis/tasks/main.yml", "content": "- import_tasks: \"level-1.yml\"\n when: cis_apply_level_1_profile\n\n- import_tasks: \"level-2.yml\"\n when: cis_apply_level_2_profile\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 727, "all_permissive": false }
ansible_role
amateu/ansible_kubespray
a2aea2846d1333e0a9dca1202451a8c0ee405926
0
ansible/ansible-infra/ansible/roles/infra-defaults
4,277
[ "no_license" ]
[ { "path": "ansible/ansible-infra/ansible/roles/infra-defaults/defaults/kubespray.yml", "content": "# flannel_backend_type is vxlan for default\nflannel_backend_type: host-gw\nflannel_interface: \"eth100\"\n\n# Kubernetes\nbootstrap_os: centos\nskip_downloads: false\ndownload_run_once: true\ndownload_localho...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 22551, "all_permissive": false }
ansible_role
alexthaii/unity-ansible
71e5d32b5a3716186a15199fdb671c73042eaf19
0
roles/apache
4,277
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n\n- name: install httpd\n yum: name=httpd state=latest\n\n- name: place index.html\n copy: src=../files/index.html dest=/var/www/html\n\n- name: restart httpd\n become: true\n become_user: root\n service: name=httpd stat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 254, "all_permissive": false }
ansible_role
alexthaii/unity-ansible
71e5d32b5a3716186a15199fdb671c73042eaf19
0
roles/common
4,277
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# tasks file for common\n\n- name: create user\n user: name=alex", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 66, "all_permissive": false }
ansible_role
alexthaii/unity-ansible
71e5d32b5a3716186a15199fdb671c73042eaf19
0
roles/jenkins.jobs
4,277
[ "no_license" ]
[ { "path": "roles/jenkins.jobs/tasks/main.yml", "content": "- name: Create login credentials\n command: java -jar {{ jenkins_jar_location }} -s http://localhost:8080 login --username {{ jenkins_admin_username }} --password {{ <PASSWORD>_admin_password }}\n\n- name: Create temporary templates folder\n file:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 917, "all_permissive": false }
ansible_role
alexthaii/unity-ansible
71e5d32b5a3716186a15199fdb671c73042eaf19
0
roles/unity3d
4,277
[ "no_license" ]
[ { "path": "roles/unity3d/tasks/main.yml", "content": "- name: Download Unity3D 5.4.0f3\n win_get_url:\n url: 'https://store.unity.com/download/thank-you?thank-you=personal&os=win&nid=92'\n dest: 'C:\\\\Unity3DSetup.exe'", "license_type": "no_license", "detected_licenses": [], "size_bytes"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 167, "all_permissive": false }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/common
4,277
[ "permissive" ]
[ { "path": "ansible/roles/common/tasks/install_yum.yml", "content": "---\n# This file handles installation with yum (to default folder /opt/talend)\n#\n- name: \"Install {{ app_name }} with yum\"\n when: rpm_is_installed.stdout == ''\n yum:\n name: \"{{ rpm_name }}\"\n state: present\n environment:\...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 8816, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/filebeat
4,277
[ "permissive" ]
[ { "path": "ansible/roles/filebeat/tasks/update_config.yml", "content": "---\n\n# This script used to update current application parameters if the application is already installed\n# It can be run just after the installation or after some time (re-configuration)\n# Some parameters cannot be re-configured (in...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3116, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/iam
4,277
[ "permissive" ]
[ { "path": "ansible/roles/iam/defaults/main.yml", "content": "---\n# app_name, rpm_name and rpm_folder are standard variables, must be redefined for each role\n# # it allows re-usage of tasks\n\napp_name: \"Talend-IAM\"\nrpm_name: \"talend-iam\"\nrpm_folder: \"iam\"\napp_service: \"talend-iam\"\n\n#####\n# T...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 30948, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/java
4,277
[ "permissive" ]
[ { "path": "ansible/roles/java/README.md", "content": "# Java (OpenJDK 11)\n\nThis role installs **Java (OpenJDK 11)**.\nIt can be modified to install Oracle Java, if needed.\n\nOpenJDK is available in standard CentOS repositories.\n\nThe variable `java_dir.stdout` is set to the path to `JAVA_HOME`.\nIt is u...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1745, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/jobserver
4,277
[ "permissive" ]
[ { "path": "ansible/roles/jobserver/tasks/update_config.yml", "content": "---\n\n# This script used to update current application parameters if the application is already installed\n# It can be run just after the installation or after some time (re-configuration)\n# Some parameters cannot be re-configured (i...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 43731, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/kafka
4,277
[ "permissive" ]
[ { "path": "ansible/roles/kafka/tasks/update_config.yml", "content": "---\n\n# This script used to update current application parameters if the application is already installed\n# It can be run just after the installation or after some time (re-configuration)\n# Some parameters cannot be re-configured (insta...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 10, "total_bytes": 48281, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/logserver
4,277
[ "permissive" ]
[ { "path": "ansible/roles/logserver/defaults/main.yml", "content": "---\n# app_name, rpm_name and rpm_folder are standard variables, must be redefined for each role\n# it allows re-usage of tasks\n\napp_name: \"Talend LogServer\"\nrpm_name: \"talend-logserver\"\nrpm_folder: \"logserver\"\n\n#####\n# Installa...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 18374, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/mdm
4,277
[ "permissive" ]
[ { "path": "ansible/roles/mdm/README.md", "content": "# Talend MDM\n\nThis role installs **Talend MDM**.\n\nMake sure you have completed the requirements listed in the [Root README](../../../README.md) file.\n\n## Role variables\n\nBefore running the script, you can change the following variables in the *def...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 13323, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/minio
4,277
[ "permissive" ]
[ { "path": "ansible/roles/minio/tasks/install_yum.yml", "content": "---\n# This file handles installation with yum (to default folder /opt/talend)\n#\n- name: \"Install {{ app_name }} with yum\"\n yum:\n name: \"{{ rpm_name }}\"\n state: present\n environment:\n TALEND_INSTALL_USER: '{{ install_us...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 7954, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/mongodb
4,277
[ "permissive" ]
[ { "path": "ansible/roles/mongodb/README.md", "content": "# MongoDB\n\nThis role installs **MongoDB**.\n\nMake sure you have completed the requirements listed in the [Root README](../../../README.md) file.\n\n## Role variables\n\nBefore running the script, you can change the following variables in the *defau...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 9190, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/runtime
4,277
[ "permissive" ]
[ { "path": "ansible/roles/runtime/defaults/main.yml", "content": "---\n# app_name, rpm_name and rpm_folder are standard variables, must be redefined for each role\n# it allows re-usage of tasks\n\napp_name: \"Talend Runtime\"\nrpm_name: \"talend-runtime\"\nrpm_folder: \"runtime\"\napp_service: \"talend-runti...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 10290, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/sap-rfc-server
4,277
[ "permissive" ]
[ { "path": "ansible/roles/sap-rfc-server/README.md", "content": "# Talend SAP RFC Server\n\nThis role installs **Talend SAP RFC Server**.\n\n## Requirements\n\nMake sure you have completed the requirements listed in the [Root README](../../../README.md) file.\n\n## Role variables\n\nBefore running the script...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 40287, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/tac
4,277
[ "permissive" ]
[ { "path": "ansible/roles/tac/defaults/main.yml", "content": "---\n# app_name, rpm_name and rpm_folder are standard variables, must be redefined for each role\n# it allows re-usage of tasks\n\napp_name: \"Talend TAC\"\nrpm_name: \"talend-tac\"\nrpm_folder: \"tac\"\napp_service: \"talend-tac\"\n\n############...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 37236, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/talend-repo
4,277
[ "permissive" ]
[ { "path": "ansible/roles/talend-repo/tasks/main.yml", "content": "---\n# Add talend repository if missing\n- name: Install the Talend RPM repository\n template:\n src: talend.repo\n dest: /etc/yum.repos.d/talend.repo\n", "license_type": "permissive", "detected_licenses": [ "Apache-2...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 407, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/tcomp
4,277
[ "permissive" ]
[ { "path": "ansible/roles/tcomp/defaults/main.yml", "content": "---\n# app_name, rpm_name and rpm_folder are standard variables, must be redefined for each role\n# it allows re-usage of tasks\n\napp_name: \"Talend Components\"\nrpm_name: \"talend-tcomp\"\nrpm_folder: \"tcomp\"\napp_service: \"talend-tcomp\"\...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 4668, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/tdp
4,277
[ "permissive" ]
[ { "path": "ansible/roles/tdp/tasks/check_status_extra.yml", "content": "---\n# This script is specially for 'tdp' role which can use 2 RPMs depending on 'tdp_hybrid_mode' value\n# It will checks that a complimentary RPM is not installed\n# For example, if tdp_hybrid_mode == 'no', then talend-tdp-hybrid must...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 53329, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/tds
4,277
[ "permissive" ]
[ { "path": "ansible/roles/tds/tasks/update_config_installed.yml", "content": "---\n# This script used to update current application parameters (first install & upgrade)\n# It can be run just after the installation or after some time (re-configuration)\n\n#####\n# Set the path to the tomcat config location of...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 35670, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/tomcat
4,277
[ "permissive" ]
[ { "path": "ansible/roles/tomcat/defaults/main.yml", "content": "---\n# app_name and rpm_name are standard variables, must be redefined for each role\n# it allows re-usage of tasks\n\napp_name: \"Talend Tomcat\"\nrpm_name: \"talend-tomcat\"\n\n# The talend-tomcat package does not use the same versioning as o...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1720, "all_permissive": true }
ansible_role
Talend/ansible-talend-platform
f4cb101101eb4a6ccfae17f993147f62eb3eb583
8
ansible/roles/tsd
4,277
[ "permissive" ]
[ { "path": "ansible/roles/tsd/tasks/check_status_extra.yml", "content": "---\n# This script is specially for 'tsd' role which can use 2 RPMs depending on 'tsd_hybrid_mode' value\n# It will checks that a complimentary RPM is not installed\n# For example, if tsd_hybrid_mode == 'no', then talend-dictionary-serv...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 32064, "all_permissive": true }
ansible_role
crc-org/crc-cloud
9da7add26c55e3bc443a9d94a782c60b37c6715d
32
ansible/roles/crc-bootstrap
4,277
[ "no_license" ]
[ { "path": "ansible/roles/crc-bootstrap/defaults/main.yaml", "content": "---\nbootstrap_dir: /var/tmp/crc-bootstrap\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 42 }, { "path": "ansible/roles/crc-bootstrap/tasks/main.yaml", "content": "---\n- name: Create b...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4026, "all_permissive": false }