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
gjallen/ukcloud_demo
2803c0f5768f93ff3fbf2a640c1d82d89c030b1a
0
roles/check_updates
7,337
[ "no_license" ]
[ { "path": "roles/check_updates/tasks/main.yml", "content": "---\n\n- name: Check packages for updates\n shell: yum list updates | awk 'f;/Updated Packages/{f=1;}' | awk '{ print $1 }'\n changed_when: updates.stdout_lines | length > 0\n args:\n warn: false\n register: updates\n\n- name: Packages to be...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 409, "all_permissive": false }
ansible_role
gjallen/ukcloud_demo
2803c0f5768f93ff3fbf2a640c1d82d89c030b1a
0
roles/database
7,337
[ "no_license" ]
[ { "path": "roles/database/tasks/main.yml", "content": "---\n- name: Update packages\n ansible.builtin.package:\n name: \"*\"\n state: latest\n\n- name: Install MariaDB server and dependencies\n ansible.builtin.package:\n name:\n - mariadb-server\n - python3-PyMySQL\n state: latest\n\...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1835, "all_permissive": false }
ansible_role
gjallen/ukcloud_demo
2803c0f5768f93ff3fbf2a640c1d82d89c030b1a
0
roles/haproxy
7,337
[ "no_license" ]
[ { "path": "roles/haproxy/handlers/main.yml", "content": "---\n- name: Reload firewalld\n service:\n name: firewalld\n state: restarted\n\n- name: Restart haproxy\n service:\n name: haproxy\n state: restarted\n\n- name: Restart rsyslog\n service:\n name: rsyslog\n state: restarted", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1504, "all_permissive": false }
ansible_role
gjallen/ukcloud_demo
2803c0f5768f93ff3fbf2a640c1d82d89c030b1a
0
roles/setup
7,337
[ "no_license" ]
[ { "path": "roles/setup/tasks/chrony.yml", "content": "---\n- name: Install Chrony\n yum:\n name: chrony\n state: latest\n\n- name: Install chrony.conf\n template:\n src: chrony.conf\n dest: /etc/chrony.conf\n owner: root\n group: root\n mode: 0644\n notify: Restart chrony\n\n- name: ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 446, "all_permissive": false }
ansible_role
gjallen/ukcloud_demo
2803c0f5768f93ff3fbf2a640c1d82d89c030b1a
0
roles/update
7,337
[ "no_license" ]
[ { "path": "roles/update/tasks/main.yml", "content": "---\n\n- name: Check packages for updates\n shell: yum list updates | awk 'f;/Updated Packages/{f=1;}' | awk '{ print $1 }'\n changed_when: updates.stdout_lines | length > 0\n args:\n warn: false\n register: updates\n\n- name: Packages to be update...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1275, "all_permissive": false }
ansible_role
gjallen/ukcloud_demo
2803c0f5768f93ff3fbf2a640c1d82d89c030b1a
0
roles/webserver
7,337
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "---\n- name: Update packages\n ansible.builtin.package:\n name: \"*\"\n state: latest\n\n- name: Install RPM Container Tools module\n ansible.builtin.package:\n name: '@container-tools:rhel8'\n state: present\n\n- name: Pull latest Wordpr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 956, "all_permissive": false }
ansible_role
roberttstephens/ansible-example
022c63379838b38aac80c3622ccda7deb4976387
2
roles/common
7,337
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: Install git\n apt: name=git state=latest\n\n- name: Install htop\n apt: name=htop state=latest\n\n- name: Install exuberant-ctags\n apt: name=exuberant-ctags state=latest\n\n- name: Install vim\n apt: name=vim state=latest\n\n- name: Install z...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1734, "all_permissive": false }
ansible_role
Moznaim/HOA13
bd622436862680a062024917198fc28c737d8517
0
roles/acl_manager
7,337
[ "no_license" ]
[ { "path": "roles/acl_manager/tasks/main.yml", "content": "- name: include unblock_ip task file\n include_tasks: unblock_ip.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 69 }, { "path": "roles/acl_manager/tasks/unblock_ip.yml", "content": "- name: unblo...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 186, "all_permissive": false }
ansible_role
veksh/ansible-oracle-xe
037493fcf6a2da67462346949823f9eb167ac0da
1
roles/oracle-xe-server
7,337
[ "no_license" ]
[ { "path": "roles/oracle-xe-server/tasks/dbtune.yml", "content": "- name: (dbtune) check that oracle is running\n shell: \"ps -ef | grep xe_pmon | grep -v grep | wc -l\"\n register: pmon_run_res\n failed_when: \"pmon_run_res.stdout != '1'\"\n changed_when: false\n check_mode: false\n\n- name: (dbtune) g...
{ "task_files": 9, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 17, "total_bytes": 34460, "all_permissive": false }
ansible_role
Sindhu95-pup/udemy-ansible-project
d44394af23440e148de3589f259fc79dcb78b30a
0
roles/python
7,337
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": " - name: Install Python and its dependencies\n apt: name={{ item }} state=installed force=yes\n with_items:\n - python\n - python-setuptools\n - python-dev\n - build-essential\n - python-pip\n - python-mysqldb\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 251, "all_permissive": false }
ansible_role
gfouquet/jenkins-docker-arm
c926d418e2100ee8de7819e1c1cb8b011e5b6766
0
roles/jenkins-arm-builder
7,337
[ "no_license" ]
[ { "path": "roles/jenkins-arm-builder/defaults/main.yml", "content": "---\nworkdir: \"/home/{{ ansible_user }}/jenkins-arm-builder\"\nclonedir: jenkins-docker\ndocker_namespace: gfouquet", "license_type": "no_license", "detected_licenses": [], "size_bytes": 111 }, { "path": "roles/jenkins...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1274, "all_permissive": false }
ansible_role
andris174/test.ansible
f7662a82492eb28f9ea47f9d98a325d0713f8087
0
roles/backend.srv
7,337
[ "no_license" ]
[ { "path": "roles/backend.srv/tasks/apache2.yml", "content": "- name: installing apache2\n apt: pkg=apache2 state=latest update_cache=true\n\n- name: copy ports config\n template: src=apache2.ports.conf dest=/etc/apache2/ports.conf\n notify: restart apache2\n\n- name: update site default config\n replace...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3651, "all_permissive": false }
ansible_role
andris174/test.ansible
f7662a82492eb28f9ea47f9d98a325d0713f8087
0
roles/database.srv
7,337
[ "no_license" ]
[ { "path": "roles/database.srv/tasks/mysql.yml", "content": "---\n- name: specify mysql root password before installing\n debconf: name='mysql-server' question='mysql-server/root_password' value='{{mysql_root_password | quote}}' vtype='password'\n\n- name: confirm mysql root password before installing\n de...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 951, "all_permissive": false }
ansible_role
andris174/test.ansible
f7662a82492eb28f9ea47f9d98a325d0713f8087
0
roles/frontend.srv
7,337
[ "no_license" ]
[ { "path": "roles/frontend.srv/tasks/wp.yml", "content": "- name: inslall wp admin\n uri:\n url: http://{{http_wp_server_name}}/wp-admin/install.php?step=2\n method: POST\n body: \"weblog_title={{wp_title}}&user_name={{wp_admin}}&admin_email={{wp_admin_email}}&admin_password={{<PASSWORD>}}&admin_pa...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1203, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/archlinux/roles/base
7,339
[ "no_license" ]
[ { "path": "ansible/archlinux/roles/base/vars/main.yml", "content": "---\nbase_packages:\n - curl\n - chrony\n - fzf\n - git\n - less\n - linux-firmware\n - linux-headers\n - man-db\n - networkmanager\n - openssh\n - pipewire\n - tmux\n - rsync\n - stow\n - vim\n - wget\n - zsh\n - zsh-comp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1267, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/archlinux/roles/dev
7,339
[ "no_license" ]
[ { "path": "ansible/archlinux/roles/dev/vars/main.yml", "content": "---\ndev_packages:\n - base-devel\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 33 }, { "path": "ansible/archlinux/roles/dev/tasks/main.yml", "content": "---\n- name: Install dev packages\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 144, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/archlinux/roles/extra
7,339
[ "no_license" ]
[ { "path": "ansible/archlinux/roles/extra/tasks/main.yml", "content": "---\n- name: Install extra packages\n community.general.pacman:\n name: \"{{ extra_packages }}\"\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 115 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 115, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/archlinux/roles/laptop
7,339
[ "no_license" ]
[ { "path": "ansible/archlinux/roles/laptop/vars/main.yml", "content": "---\nlaptop_packages:\n - tlp\n\nlaptop_services:\n - tlp\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 55 }, { "path": "ansible/archlinux/roles/laptop/tasks/main.yml", "content": "---\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 325, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/archlinux/roles/window_manager
7,339
[ "no_license" ]
[ { "path": "ansible/archlinux/roles/window_manager/tasks/main.yml", "content": "---\n- name: Install window_manager and dependencies packages\n community.general.pacman:\n name: \"{{ window_manager_packages }}\"\n state: present\n\n- name: Install AUR packages\n kewlfft.aur.aur:\n name: \"{{ item ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1124, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/fedora/roles/base
7,339
[ "no_license" ]
[ { "path": "ansible/fedora/roles/base/tasks/build_from_git.yml", "content": "---\n- name: Check if module is already installed\n ansible.builtin.stat:\n path: \"{{ module.dst_path }}\"\n register: module_stat\n become: true\n become_user: \"{{ base_user.username }}\"\n\n- name: Create tmpdir\n ansibl...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1673, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/fedora/roles/dotfiles
7,339
[ "no_license" ]
[ { "path": "ansible/fedora/roles/dotfiles/tasks/main.yml", "content": "---\n- name: Clone dotfiles repo\n ansible.builtin.git:\n repo: \"{{ dotfiles_git_repo }}\"\n dest: \"{{ base_user.homedir }}/dotfiles\"\n version: master\n become: true\n become_user: \"{{ base_user.username }}\"\n\n- name: S...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 644, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/fedora/roles/extra
7,339
[ "no_license" ]
[ { "path": "ansible/fedora/roles/extra/vars/main.yml", "content": "---\nextra_packages:\n - tailscale\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "ansible/fedora/roles/extra/tasks/main.yml", "content": "---\n- name: Install extra packages\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 148, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/fedora/roles/window_manager
7,339
[ "no_license" ]
[ { "path": "ansible/fedora/roles/window_manager/vars/main.yml", "content": "---\nwindow_manager_coprs:\n - pgdev/ghostty\n - solopasha/hyprland\n - che/nerd-fonts\n - tofik/nwg-shell\n\nwindow_manager_packages:\n - blueman\n - cliphist\n - go\n - gtk3-devel\n - firefox\n - fontawesome-fonts\n - gh...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1616, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/authelia
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/authelia/vars/main.yml", "content": "---\nauthelia_container_name: authelia\nauthelia_config_volume: \"{{ docker_config_dir }}/{{ authelia_container_name }}\"\nauthelia_data_volume: \"{{ docker_data_dir }}/{{ authelia_container_name }}\"\nauthelia_port: 8010\n", "licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4191, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/cloudflare_ddns
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/cloudflare_ddns/templates/config.json.j2", "content": "{\n \"cloudflare\": [\n {\n \"authentication\": {\n \"api_token\": \"{{ cloudflare_ddns_api_token }}\"\n },\n \"zone_id\": \"{{ cloudflare_ddns_zone_id }}\",\n \"subdomains\": [\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1769, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/cloudflared
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/cloudflared/templates/docker-compose.yml.j2", "content": "---\nservices:\n cloudflared:\n image: cloudflare/cloudflared\n container_name: {{ cloudflared_container_name }}\n restart: unless-stopped\n command: tunnel run --protocol quic --token {{ cloudflared_co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 459, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/docker
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/docker/tasks/docker-packages.yml", "content": "- name: Install docker repository key\n ansible.builtin.apt_key:\n url: \"{{ docker_repo_key_url }}\"\n keyring: \"{{ docker_key_file }}\"\n state: present\n\n- name: Fetch Debian architecture\n ansible.builtin.comm...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2746, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/filebrowser
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/filebrowser/vars/main.yml", "content": "---\nfilebrowser_container_name: filebrowser\nfilebrowser_config_volume: \"{{ docker_config_dir }}/{{ filebrowser_container_name }}\"\nfilebrowser_data_volume: \"{{ docker_local_data_dir }}/{{ filebrowser_container_name }}\"\nfilebro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1230, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/homeassistant
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/homeassistant/tasks/custom_component.yml", "content": "---\n- name: Compose tmpdir\n ansible.builtin.set_fact:\n tmpdir: \"/tmp/{{ component.name }}\"\n\n- name: Clone the repository in a temp dir\n ansible.builtin.git:\n repo: \"{{ component.repo }}\"\n dest: \...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4588, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/immich
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/immich/tasks/main.yml", "content": "---\n\n- name: Verify immich base dirs\n ansible.builtin.file:\n path: \"{{ item }}\"\n state: directory\n owner: \"{{ docker_username }}\"\n group: \"{{ docker_main_group }}\"\n mode: '0750'\n loop:\n - \"{{ immich_d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2123, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/mariadb
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/mariadb/templates/docker-compose.yml.j2", "content": "---\nservices:\n mariadb:\n image: linuxserver/mariadb:latest\n container_name: mariadb\n environment:\n - PUID={{ docker_user_uid }}\n - PGID={{ docker_group_gid }}\n - TZ={{ default_tz }}\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 943, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/mosquitto
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/mosquitto/templates/docker-compose.yml.j2", "content": "services:\n mosquitto:\n container_name: {{ mosquitto_container_name }}\n image: eclipse-mosquitto\n hostname: mosquitto\n restart: unless-stopped\n ports:\n - {{ mosquitto_mqtt_port }}:1883\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2119, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/nextcloud
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/nextcloud/tasks/main.yml", "content": "---\n\n- name: Verify nexcloud base dirs\n ansible.builtin.file:\n path: \"{{ item }}\"\n state: directory\n owner: \"{{ docker_username }}\"\n group: \"{{ docker_main_group }}\"\n mode: '0750'\n loop:\n - \"{{ nex...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1089, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/ocis
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/ocis/vars/main.yml", "content": "---\nocis_container_name: ocis\nocis_version_digest: sha256:1b2b0fa91fc768f22eeacd12e2253c7a3db9a93516d0d3145175de6f170b2710\nocis_config_volume: \"{{ docker_config_dir }}/{{ ocis_container_name }}\"\nocis_data_volume: \"{{ docker_data_dir ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1651, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/pihole
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/pihole/templates/docker-compose.yml.j2", "content": "# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/\nservices:\n pihole:\n container_name: {{ pihole_container_name }}\n image: pihole/pihole:latest\n ports:\n - {{ piho...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1990, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/rclone_backup
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/rclone_backup/vars/main.yml", "content": "rclone_backup_packages:\n - rclone\n - borgbackup\nrclone_backup_timer_oncalendar: Sat *-*-* 03:30:00\nrclone_backup_username: root\nrclone_backup_group: root\nrclone_backup_backup_dir: /backup\nrclone_backup_dropbox_dir: /backup...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2725, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/redis
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/redis/vars/main.yml", "content": "---\nredis_container_name: redis\nredis_config_volume: \"{{ docker_config_dir }}/{{ redis_container_name }}\"\nredis_data_volume: \"{{ docker_data_dir }}/{{ redis_container_name }}\"\nredis_uid: 999\nredis_gid: 999\nredis_databases: 16\nre...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1151, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/tailscale
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/tailscale/vars/main.yml", "content": "---\ntailscale_container_name: tailscale\ntailscale_state_volume: \"{{ docker_local_data_dir }}/{{ tailscale_container_name }}\"\ntailscale_ephemeral_node: 'false'\ntailscale_preauthorized_node: 'true'\ntailscale_server_tag: server\nta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1356, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/uptime_kuma
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/uptime_kuma/tasks/main.yml", "content": "---\n- name: Verify uptime-kuma data dir\n ansible.builtin.file:\n path: \"{{ uptime_kuma_data_volume }}\"\n state: directory\n owner: \"{{ docker_username }}\"\n group: \"{{ docker_main_group }}\"\n mode: '0750'\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1048, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/vaultwarden
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/vaultwarden/tasks/main.yml", "content": "---\n- name: Verify vaultwarden data dir\n ansible.builtin.file:\n path: \"{{ vaultwarden_data_volume }}\"\n state: directory\n owner: \"{{ docker_username }}\"\n group: \"{{ docker_main_group }}\"\n mode: '0750'\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1782, "all_permissive": false }
ansible_role
rogervn/scripts
c24e624fad27173d9bc4ce71f9de561143ef8fe7
0
ansible/pi-server/roles/wireguard
7,339
[ "no_license" ]
[ { "path": "ansible/pi-server/roles/wireguard/templates/docker-compose.yml.j2", "content": "---\nservices:\n wireguard:\n image: lscr.io/linuxserver/wireguard:latest\n container_name: {{ wireguard_container_name }}\n cap_add:\n - NET_ADMIN\n - SYS_MODULE\n environment:\n - PUID={{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1557, "all_permissive": false }
ansible_role
pdaambrosio/ansible_cluster_k8s_ec2
3b1f1c2f71306f7a83ae7cf8192387b4f277c959
0
install_k8s/roles/create-cluster
7,339
[ "no_license" ]
[ { "path": "install_k8s/roles/create-cluster/tasks/init-cluster.yml", "content": "- name: reset_cluster\n command:\n kubeadm reset --force\n register: kubeadm_reset\n\n- name: start_cluster_k8s\n command:\n kubeadm init --ignore-preflight-errors=NumCPU\n register: kubeadm_init\n\n- name: create_dir...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1203, "all_permissive": false }
ansible_role
pdaambrosio/ansible_cluster_k8s_ec2
3b1f1c2f71306f7a83ae7cf8192387b4f277c959
0
install_k8s/roles/install-helm
7,339
[ "no_license" ]
[ { "path": "install_k8s/roles/install-helm/tasks/install-helm.yml", "content": "---\n- name: download_helm\n get_url:\n url: \"{{ helm_url }}\"\n dest: /tmp/get_helm.sh\n mode: 0775\n # ignore_errors: true\n register: download\n\n- name: install_helm\n shell:\n /tmp/get_helm.sh\n when:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 308, "all_permissive": false }
ansible_role
pdaambrosio/ansible_cluster_k8s_ec2
3b1f1c2f71306f7a83ae7cf8192387b4f277c959
0
install_k8s/roles/install-k8s
7,339
[ "no_license" ]
[ { "path": "install_k8s/roles/install-k8s/handlers/main.yml", "content": "---\n# handlers file for install-k8s\n- name: restart docker\n service:\n name: docker\n state: restarted\n\n- name: docker status\n service:\n name: docker\n state: started\n\n- name: restart kubelet\n service:\n nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1109, "all_permissive": false }
ansible_role
pdaambrosio/ansible_cluster_k8s_ec2
3b1f1c2f71306f7a83ae7cf8192387b4f277c959
0
install_k8s/roles/join-workers
7,339
[ "no_license" ]
[ { "path": "install_k8s/roles/join-workers/tasks/join-cluster.yml", "content": "- name: \n debug:\n msg: \"[WORKER] K8S_TOKEN_HOLDER - token is {{ hostvars['K8S_TOKEN_HOLDER']['token'] }}\"\n\n- name: \n debug:\n msg: \"[WORKER] K8S_TOKEN_HOLDER - hash is {{ hostvars['K8S_TOKEN_HOLDER']['hash'] }}\"\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 544, "all_permissive": false }
ansible_role
pdaambrosio/ansible_cluster_k8s_ec2
3b1f1c2f71306f7a83ae7cf8192387b4f277c959
0
provisioning/roles/create-instances
7,339
[ "no_license" ]
[ { "path": "provisioning/roles/create-instances/vars/main.yml", "content": "---\n# vars file for create_instances\ninstance_type: t2.micro # set instance\nsec_group_name: default # set security group name\nimage: ami-085925f297f89fce1 # set ami (Ubuntu)\nkeypar: your_key_AWS_intance # your AWS ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2189, "all_permissive": false }
ansible_role
halbo5/ansible-bootstrap-css
2dbecaca62567bba2c3285c42f8b1d2d3c9a39e5
0
roles/bootstrap
7,339
[ "no_license" ]
[ { "path": "roles/bootstrap/defaults/main.yml", "content": "---\nbootstrap_version: \"4.4.1\"\nbootstrap_directory: \"$HOME/bootstrap_css\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 }, { "path": "roles/bootstrap/tasks/main.yml", "content": "---\n- nam...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 586, "all_permissive": false }
ansible_role
halbo5/ansible-bootstrap-css
2dbecaca62567bba2c3285c42f8b1d2d3c9a39e5
0
roles/gulpjs
7,339
[ "no_license" ]
[ { "path": "roles/gulpjs/tasks/main.yml", "content": "---\n- name: download gulp-cli with npm\n command: npm install --global gulp-cli\n args:\n creates: /usr/bin/gulp\n- name: download dev files for gulpjs\n command: npm install --save-dev gulp\n args:\n chdir: \"{{ bootstrap_directory }}\"\n c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2083, "all_permissive": false }
ansible_role
halbo5/ansible-bootstrap-css
2dbecaca62567bba2c3285c42f8b1d2d3c9a39e5
0
roles/nodejs
7,339
[ "no_license" ]
[ { "path": "roles/nodejs/tasks/setup-Debian.yml", "content": "---\n- name: Ensure dependencies are present.\n apt:\n name:\n - apt-transport-https\n - gnupg2\n state: present\n\n- name: Add Nodesource apt key.\n apt_key:\n url: https://keyserver.ubuntu.com/pks/lookup?op=get&fingerprint=o...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 968, "all_permissive": false }
ansible_role
halbo5/ansible-bootstrap-css
2dbecaca62567bba2c3285c42f8b1d2d3c9a39e5
0
roles/remove
7,339
[ "no_license" ]
[ { "path": "roles/remove/tasks/main.yml", "content": "---\n- name: remove directory for bootstrap\n file:\n path: \"{{ bootstrap_directory }}\"\n state: absent\n- debug:\n msg: \"You choose {{ removenode }}\"\n\n- import_tasks: setup-RedHat.yml\n when: ansible_os_family == 'RedHat' and \"{{ remove...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1099, "all_permissive": false }
ansible_role
brisho/jenkins-ansible
4dd16735c08ba79e0e5652bce0e31ff61e685d81
1
roles/openldap
7,339
[ "no_license" ]
[ { "path": "roles/openldap/handlers/main.yml", "content": "---\n\n- name: Restart slapd\n action: service\n name=slapd\n state=restarted\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 }, { "path": "roles/openldap/tasks/main.yml", "content": "-...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 9838, "all_permissive": false }
ansible_role
changhyuni/ansible-2-tier-architecture
4c4cb4edba10b8d351779ea574e44fa106f96508
1
roles/apache
7,339
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yaml", "content": "---\n- name: Install nfs-utils\n yum:\n name: nfs-utils\n state: latest\n\n\n- name: Install httpd\n yum: \n name: httpd \n state: latest\n\n- name: Copy configuration\n template:\n src: apache.conf.j2\n dest: /etc/httpd/conf/httpd.c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1502, "all_permissive": false }
ansible_role
changhyuni/ansible-2-tier-architecture
4c4cb4edba10b8d351779ea574e44fa106f96508
1
roles/common
7,339
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yaml", "content": "- block:\n - name: epel-release 최신버전을 설치합니다.\n yum: \n name: epel-release \n state: latest\n - name: seboolean 사용을 위한 libsemanage-python 설치합니다. \n yum: \n name: libsemanage-python \n state: latest\n when: ansible_distribution...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 259, "all_permissive": false }
ansible_role
changhyuni/ansible-2-tier-architecture
4c4cb4edba10b8d351779ea574e44fa106f96508
1
roles/haproxy
7,339
[ "no_license" ]
[ { "path": "roles/haproxy/vars/main.yaml", "content": "haproxy:\n frontend:\n port: 80\n backend:\n name: wordpress\n balance_type: roundrobin\n wordpress1:\n port: 80\n wordpress2:\n port: 80", "license_type": "no_license", "detected_licenses": [], "size_bytes": 155 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2803, "all_permissive": false }
ansible_role
changhyuni/ansible-2-tier-architecture
4c4cb4edba10b8d351779ea574e44fa106f96508
1
roles/mariadb
7,339
[ "no_license" ]
[ { "path": "roles/mariadb/vars/main.yaml", "content": "mariadb:\n repo:\n baseurl: http://mirror.yongbok.net/mariadb/yum/10.5/centos7-amd64\n gpgkey: http://mirror.yongbok.net/mariadb/yum/RPM-GPG-KEY-MariaDB \n wp:\n name: wordpress_db\n user: admin\n pwd: <PASSWORD>.\n priv: wordpress_db...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2147, "all_permissive": false }
ansible_role
changhyuni/ansible-2-tier-architecture
4c4cb4edba10b8d351779ea574e44fa106f96508
1
roles/nfs
7,339
[ "no_license" ]
[ { "path": "roles/nfs/vars/main.yaml", "content": "---\nfirewall_nfs_lists:\n - nfs\n - rpc-bind\n - mountd", "license_type": "no_license", "detected_licenses": [], "size_bytes": 55 }, { "path": "roles/nfs/templates/exports.j2", "content": "{{ nfs['exports']['directory'] }} {{ nfs[...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1546, "all_permissive": false }
ansible_role
belowtheline/site_2014
463a9002d0b39b10c1750b1ff2ae30d5be44eb89
29
ansible/roles/common
7,339
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: create btl user\n user: name=btl shell=/bin/zsh state=present\n\n- name: ensure btl profile is present\n copy: src=profile dest=/home/btl/.profile\n- name: ensure btl zshrc is present\n copy: src=zshrc dest=/home/btl/.zshrc\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2289, "all_permissive": false }
ansible_role
belowtheline/site_2014
463a9002d0b39b10c1750b1ff2ae30d5be44eb89
29
ansible/roles/frontend
7,339
[ "no_license" ]
[ { "path": "ansible/roles/frontend/files/gunicorn-pdf.sh", "content": "#!/bin/bash\nset -e\nexport ROLLBAR_TOKEN=<PASSWORD>\nLOGFILE=/home/btl/logs/pdf.log\nLOGDIR=$(dirname $LOGFILE)\nNUM_WORKERS=2\nBIND=unix:/home/btl/run/pdf.sock\n#BIND=0.0.0.0:8000\n# user/group to run as\nUSER=btl\nGROUP=btl\ncd /home/b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 9198, "all_permissive": false }
ansible_role
belowtheline/site_2014
463a9002d0b39b10c1750b1ff2ae30d5be44eb89
29
ansible/roles/postgis
7,339
[ "no_license" ]
[ { "path": "ansible/roles/postgis/tasks/main.yml", "content": "---\n- name: ensure postgresql is at latest version\n apt: pkg=postgresql-9.1 state=latest\n- name: ensure postgresql is running\n service: name=postgresql state=started\n\n- name: ensure postgis PPA is present\n apt_repository: repo=\"ppa:ubu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 596, "all_permissive": false }
ansible_role
belowtheline/site_2014
463a9002d0b39b10c1750b1ff2ae30d5be44eb89
29
ansible/roles/redis
7,339
[ "no_license" ]
[ { "path": "ansible/roles/redis/tasks/main.yml", "content": "---\n- name: ensure redis is at the latest version\n apt: pkg=redis-server state=latest\n- name: ensure redis is running\n service: name=redis-server state=started\n\n- name: install redis module for backup script\n pip: name=redis state=present...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 691, "all_permissive": false }
ansible_role
atugade/aws-exercise
6ac311e371a4b4271e79985e487fec27dc0e436d
0
roles/hello
7,339
[ "no_license" ]
[ { "path": "roles/hello/tasks/main.yml", "content": "---\n- name: Install application deps\n yum:\n pkg:\n - httpd\n - mod_wsgi\n - mod_wsgi-python26\n - mod_wsgi-python27\n state: present\n notify: restart httpd\n\n- name: Install Flask\n pip: name=Flask\n\n- file:\n path: /var/www/f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1274, "all_permissive": false }
ansible_role
mbahnaf/mini-project-final
d41c7c5063b7fe99d9df7c2ccae253d0b9266dfb
1
roles/common
7,339
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yaml", "content": "---\n- name: Install common packages\n package:\n name: \"{{ item }}\"\n state: present\n loop:\n - yum-utils\n - git\n \n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 129, "all_permissive": false }
ansible_role
mbahnaf/mini-project-final
d41c7c5063b7fe99d9df7c2ccae253d0b9266dfb
1
roles/docker
7,339
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yaml", "content": "---\n- name: Install Docker dependencies\n package:\n name: \"{{ item }}\"\n state: present\n loop:\n - yum-utils\n - device-mapper-persistent-data\n - lvm2\n\n- name: Add Docker repository\n yum_repository:\n name: docker-ce-stable\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 621, "all_permissive": false }
ansible_role
attawayinc/my_aws_project
d5afaf134968025796ccb091c069704e244fdfaa
1
roles/ec2_instances_dep
7,339
[ "no_license" ]
[ { "path": "roles/ec2_instances_dep/defaults/main.yml", "content": "---\n# defaults file for ec2_instances_dep\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 42 }, { "path": "roles/ec2_instances_dep/my_ec2_infra.tf", "content": "## file ~/my_aws_project/roles...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 1836, "all_permissive": false }
ansible_role
scmlearningcentre/ansible
f02d5efaaaa95bbef76d1da1afe0a37e50c97240
1
buildsetup/roles/ec2
7,339
[ "no_license" ]
[ { "path": "buildsetup/roles/ec2/templates/hosts.j2", "content": "[demo]\nbuildmachine ansible_host=\"{{ item.private_ip }}\" ansible_user=ec2-user ansible_ssh_private_key_file=/etc/ansible/wezva.pem\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 }, { "path":...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1233, "all_permissive": false }
ansible_role
scmlearningcentre/ansible
f02d5efaaaa95bbef76d1da1afe0a37e50c97240
1
buildsetup/roles/maven
7,339
[ "no_license" ]
[ { "path": "buildsetup/roles/maven/tasks/main.yml", "content": " - name : Install JDK 1.8\n yum: name=java-1.8.0-openjdk state=present\n - name: Install Git\n yum: name=git state=present\n - name: Check & create downloads dir\n file:\n path: '{{ maven_home_parent_directory }}'\n state: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1732, "all_permissive": false }
ansible_role
scmlearningcentre/ansible
f02d5efaaaa95bbef76d1da1afe0a37e50c97240
1
buildsetup/roles/s3
7,339
[ "no_license" ]
[ { "path": "buildsetup/roles/s3/tasks/main.yml", "content": " - name: Install python-pip library # prerequisite for ubuntu machines #\n apt: name='{{item}}'\n with_items:\n - python-pip\n - python-dev\n - name: Install python-boto library\n pip: name=boto\n - name: Create S3 bucket\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 405, "all_permissive": false }
ansible_role
scmlearningcentre/ansible
f02d5efaaaa95bbef76d1da1afe0a37e50c97240
1
lamp/roles/db
7,339
[ "no_license" ]
[ { "path": "lamp/roles/db/tasks/main.yml", "content": "---\n# This playbook will install mysql and create db user and give permissions.\n\n- name: Install Mysql package\n yum: name={{ item }} state=installed\n with_items:\n # - mysql-server\n - mariadb-server\n - MySQL-python\n\n- name: Create...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1094, "all_permissive": false }
ansible_role
scmlearningcentre/ansible
f02d5efaaaa95bbef76d1da1afe0a37e50c97240
1
lamp/roles/web
7,339
[ "no_license" ]
[ { "path": "lamp/roles/web/tasks/main.yml", "content": "- name: Install http and php etc\n yum: name={{ item }} state=present\n with_items:\n - httpd\n - php\n - php-mysql\n - git\n \n- name: http service state\n service: name=httpd state=started enabled=yes\n \n #- name: Copy the code from re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 702, "all_permissive": false }
ansible_role
arthurpos/dst-projet-03
4b2dc22a381d20e52550473aad98f009f62cd52a
0
03-ansible/roles/icwebapp_role
7,338
[ "no_license" ]
[ { "path": "03-ansible/roles/icwebapp_role/tasks/main.yml", "content": "---\n# tasks file for icwebapp_role\n- name: generate compose file icwebapp\n template:\n src: \"icwebapp-compose.yaml.j2\"\n dest: \"/home/{{ ansible_user }}/icwebapp-compose.yaml\"\n mode: \"0555\"\n tags: start\n\n- name: s...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1072, "all_permissive": false }
ansible_role
arthurpos/dst-projet-03
4b2dc22a381d20e52550473aad98f009f62cd52a
0
03-ansible/roles/odoo_role
7,338
[ "no_license" ]
[ { "path": "03-ansible/roles/odoo_role/templates/odoo-compose.yaml.j2", "content": "services:\n {{ odoo_name }}:\n container_name: {{ odoo_name }}\n image: {{ odoo_image }}\n depends_on:\n - {{ db_name }}\n ports:\n - \"{{ odoo_host_port }}:8069\"\n volumes:\n - {{ odoo_web_vol...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1610, "all_permissive": false }
ansible_role
arthurpos/dst-projet-03
4b2dc22a381d20e52550473aad98f009f62cd52a
0
03-ansible/roles/pgadmin_role
7,338
[ "no_license" ]
[ { "path": "03-ansible/roles/pgadmin_role/tasks/main.yml", "content": "---\n# tasks file for pgadmin_role\n- name: generate compose file pgadmin\n template:\n src: \"pgadmin-compose.yaml.j2\"\n dest: \"/home/{{ ansible_user }}/pgadmin-compose.yaml\"\n mode: \"0555\"\n tags: start\n\n- name: start ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 988, "all_permissive": false }
ansible_role
balkonsky/asterisk_16_deploy
45a49b75b6edee44bd7c2f20848aed1ac48a7a0c
0
roles/tls_asterisk
7,338
[ "no_license" ]
[ { "path": "roles/tls_asterisk/tasks/main.yml", "content": "---\n- name: 1.Install EPEL repo.\n yum:\n name: epel-release\n state: present\n\n\n- name: 2.Install asterisk pre-requisites via yum\n yum: \"pkg={{item}} state=installed\"\n with_items:\n - kernel-headers\n - gcc\n - gcc-c++\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 7330, "all_permissive": false }
ansible_role
santhoshkumar1122/ansible
0a67ccfae41baa36791f962554de4f17bd83b0d9
0
roles/installapache
7,338
[ "no_license" ]
[ { "path": "roles/installapache/tasks/ubuntu.yml", "content": "---\n- name: Install Apache using apt\n ansible.builtin.apt:\n name: apache2\n state: latest\n- name: Start the Apache service\n ansible.builtin.service:\n name: apache2\n state: started", "license_type": "no_license", "...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 578, "all_permissive": false }
ansible_role
ronelcoe/elk-ansible-playbook
cc60315d4a89bc1bd1e37b23ef94ebb4375c6454
0
roles/elasticsearch
7,338
[ "no_license" ]
[ { "path": "roles/elasticsearch/templates/elasticsearch.yml.j2", "content": "cluster.name: {{elk_cluster_name}}\r\n\r\nnode.name: es1\r\nnetwork.host: _local_\r\nxpack.security.transport.ssl.enabled: true\r\n\r\n# minimum_master_nodes need to be explicitly set when bound on a public IP\r\n# set to 1 to allow...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2616, "all_permissive": false }
ansible_role
ronelcoe/elk-ansible-playbook
cc60315d4a89bc1bd1e37b23ef94ebb4375c6454
0
roles/kibana
7,338
[ "no_license" ]
[ { "path": "roles/kibana/tasks/main.yml", "content": "---\n# tasks file for kibana\n- name: Create directory\n file:\n path: \"{{item}}\"\n mode: 0750\n state: directory\n owner: \"{{elk_app_user}}\"\n group: \"{{elk_group}}\"\n become: yes\n with_items:\n - \"{{elk_app_dir}}\"\n tags: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1630, "all_permissive": false }
ansible_role
bmsilva/fbigdata
dc28fb64374e812186a610af9cacef7d7f42994b
0
fdevops/roles/aws-ec2-instance
7,338
[ "no_license" ]
[ { "path": "fdevops/roles/aws-ec2-instance/tasks/main.yml", "content": "---\n- name: Create an EC2 instance\n local_action:\n module: ec2\n region: \"{{ aws_region }}\"\n zone: \"{{ aws_zone }}\"\n key_name: \"{{ key_name }}\"\n group_id: \n - sg-6fddc60a\n - sg-d8ddc6bd\n - sg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 704, "all_permissive": false }
ansible_role
bmsilva/fbigdata
dc28fb64374e812186a610af9cacef7d7f42994b
0
fdevops/roles/srv-cdh-apt
7,338
[ "no_license" ]
[ { "path": "fdevops/roles/srv-cdh-apt/tasks/main.yml", "content": "---\n- name: Setup cloudera director repo key\n apt_key:\n url: http://archive.cloudera.com/director/ubuntu/trusty/amd64/director/archive.key\n state: present\n become: yes\n tags:\n - apt\n\n- name: Setup cloudera director repo\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1109, "all_permissive": false }
ansible_role
bmsilva/fbigdata
dc28fb64374e812186a610af9cacef7d7f42994b
0
fdevops/roles/srv-cdh-setup
7,338
[ "no_license" ]
[ { "path": "fdevops/roles/srv-cdh-setup/tasks/main.yml", "content": "---\n- name: Restart Cloudera Director Server\n systemd:\n name: cloudera-director-server\n state: restarted\n daemon_reload: yes\n become: yes\n tags:\n - deploy\n", "license_type": "no_license", "detected_licenses":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 170, "all_permissive": false }
ansible_role
bmsilva/fbigdata
dc28fb64374e812186a610af9cacef7d7f42994b
0
fdevops/roles/srv-hbase-setup
7,338
[ "no_license" ]
[ { "path": "fdevops/roles/srv-hbase-setup/files/clickstream_hbase.py", "content": "import datetime\nimport sys\n\nimport happybase\n\n\ndef main(host):\n conn = happybase.Connection(host=host)\n\n conn.create_table(\n 'clickstream',\n {\n 'sys': dict(),\n 'data': dic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 515, "all_permissive": false }
ansible_role
bmsilva/fbigdata
dc28fb64374e812186a610af9cacef7d7f42994b
0
fdevops/roles/srv-hbase-yum
7,338
[ "no_license" ]
[ { "path": "fdevops/roles/srv-hbase-yum/tasks/main.yml", "content": "---\n- name: Yum Update\n become: yes\n yum:\n name: \"*\"\n state: latest\n\n- name: Yum required packages\n become: yes\n yum:\n name: \"{{ item }}\"\n state: present\n with_items:\n - git\n - \"@Development Tools\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 316, "all_permissive": false }
ansible_role
bmsilva/fbigdata
dc28fb64374e812186a610af9cacef7d7f42994b
0
fdevops/roles/srv-log-apt
7,338
[ "no_license" ]
[ { "path": "fdevops/roles/srv-log-apt/tasks/main.yml", "content": "---\n- name: Setup logstash repo key\n apt_key:\n url: https://artifacts.elastic.co/GPG-KEY-elasticsearch\n state: present\n become: yes\n tags:\n - apt\n\n- name: Setup logstash repo\n apt_repository:\n repo: \"deb https://ar...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 864, "all_permissive": false }
ansible_role
bmsilva/fbigdata
dc28fb64374e812186a610af9cacef7d7f42994b
0
fdevops/roles/srv-log-setup
7,338
[ "no_license" ]
[ { "path": "fdevops/roles/srv-log-setup/tasks/main.yml", "content": "---\n- name: Copy ctlogs\n unarchive:\n src: files/ctlogs.tgz\n dest: \"/home/{{ remote_user }}/\"\n creates: \"/home/{{ remote_user }}/ctlogs-.1438663216674\"\n tags:\n - srv-log-setup\n\n- name: Copy gen_logs.py\n template:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1610, "all_permissive": false }
ansible_role
bmsilva/fbigdata
dc28fb64374e812186a610af9cacef7d7f42994b
0
fdevops/roles/srv-pyenv
7,338
[ "no_license" ]
[ { "path": "fdevops/roles/srv-pyenv/tasks/main.yml", "content": "---\n- name: Install pyenv\n git:\n repo: \"https://github.com/yyuu/pyenv.git\"\n dest: \"/home/{{ remote_user }}/.pyenv\"\n version: master\n tags:\n - srv-pyenv\n\n- name: Set bash_aliases\n template:\n src: ../files/bash_al...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 728, "all_permissive": false }
ansible_role
ebobant/ansible_tutorial
7e8f1992cbb54615cf4884f420500e88a3bc512e
0
roles/database
7,338
[ "no_license" ]
[ { "path": "roles/database/tasks/main.yaml", "content": "- name: Install mariadb on centos\n yum:\n name: mariadb\n state: latest\n when: ansible_distribution == \"CentOS\"\n tags: mariadb_centos\n\n- name: Install mariadb on Ubuntu\n yum:\n name: mariadb-server\n state: latest\n when: ansib...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 290, "all_permissive": false }
ansible_role
ebobant/ansible_tutorial
7e8f1992cbb54615cf4884f420500e88a3bc512e
0
roles/site
7,338
[ "no_license" ]
[ { "path": "roles/site/tasks/main.yaml", "content": " - name: create user\n user:\n name: ebobant\n group: root\n tags: always\n\n - name: add ssh key for ebobant\n authorized_key:\n user: ebobant\n key: \"ssh-rsa <KEY>\"\n\n - name: add sudoers file for eboboant\n copy:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 650, "all_permissive": false }
ansible_role
hrtarposhyan/epam-training-ansible
4ceb987f703f25ed716613e2109a0c9216aeed52
0
Homework2/roles/mysql
7,338
[ "no_license" ]
[ { "path": "Homework2/roles/mysql/tasks/main.yml", "content": "---\n# tasks file for mysql\n- name: 'Update apt repo and cache'\n apt: update_cache=yes force_apt_get=yes cache_valid_time=3600\n become: true\n- name: 'InstalԼ mysql'\n apt:\n name:\n - 'mysql-server'\n state: 'present'\n updat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1092, "all_permissive": false }
ansible_role
hrtarposhyan/epam-training-ansible
4ceb987f703f25ed716613e2109a0c9216aeed52
0
Homework2/roles/nginx
7,338
[ "no_license" ]
[ { "path": "Homework2/roles/nginx/templates/nginx.conf", "content": "server {\r\n listen 80;\r\n listen [::]:80;\r\n\r\n root /var/www/wordpress;\r\n\r\n index index.php;\r\n\r\n server_name 192.168.0.13;\r\n\r\n location / {\r\n try_files $uri $uri/ =404;...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 751, "all_permissive": false }
ansible_role
hrtarposhyan/epam-training-ansible
4ceb987f703f25ed716613e2109a0c9216aeed52
0
Homework2/roles/wordpress
7,338
[ "no_license" ]
[ { "path": "Homework2/roles/wordpress/vars/main.yml", "content": "---\n# vars file for wordpress\nwp_db_name: wordpress_db\nwp_db_user_name: wordpress_user\nwp_db_user_password: <PASSWORD>", "license_type": "no_license", "detected_licenses": [], "size_bytes": 118 }, { "path": "Homework2/r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 739, "all_permissive": false }
ansible_role
Vikas-Prince/Ansible_AWS_Automation
9fd9f6b6fcc4bb7e08a32996f1a7f36c54ed3c05
1
roles/haproxy_configuration
7,338
[ "no_license" ]
[ { "path": "roles/haproxy_configuration/tasks/main.yml", "content": "- name: \"Install HAproxy in bastion host\"\n package:\n name: haproxy\n state: present\n\n- name: \"Start HAproxy Service\"\n service:\n name: haproxy\n state: started\n enabled: yes\n\n- name: \"Copy HAproxy configuration...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 351, "all_permissive": false }
ansible_role
Vikas-Prince/Ansible_AWS_Automation
9fd9f6b6fcc4bb7e08a32996f1a7f36c54ed3c05
1
roles/instance_creation
7,338
[ "no_license" ]
[ { "path": "roles/instance_creation/tasks/main.yml", "content": "- name: \"Install Pip Package\"\n package:\n name: python3-pip\n state: present\n\n- name: \"Install boto3 library\"\n pip:\n name: boto3\n\n- name: \"Create a Jump Server\"\n community.aws.ec2_instance:\n aws_access_key: \"{{ ac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2309, "all_permissive": false }
ansible_role
Vikas-Prince/Ansible_AWS_Automation
9fd9f6b6fcc4bb7e08a32996f1a7f36c54ed3c05
1
roles/webserver_configuration
7,338
[ "no_license" ]
[ { "path": "roles/webserver_configuration/handlers/main.yml", "content": "- name: \"restart firewalld\"\n command: firewall-cmd --reload\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 61 }, { "path": "roles/webserver_configuration/tasks/main.yml", "content":...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 702, "all_permissive": false }
ansible_role
esminc/frm-scala
4fca1a5274d1744cd7a3fbd5d991ebf7161a4c86
0
playbook/roles/common
7,338
[ "no_license" ]
[ { "path": "playbook/roles/common/tasks/main.yml", "content": "---\n- name: Edit sources.list\n lineinfile:\n dest: /etc/apt/sources.list\n line: deb http://http.debian.net/debian jessie-backports main\n\n- name: common install\n apt: name={{item}} \n with_items:\n - git\n - apt-transport-http...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 627, "all_permissive": false }
ansible_role
madlabber/LabBuilder
71c614211ec8b513bc2eaa6740025da6dac8c395
16
roles/build_from_iso_centos
7,338
[ "no_license" ]
[ { "path": "roles/build_from_iso_centos/tasks/pve_upload_install_iso.yml", "content": "- name: Check if ISO exists on host\n stat:\n path: \"{{ iso_path }}/{{install_iso}}\"\n delegate_to: temp_host\n register: install_iso_exists\n\n- name: Check if ISO exists locally\n stat:\n path: '{{ playbook_d...
{ "task_files": 12, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 14, "total_bytes": 33959, "all_permissive": false }
ansible_role
madlabber/LabBuilder
71c614211ec8b513bc2eaa6740025da6dac8c395
16
roles/build_from_iso_esx
7,338
[ "no_license" ]
[ { "path": "roles/build_from_iso_esx/tasks/vmw_upload_install_iso.yml", "content": "---\n- name: Check if install ISO exists\n community.vmware.vsphere_file:\n hostname: '{{ vcenter_address }}'\n username: '{{ vcenter_username }}'\n password: '{{ <PASSWORD> }}'\n validate_certs: no\n datacent...
{ "task_files": 13, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 14, "total_bytes": 18363, "all_permissive": false }
ansible_role
madlabber/LabBuilder
71c614211ec8b513bc2eaa6740025da6dac8c395
16
roles/build_from_iso_pfsense
7,338
[ "no_license" ]
[ { "path": "roles/build_from_iso_pfsense/tasks/pve_main.yml", "content": "- name: Add PVE Host to Dynamic Inventory\n add_host:\n hostname: temp_host\n group: \"temp_hosts\"\n ansible_host: '{{ pve_address }}'\n ansible_user: '{{ pve_username }}'\n ansible_password: '{{ <PASSWORD> }}'\n an...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 17684, "all_permissive": false }
ansible_role
madlabber/LabBuilder
71c614211ec8b513bc2eaa6740025da6dac8c395
16
roles/build_from_iso_proxmox
7,338
[ "no_license" ]
[ { "path": "roles/build_from_iso_proxmox/defaults/main.yml", "content": "install_iso: \"proxmox-ve_8.1-1.iso\"\ninstall_iso_url: \"https://enterprise.proxmox.com/iso/proxmox-ve_8.1-1.iso\"\n\n\nvm_address: \nvm_netmask_cidr: \nvm_gateway: \nvm_dns_server: \nvm_domain: \nvm_hostname: \"p...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1082, "all_permissive": false }
ansible_role
madlabber/LabBuilder
71c614211ec8b513bc2eaa6740025da6dac8c395
16
roles/build_from_iso_ubuntu
7,338
[ "no_license" ]
[ { "path": "roles/build_from_iso_ubuntu/tasks/main.yml", "content": "---\n# - name: Build CentOS Linux VMs\n# hosts: centos\n# gather_facts: false\n# vars_files:\n# - vars/main.yml\n# tasks:\n- name: Build Ubuntu VM - ansible\n include_tasks: build_vm.yml\n\n# - name: install awx - ansible\n# ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 16490, "all_permissive": false }
ansible_role
madlabber/LabBuilder
71c614211ec8b513bc2eaa6740025da6dac8c395
16
roles/build_from_iso_windows
7,338
[ "no_license" ]
[ { "path": "roles/build_from_iso_windows/tasks/pve_reboot_guest.yml", "content": "- name: Reboot Guest\n community.general.proxmox_kvm:\n api_user: '{{ pve_username }}@pam'\n api_password: '{{ <PASSWORD> }}'\n api_host: '{{ pve_address }}'\n state: restarted\n name: '{{ vm_name|replace(\"_\",...
{ "task_files": 16, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 18, "total_bytes": 59326, "all_permissive": false }
ansible_role
madlabber/LabBuilder
71c614211ec8b513bc2eaa6740025da6dac8c395
16
roles/build_from_iso_xcpng
7,338
[ "no_license" ]
[ { "path": "roles/build_from_iso_xcpng/tasks/build_vm.yml", "content": "---\n\n\n## Install ISO handler\n- name: Check if install ISO exists\n community.vmware.vsphere_file:\n hostname: '{{ vcenter_address }}'\n username: '{{ vcenter_username }}'\n password: '{{ <PASSWORD> }}'\n validate_certs: ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 14919, "all_permissive": false }