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
ubaranouski-pl/ansible-lamp
28f6746a7a01a9fa807fd63c72200921d925d493
0
roles/apt
6,196
[ "no_license" ]
[ { "path": "roles/apt/tasks/main.yaml", "content": "---\n- name: Update all packages\n ansible.builtin.apt:\n name: \"*\"\n state: latest\n become: yes\n\n- name: Install common purpose APT packages\n ansible.builtin.apt:\n name: \"{{ item.name }}\"\n state: \"{{ item.state|default('latest') }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 608, "all_permissive": false }
ansible_role
ubaranouski-pl/ansible-lamp
28f6746a7a01a9fa807fd63c72200921d925d493
0
roles/mariadb
6,196
[ "no_license" ]
[ { "path": "roles/mariadb/vars/main.yaml", "content": "---\nmysql_daemon: mysql\nmysql_python_package: \"python3-pymysql\"\nmysql_root_password: '123'\nmysql_user_home: \"{{ ansible_env.HOME}}\"\nlogin_unix_socket: \"{{ '/var/run/mysqld/mysqld.sock' if ansible_distribution == 'Debian' else '' | default(omit)...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2102, "all_permissive": false }
ansible_role
ubaranouski-pl/ansible-lamp
28f6746a7a01a9fa807fd63c72200921d925d493
0
roles/nginx
6,196
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yaml", "content": "---\n- name: Add SIGN key for Nginx repository\n apt_key:\n url: https://nginx.org/keys/nginx_signing.key\n state: present\n become: yes\n\n- name: Install Nginx\n ansible.builtin.apt:\n name: \"{{ item.name }}\"\n state: \"{{ item.state|de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1848, "all_permissive": false }
ansible_role
ubaranouski-pl/ansible-lamp
28f6746a7a01a9fa807fd63c72200921d925d493
0
roles/php
6,196
[ "no_license" ]
[ { "path": "roles/php/handlers/main.yaml", "content": "---\n- name: restart php-fpm\n ansible.builtin.service:\n name: php8.0-fpm\n state: restarted\n become: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 }, { "path": "roles/php/templates/common...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1656, "all_permissive": false }
ansible_role
ubaranouski-pl/ansible-lamp
28f6746a7a01a9fa807fd63c72200921d925d493
0
roles/symfony
6,196
[ "no_license" ]
[ { "path": "roles/symfony/tasks/main.yaml", "content": "---\n- name: Check symfony CLI is already installed\n ansible.builtin.shell:\n cmd: symfony -v > /dev/null 2>&1\n register: symfony_installed\n ignore_errors: yes\n\n- debug: var=symfony_installed\n\n- name: Install symfony\n ansible.builtin.shel...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 997, "all_permissive": false }
ansible_role
crhamiltonj/zabbix_deploy
8d389f4d5daeaefe4ff9dce92e0cb2e402be2e83
0
roles/agent-install
6,196
[ "no_license" ]
[ { "path": "roles/agent-install/defaults/main.yml", "content": "---\n# defaults file for roles/agent-install\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 44 }, { "path": "roles/agent-install/vars/main.yml", "content": "---\n# vars file for roles/agent-insta...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1407, "all_permissive": false }
ansible_role
apollux/ansible-vagrant-skeleton
9002402209741dc1d7499abd319992830a54ee30
0
playbook/roles/my-role
6,196
[ "no_license" ]
[ { "path": "playbook/roles/my-role/tasks/main.yml", "content": "---\n\n- name: apt-get update\n apt: update_cache=yes\n\n- name: Install deps\n apt: name=nginx state=present\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 108 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 108, "all_permissive": false }
ansible_role
PVyukov/epam
9f3de3e0eeb7a9a5032e363a7febfd0bf1cdb082
0
Ansible/task2/roles/create_script
6,196
[ "no_license" ]
[ { "path": "Ansible/task2/roles/create_script/tasks/main.yaml", "content": "---\r\n- name: Echo script_echo variable\r\n copy:\r\n dest: /home/ubuntu/script2.sh\r\n owner: ubuntu\r\n group: ubuntu\r\n mode: u+x\r\n content: |\r\n #!/bin/bash\r\n echo \"{{ script_echo }}\"\r\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 237, "all_permissive": false }
ansible_role
PVyukov/epam
9f3de3e0eeb7a9a5032e363a7febfd0bf1cdb082
0
Ansible/task2/roles/creation_files
6,196
[ "no_license" ]
[ { "path": "Ansible/task2/roles/creation_files/tasks/main.yaml", "content": "---\r\n- name: Crete a file according to var <host_name>\r\n template:\r\n src: 'test_template'\r\n dest: '/home/ubuntu/{{ host_name }}'\r\n\r\n# file:\r\n# path: /home/ubuntu/\"{{ test_template }}\"\r\n# mode: touch", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 210, "all_permissive": false }
ansible_role
PVyukov/epam
9f3de3e0eeb7a9a5032e363a7febfd0bf1cdb082
0
Ansible/task2/roles/update_packages
6,196
[ "no_license" ]
[ { "path": "Ansible/task2/roles/update_packages/handlers/main.yaml", "content": "---\n- name: Notify that aws is installed\n copy:\n dest: /home/ubuntu/awscli_installed\n content: |\n aws was installed at {{ ansible_date_time.iso8601 }}\n Greate job, fellow! \n \n- name: Run cloudwatch a...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 875, "all_permissive": false }
ansible_role
mcen1/sync_to_onprem_galaxy
6a89b1aaa52b46118a96fba98b0d1f5dd0342c07
0
roles/clone_collections_and_upload
6,196
[ "no_license" ]
[ { "path": "roles/clone_collections_and_upload/tasks/main.yml", "content": "- name: \"Download collections\"\n shell: \"ansible-galaxy collection download {{ item }}\"\n loop: \"{{ collections_list }}\"\n\n- name: \"Get list of tar files\"\n shell: \"cd collections/; ls *.tar.gz\"\n register: all_tars\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 762, "all_permissive": false }
ansible_role
mcen1/sync_to_onprem_galaxy
6a89b1aaa52b46118a96fba98b0d1f5dd0342c07
0
roles/clone_git_repo_and_upload
6,196
[ "no_license" ]
[ { "path": "roles/clone_git_repo_and_upload/tasks/main.yml", "content": "- name: \"Git checkout {{ repo_url }}\"\n ansible.builtin.git:\n repo: \"{{ repo_url }}\"\n dest: \"{{ repo_destination }}/{{ repo_name }}/\"\n version: \"{{ repo_version }}\"\n\n- name: \"Set tar name\"\n set_fact:\n asse...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 933, "all_permissive": false }
ansible_role
mcen1/sync_to_onprem_galaxy
6a89b1aaa52b46118a96fba98b0d1f5dd0342c07
0
roles/create_galaxy_namespace
6,196
[ "no_license" ]
[ { "path": "roles/create_galaxy_namespace/tasks/main.yml", "content": "- name: \"Add Automation Hub Namespace {{ galaxy_namespace_name }}\"\n infra.ah_configuration.ah_namespace:\n name: \"{{ galaxy_namespace_name }}\"\n new_name: \"\"\n description: \"\"\n company: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 475, "all_permissive": false }
ansible_role
mcen1/sync_to_onprem_galaxy
6a89b1aaa52b46118a96fba98b0d1f5dd0342c07
0
roles/download_and_upload
6,196
[ "no_license" ]
[ { "path": "roles/download_and_upload/tasks/main.yml", "content": "- name: \"Download from {{ tar_url }}\"\n ansible.builtin.get_url:\n url: \"{{ tar_url }}\"\n dest: \"downloaded/\"\n\n- name: Loop through and create namespaces\n include_role:\n name: \"create_galaxy_namespace\"\n vars:\n gal...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 546, "all_permissive": false }
ansible_role
mcen1/sync_to_onprem_galaxy
6a89b1aaa52b46118a96fba98b0d1f5dd0342c07
0
roles/repair_repos_and_upload
6,196
[ "no_license" ]
[ { "path": "roles/repair_repos_and_upload/tasks/main.yml", "content": "- name: \"Get list of tar files\"\n shell: \" /bin/rm repaired/{{ repo_tarball }}; \"\n ignore_errors: True\n- name: \"Compress directory repaired/{{ repo_directory }}/. into repaired/{{ repo_tarball }}\"\n community.general.archive:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 930, "all_permissive": false }
ansible_role
E7ernal/quizwhiz
a271d40922eaad682a76d7700beafc7a5df51fac
1
provisioning/roles/app
6,196
[ "no_license" ]
[ { "path": "provisioning/roles/app/handlers/main.yml", "content": "---\n\n- name: restart mysql\n service:\n name: mysql\n state: restarted\n become: yes\n\n- name: start supervisor\n service:\n name: supervisor\n state: started\n become: yes\n\n- name: reload supervisor\n command: superviso...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 17808, "all_permissive": false }
ansible_role
kaminchu/ansible_epgstation
0ebaefc44472c66e7b357f6660fe6cbd2da76082
0
roles/epgstation
6,196
[ "no_license" ]
[ { "path": "roles/epgstation/defaults/main.yml", "content": "---\nepgstation_port: 8888\nepgstation_mirakurun_path: \"http+unix://%2Fvar%2Frun%2Fmirakurun.sock/\"\nepgstation_user: user\nepgstation_password: <PASSWORD>\nepgstation_enable_vaapi: no\nuse_apt_ffmpeg: no\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 14072, "all_permissive": false }
ansible_role
kaminchu/ansible_epgstation
0ebaefc44472c66e7b357f6660fe6cbd2da76082
0
roles/tools
6,196
[ "no_license" ]
[ { "path": "roles/tools/tasks/main.yml", "content": "---\n- name: Install a list of packages\n apt:\n pkg:\n - build-essential\n - curl\n - git\n - vainfo\n - python-dev\n state: latest\n update_cache: yes\n\n- name: check node\n command: which node\n register: check_node\n ignore...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2389, "all_permissive": false }
ansible_role
xadlien/kubernetes-cluster
2dc04d88b58747901ca223ec23a85627d054ef00
0
ansible/playbooks/roles/k8s
6,196
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/k8s/templates/wg0-client.conf.j2", "content": "[Interface]\nAddress = {{ item.ip_address }}\nPrivateKey = {{ item.client_private_key }}\n\n[Peer]\nPublicKey = {{ server_public_key }}\nEndpoint = {{ inventory_hostname }}:51820\nAllowedIPs = {{ item.allowed_ips }}\nPersisten...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4242, "all_permissive": false }
ansible_role
PreethiRTUB/Model-Driven-Devops-Configuration
1324f2b41d1c9537a1ad6357a3579dfb14c599fb
1
roles/ansible-maven-master
6,236
[ "no_license" ]
[ { "path": "roles/ansible-maven-master/tasks/install-maven.yml", "content": "---\n# tasks file for apache-maven\n- name: Checking if Maven is already installed\n stat: \n path: '{{ maven_home_parent_directory }}/apache-maven-{{ maven_version }}'\n register: maven_installed\n\n- name: Downloading Maven B...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1213, "all_permissive": false }
ansible_role
PreethiRTUB/Model-Driven-Devops-Configuration
1324f2b41d1c9537a1ad6357a3579dfb14c599fb
1
roles/git
6,236
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "---\n - name: Install git\n apt:\n name: git\n state: present\n - name: Install curl\n apt:\n name: curl\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 142 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 142, "all_permissive": false }
ansible_role
rsthakur83/cloud
40a07ee892fd264ce463076ab63cd4b7b50768c2
0
Vagrant Wordpress/main/roles/db
6,236
[ "no_license" ]
[ { "path": "Vagrant Wordpress/main/roles/db/tasks/main.yml", "content": "---\n\n- name: Update the software package repository\n apt:\n update_cache: yes\n\n- name: Install MySQL\n apt: pkg={{ item }} state=installed\n with_items:\n - mysql-server\n - mysql-client\n - python-mysqldb\n\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 646, "all_permissive": false }
ansible_role
rsthakur83/cloud
40a07ee892fd264ce463076ab63cd4b7b50768c2
0
Vagrant Wordpress/main/roles/wordpress
6,236
[ "no_license" ]
[ { "path": "Vagrant Wordpress/main/roles/wordpress/tasks/main.yml", "content": "---\n\n- name: Update the software package repository\n apt:\n update_cache: yes\n\n\n- name: Install php & apache\n apt: pkg={{ item }} state=installed\n with_items:\n - php5\n - php5-mysql\n - apache2\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1360, "all_permissive": false }
ansible_role
jdaln/linux-server-management
798ef7bbea2b4aa8e302cfbd39533a0e8bd20095
0
roles/users_add
6,236
[ "no_license" ]
[ { "path": "roles/users_add/tasks/main.yml", "content": "- name: Create groups for users\n ansible.builtin.group:\n name: \"{{ item.username }}\"\n state: present\n loop: \"{{ users_add_userlist | default([]) }}\"\n\n- name: Create user accounts and force password change on first login\n ansible.bui...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2574, "all_permissive": false }
ansible_role
Abrar-2510/DEPI-1st-TASK
2421fc5ac72c591e4bb6fce1f108303130fe227b
0
roles/docker_install
6,236
[ "no_license" ]
[ { "path": "roles/docker_install/handlers/main.yml", "content": "---\n# handlers file for docker_install\n\n - name: Restart Docker service\n service:\n name: docker\n state: restarted\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 }, { "path"...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 405, "all_permissive": false }
ansible_role
Abrar-2510/DEPI-1st-TASK
2421fc5ac72c591e4bb6fce1f108303130fe227b
0
roles/flask_deploy
6,236
[ "no_license" ]
[ { "path": "roles/flask_deploy/defaults/main.yml", "content": "---\n# defaults file for flask_deploy\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/flask_deploy/tasks/main.yml", "content": "---\n# tasks file for flask_deploy\n- name: Pu...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 733, "all_permissive": false }
ansible_role
AfsmNGhr/devops-swarm-mode
c30cad0f76cdc37499427a730ad23134f3150615
2
ansible/roles/build
6,236
[ "no_license" ]
[ { "path": "ansible/roles/build/README.md", "content": "## The build role\n\nThis role have to build with secrets from ansible-vault.\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 76 }, { "path": "ansible/roles/build/tasks/main.yml", "content": "---\n\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 967, "all_permissive": false }
ansible_role
AfsmNGhr/devops-swarm-mode
c30cad0f76cdc37499427a730ad23134f3150615
2
ansible/roles/deploy
6,236
[ "no_license" ]
[ { "path": "ansible/roles/deploy/README.md", "content": "## The deploy role\n\nThis role have to deploy while stack on swarm host(s).\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 75 }, { "path": "ansible/roles/deploy/tasks/main.yml", "content": "---\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 750, "all_permissive": false }
ansible_role
ilchebedelovski/ansible-vagrant-laravel
8fa8aabeb95ab85b8a9f1f39d9e7cb7cdbb58bc7
0
roles/database
6,236
[ "no_license" ]
[ { "path": "roles/database/tasks/main.yml", "content": "---\n- name: 1a. Add APT GPG signing key\n apt_key: url=http://keyserver.ubuntu.com/pks/lookup?op=get&search=0xCBCB082A1BB943DB state=present\n\n#- name: 1b. Add APT repository\n# apt_repository: repo='deb http://ftp.osuosl.org/pub/mariadb/repo/10.0/u...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 806, "all_permissive": false }
ansible_role
ilchebedelovski/ansible-vagrant-laravel
8fa8aabeb95ab85b8a9f1f39d9e7cb7cdbb58bc7
0
roles/laravel
6,236
[ "no_license" ]
[ { "path": "roles/laravel/tasks/main.yml", "content": "- name: Downloading Composer\n shell: curl -sS https://getcomposer.org/installer | php\n\n- name: Setting up composer\n shell: sudo mv composer.phar /usr/local/bin/composer\n\n- name: Creating project\n command: chdir=/var/www/html composer create-pro...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 780, "all_permissive": false }
ansible_role
ilchebedelovski/ansible-vagrant-laravel
8fa8aabeb95ab85b8a9f1f39d9e7cb7cdbb58bc7
0
roles/php
6,236
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n- name: Add repository for PHP 7.0.\n apt_repository:\n repo: ppa:ondrej/php\n update_cache: yes\n\n- name: Update apt cache\n apt: update_cache=yes cache_valid_time=3600\n\n- name: Install php\n apt: name={{ item }} state=present\n with_items...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 456, "all_permissive": false }
ansible_role
ilchebedelovski/ansible-vagrant-laravel
8fa8aabeb95ab85b8a9f1f39d9e7cb7cdbb58bc7
0
roles/webserver
6,236
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "---\n- name: Install Apache\n apt:\n name: apache2\n update_cache: yes\n state: latest\n\n- name: Enable Apache rewrites\n apache2_module: \n name: rewrite\n state: present\n\n- name: Start Apache\n service:\n name: apache2\n st...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 409, "all_permissive": false }
ansible_role
chrisharper/ansible
b1d070bd423ac7e77e8ad62e9dc7c6db1c4057b9
0
roles/vmhost
6,236
[ "no_license" ]
[ { "path": "roles/vmhost/handlers/libvirt.yml", "content": "\n- name: qemu in input groups\n user:\n name: qemu\n append: yes\n groups: input\n listen: qemu_installed\n\n- name: default virt-net autostarts\n virt_net:\n name: default\n autostart: yes\n listen: virt_net_updated \n\n- name: ...
{ "task_files": 8, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 15, "total_bytes": 13405, "all_permissive": false }
ansible_role
linericyang/kubernetes-vagrant-ansible
49ddd522c05b3d8aa80908139fa2bbf61619000f
0
provisioning/roles/k8s-base
6,236
[ "permissive" ]
[ { "path": "provisioning/roles/k8s-base/tasks/main.yml", "content": "---\n- name: Ensure selinux-utils package\n apt:\n name: selinux-utils\n state: latest\n\n- name: Ensure SELinux disabled\n command: setenforce 0\n ignore_errors: yes\n\n- name: Remove Default Host Entry\n lineinfile:\n dest: /...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2209, "all_permissive": true }
ansible_role
linericyang/kubernetes-vagrant-ansible
49ddd522c05b3d8aa80908139fa2bbf61619000f
0
provisioning/roles/k8s-master
6,236
[ "permissive" ]
[ { "path": "provisioning/roles/k8s-master/tasks/main.yml", "content": "---\n- name: Kubeadm reset\n command: \"kubeadm reset\"\n tags:\n - k8s\n\n- name: Kubeadm init\n command: \"kubeadm init --token=<PASSWORD> --pod-network-cidr 10.244.0.0/16 --apiserver-advertise-address 192.168.33.11 --skip-preflig...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1444, "all_permissive": true }
ansible_role
linericyang/kubernetes-vagrant-ansible
49ddd522c05b3d8aa80908139fa2bbf61619000f
0
provisioning/roles/k8s-worker
6,236
[ "permissive" ]
[ { "path": "provisioning/roles/k8s-worker/tasks/main.yml", "content": "---\n- name: Kubeadm reset\n command: \"kubeadm reset\"\n tags:\n - k8s\n\n- name: Join Kubernetes Cluster\n command: \"kubeadm join --token=<PASSWORD> 192.168.33.11:6443\"\n tags:\n - k8s", "license_type": "permissive", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 185, "all_permissive": true }
ansible_role
camendezl/ocp-bkp
0f433f7bbf8e90426d9b19c0a519d1e76b101ad4
0
roles/bkp_etcd
6,236
[ "no_license" ]
[ { "path": "roles/bkp_etcd/defaults/main.yml", "content": "---\n# defaults file for roles/bkp_etcd", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/bkp_etcd/tasks/main.yml", "content": "---\n# tasks file for roles/bkp_etcd\n - name: Comp...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1956, "all_permissive": false }
ansible_role
camendezl/ocp-bkp
0f433f7bbf8e90426d9b19c0a519d1e76b101ad4
0
roles/bkp_master_nodes
6,236
[ "no_license" ]
[ { "path": "roles/bkp_master_nodes/tasks/main.yml", "content": "---\n# tasks file for roles/bkp_master_nodes\n - name: Compress directories\n archive:\n path: \"{{ item.dir }}\"\n dest: \"{{ item.bkpfile }}\"\n loop: \"{{ dirs }}\"\n - name: Download backups\n fetch:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1499, "all_permissive": false }
ansible_role
camendezl/ocp-bkp
0f433f7bbf8e90426d9b19c0a519d1e76b101ad4
0
roles/bkp_projects
6,236
[ "no_license" ]
[ { "path": "roles/bkp_projects/tasks/main.yml", "content": "---\n# tasks file for roles/bkp_projects\n- name: Take backup of OCP projects\n block:\n - name: Create project backup directory\n file:\n path: \"{{ item.dir }}\"\n state: directory\n mode: 0700\n loop: \"{{ dirs ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1826, "all_permissive": false }
ansible_role
camendezl/ocp-bkp
0f433f7bbf8e90426d9b19c0a519d1e76b101ad4
0
roles/bkp_registry_crt
6,236
[ "no_license" ]
[ { "path": "roles/bkp_registry_crt/defaults/main.yml", "content": "---\n# defaults file for roles/bkp_registry_crt", "license_type": "no_license", "detected_licenses": [], "size_bytes": 46 }, { "path": "roles/bkp_registry_crt/vars/main.yml", "content": "---\n# vars file for roles/bkp_...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 656, "all_permissive": false }
ansible_role
houtknots/tcr_gastles_2023
d2fe9e74a0f4bea66f98d9d3b0e7eff45f7fa737
0
roles/network
6,236
[ "no_license" ]
[ { "path": "roles/network/tasks/main.yml", "content": "---\n- name: Create private network\n os_network:\n auth:\n auth_url: \"{{ lookup('env', 'OS_AUTH_URL') }}\"\n username: \"{{ lookup('env', 'OS_USERNAME') }}\"\n password: \"{{ lookup('env', 'OS_PASSWORD') }}\"\n project_name: \"{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2466, "all_permissive": false }
ansible_role
houtknots/tcr_gastles_2023
d2fe9e74a0f4bea66f98d9d3b0e7eff45f7fa737
0
roles/private_key
6,236
[ "no_license" ]
[ { "path": "roles/private_key/tasks/main.yml", "content": "---\n- name: Check if private key exists\n stat:\n path: ~/.ssh/id_rsa\n register: private_key_status\n\n- name: Generate private key for OpenStack\n ansible.builtin.openssl_privatekey:\n path: ~/.ssh/id_rsa\n size: 4096\n type: RSA\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1065, "all_permissive": false }
ansible_role
houtknots/tcr_gastles_2023
d2fe9e74a0f4bea66f98d9d3b0e7eff45f7fa737
0
roles/server
6,236
[ "no_license" ]
[ { "path": "roles/server/tasks/main.yml", "content": "---\n- name: Create OpenStack servers\n os_server:\n auth:\n auth_url: \"{{ lookup('env', 'OS_AUTH_URL') }}\"\n username: \"{{ lookup('env', 'OS_USERNAME') }}\"\n password: \"{{ lookup('env', 'OS_PASSWORD') }}\"\n project_name: \"{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 983, "all_permissive": false }
ansible_role
houtknots/tcr_gastles_2023
d2fe9e74a0f4bea66f98d9d3b0e7eff45f7fa737
0
roles/webserver
6,236
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "---\n- name: Install Apache2\n apt:\n name: apache2\n state: present\n update_cache: yes\n\n- name: Install PHP8.1\n apt:\n name: php8.1\n state: present\n\n- name: Install PHP8.1 Apache module\n apt:\n name: libapache2-mod-php8.1\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 857, "all_permissive": false }
ansible_role
sfinx13/ansible-playbooks
689903a9366f05b502a144cb0068a86c22f2ae12
3
symfony-lemp_ubuntu20.04/playbooks/roles/application
6,236
[ "no_license" ]
[ { "path": "symfony-lemp_ubuntu20.04/playbooks/roles/application/templates/.env.j2", "content": "\n###> symfony/framework-bundle ###\nAPP_ENV={{ app_env }}\nAPP_SECRET={{ app_secret }}\n#TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16\n#TRUSTED_HOSTS='^(localhost|example\\.com)$'\n###< sy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2258, "all_permissive": false }
ansible_role
sfinx13/ansible-playbooks
689903a9366f05b502a144cb0068a86c22f2ae12
3
symfony-lemp_ubuntu20.04/playbooks/roles/check-http
6,236
[ "no_license" ]
[ { "path": "symfony-lemp_ubuntu20.04/playbooks/roles/check-http/tasks/main.yml", "content": "---\n\n- name: check that homepage returns a status 200 \n ansible.builtin.uri: \n url: http://{{ inventory_hostname }}:{{ item }}\n return_content: true\n with_items: \"{{ ports }}\"\n register: this\n fai...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 272, "all_permissive": false }
ansible_role
sfinx13/ansible-playbooks
689903a9366f05b502a144cb0068a86c22f2ae12
3
symfony-lemp_ubuntu20.04/playbooks/roles/composer
6,236
[ "no_license" ]
[ { "path": "symfony-lemp_ubuntu20.04/playbooks/roles/composer/tasks/main.yml", "content": "---\n\n- name: Download and install composer\n ansible.builtin.script: scripts/install_composer.sh\n\n- name: Move Composer globally\n ansible.builtin.command: mv composer.phar /usr/local/bin/composer\n changed_when...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 328, "all_permissive": false }
ansible_role
sfinx13/ansible-playbooks
689903a9366f05b502a144cb0068a86c22f2ae12
3
symfony-lemp_ubuntu20.04/playbooks/roles/mysql
6,236
[ "no_license" ]
[ { "path": "symfony-lemp_ubuntu20.04/playbooks/roles/mysql/vars/main.yml", "content": "---\r\n\r\nusername: jdoe\r\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 23 }, { "path": "symfony-lemp_ubuntu20.04/playbooks/roles/mysql/handlers/main.yml", "content": "-...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1640, "all_permissive": false }
ansible_role
sfinx13/ansible-playbooks
689903a9366f05b502a144cb0068a86c22f2ae12
3
symfony-lemp_ubuntu20.04/playbooks/roles/nginx
6,236
[ "no_license" ]
[ { "path": "symfony-lemp_ubuntu20.04/playbooks/roles/nginx/handlers/main.yml", "content": "---\r\n\r\n- name: \"nginx restart\"\r\n ansible.builtin.service:\r\n name: \"nginx\"\r\n state: \"restarted\"\r\n\r\n- name: \"nginx reload\"\r\n ansible.builtin.service:\r\n name: \"nginx\"\r\n stat...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1494, "all_permissive": false }
ansible_role
sfinx13/ansible-playbooks
689903a9366f05b502a144cb0068a86c22f2ae12
3
symfony-lemp_ubuntu20.04/playbooks/roles/node
6,236
[ "no_license" ]
[ { "path": "symfony-lemp_ubuntu20.04/playbooks/roles/node/tasks/main.yml", "content": "---\r\n\r\n- name: \"Add nodejs apt key\"\r\n ansible.builtin.apt_key:\r\n url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key\r\n state: present\r\n\r\n- name: \"Add nodejs 16.x ppa for apt repo\"\r\n ansibl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 434, "all_permissive": false }
ansible_role
sfinx13/ansible-playbooks
689903a9366f05b502a144cb0068a86c22f2ae12
3
symfony-lemp_ubuntu20.04/playbooks/roles/php
6,236
[ "no_license" ]
[ { "path": "symfony-lemp_ubuntu20.04/playbooks/roles/php/tasks/main.yml", "content": "---\r\n\r\n- name: \"The main PPA for supported PHP versions with many PECL extensions\"\r\n ansible.builtin.apt_repository:\r\n repo: \"ppa:ondrej/php\"\r\n\r\n- name: \"Update the repo\"\r\n ansible.builtin.package:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 3029, "all_permissive": false }
ansible_role
sfinx13/ansible-playbooks
689903a9366f05b502a144cb0068a86c22f2ae12
3
symfony-lemp_ubuntu20.04/playbooks/roles/setup
6,236
[ "no_license" ]
[ { "path": "symfony-lemp_ubuntu20.04/playbooks/roles/setup/tasks/main.yml", "content": "---\r\n\r\n- name: add SSH key for root\r\n ansible.builtin.lineinfile:\r\n path: ~/.ssh/authorized_keys\r\n create: true\r\n state: present\r\n line: \"{{ lookup('file', '~/.ssh/id_rsa.pub') }}\"\r\n mode...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2145, "all_permissive": false }
ansible_role
itgoldio/freeton-tonos-se-installer
8fc7a3500a3ee9d7859b81ebfcb9e0681f44a0b8
5
ansible/roles/prepare_configs_and_scripts
6,336
[ "no_license" ]
[ { "path": "ansible/roles/prepare_configs_and_scripts/tasks/main.yml", "content": "- name: Prepare install.sh script\n template:\n src: \"install.sh.j2\"\n dest: \"artifacts/install.sh\"\n\n- name: Copy configs\n copy:\n src: \"{{ item }}\"\n dest: \"artifacts/tonos-se_{{ tonos_se_github_releas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 7307, "all_permissive": false }
ansible_role
itgoldio/freeton-tonos-se-installer
8fc7a3500a3ee9d7859b81ebfcb9e0681f44a0b8
5
ansible/roles/system
6,336
[ "no_license" ]
[ { "path": "ansible/roles/system/tasks/dnf.yml", "content": "- name: Install epel-release package in centos\n dnf: \n name: \n - epel-release\n state: latest\n when: ansible_facts['distribution'] == \"CentOS\"\n\n- name: Install epel-release package in oracle\n dnf: \n name: \n - oracle...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 940, "all_permissive": false }
ansible_role
itgoldio/freeton-tonos-se-installer
8fc7a3500a3ee9d7859b81ebfcb9e0681f44a0b8
5
ansible/roles/tonos_se_build
6,336
[ "no_license" ]
[ { "path": "ansible/roles/tonos_se_build/tasks/apt.yml", "content": "- name: Install tonos-se compile dependencies\n apt:\n name:\n - git\n - libssl-dev\n - pkg-config\n - build-essential\n - autoconf\n - automake\n - m4\n - cmake\n - libtool\n - clang\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2200, "all_permissive": false }
ansible_role
openflighthpc/openflight-kubernetes-multinode
21c86730ee3175cd37bb5715bd4925c2a41c8e36
0
roles/hunter
6,336
[ "no_license" ]
[ { "path": "roles/hunter/tasks/main.yml", "content": "- name: Generic Hunter Tasks\n import_tasks: generic.yml\n\n- name: Login Node Hunter Tasks\n import_tasks: login.yml\n when: \"'master' in group_names\"\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
openflighthpc/openflight-kubernetes-multinode
21c86730ee3175cd37bb5715bd4925c2a41c8e36
0
roles/k8s
6,336
[ "no_license" ]
[ { "path": "roles/k8s/tasks/worker.yml", "content": "- name: Obtain Join Command \n copy:\n src: \"files/{{ cluster_name }}_kubernetes_join_command.sh\"\n dest: /tmp/kubernetes_join_command.sh\n mode: 0700\n tags:\n - update\n\n- name: Join the Worker Node to the cluster.\n command: bash /tmp/...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3357, "all_permissive": false }
ansible_role
openflighthpc/openflight-kubernetes-multinode
21c86730ee3175cd37bb5715bd4925c2a41c8e36
0
roles/nfs
6,336
[ "no_license" ]
[ { "path": "roles/nfs/tasks/main.yml", "content": "- name: NFS Server Configuration\n import_tasks: server.yml\n when: \"'master' in group_names\"\n\n- name: NFS Client Configuration\n import_tasks: client.yml\n when: \"'worker' in group_names\" \n\n- name: NFS Generic Configuration\n import_tasks: gene...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 254, "all_permissive": false }
ansible_role
openflighthpc/openflight-kubernetes-multinode
21c86730ee3175cd37bb5715bd4925c2a41c8e36
0
roles/remove
6,336
[ "no_license" ]
[ { "path": "roles/remove/tasks/main.yml", "content": "- name: K8s Removal\n import_tasks: k8s.yml\n tags:\n - never\n - remove\n\n- name: Hunter Removal\n import_tasks: hunter.yml\n tags:\n - never\n - remove\n", "license_type": "no_license", "detected_licenses": [], "size_bytes":...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 452, "all_permissive": false }
ansible_role
Pat-TIG/lynx
107aca9b6e9baadfdb228e402fdf4990e5727be7
0
roles/aws-loadbalancer-controller
6,336
[ "no_license" ]
[ { "path": "roles/aws-loadbalancer-controller/tasks/create.yaml", "content": "- name: Apply AWS Loadbalancer Controller\n kubernetes.core.k8s:\n state: present\n definition: \"{{ lookup('file', item) }}\"\n with_fileglob: '*.yaml'\n\n- name: Apply AWS LoadBalancer Controller\n kubernetes.core.k8s:\n...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1502, "all_permissive": false }
ansible_role
Pat-TIG/lynx
107aca9b6e9baadfdb228e402fdf4990e5727be7
0
roles/awx
6,336
[ "no_license" ]
[ { "path": "roles/awx/templates/postgres_secret.yaml.j2", "content": "---\napiVersion: v1\nkind: Secret\nmetadata:\n name: awx-postgres-configuration\n namespace: awx\nstringData:\n host: {{ pg_hostname }}\n port: \"5432\"\n database: lynx\n username: lynxuser\n password: {{ pg_password }}\ntype: Opaq...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2680, "all_permissive": false }
ansible_role
Pat-TIG/lynx
107aca9b6e9baadfdb228e402fdf4990e5727be7
0
roles/awx-configure
6,336
[ "no_license" ]
[ { "path": "roles/awx-configure/tasks/main.yaml", "content": "---\n- name: Wait for Lynx Ingress\n uri:\n url: \"https://{{ cluster_name }}.{{ dns_domain }}/api/v2/ping/\"\n method: GET\n register: result\n until: result.status == 200\n retries: 100\n delay: 15\n\n- name: Set basic AWX settings\n ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 11851, "all_permissive": false }
ansible_role
Pat-TIG/lynx
107aca9b6e9baadfdb228e402fdf4990e5727be7
0
roles/bastion
6,336
[ "no_license" ]
[ { "path": "roles/bastion/tasks/main.yaml", "content": "---\n- name: Add hashicorp gpg key\n ansible.builtin.apt_key:\n url: https://apt.releases.hashicorp.com/gpg\n state: present\n become: yes\n\n- name: Add hashicorp repository into sources list\n ansible.builtin.apt_repository:\n repo: deb ht...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 527, "all_permissive": false }
ansible_role
Pat-TIG/lynx
107aca9b6e9baadfdb228e402fdf4990e5727be7
0
roles/cert-manager
6,336
[ "no_license" ]
[ { "path": "roles/cert-manager/tasks/main.yaml", "content": "---\n#- name: Create namespace for cert-manager\n# kubernetes.core.k8s:\n# state: present\n# definition:\n# apiVersion: v1\n# kind: Namespace\n# metadata:\n# name: awx\n\n- name: Apply cert-manger\n kubernetes.core.k8s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 356, "all_permissive": false }
ansible_role
Pat-TIG/lynx
107aca9b6e9baadfdb228e402fdf4990e5727be7
0
roles/create_terraform_db
6,336
[ "no_license" ]
[ { "path": "roles/create_terraform_db/tasks/main.yaml", "content": "---\n- name: Create postgres DB\n community.postgresql.postgresql_db:\n login_host: \"{{ pg_hostname }}\"\n login_user: \"lynxuser\"\n login_password: \"{{ <PASSWORD> }}\"\n name: terraform\n\n", "license_type": "no_license...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 193, "all_permissive": false }
ansible_role
Pat-TIG/lynx
107aca9b6e9baadfdb228e402fdf4990e5727be7
0
roles/external-dns
6,336
[ "no_license" ]
[ { "path": "roles/external-dns/templates/external-dns.yaml.j2", "content": "---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: external-dns\n namespace: external-dns\nspec:\n strategy:\n type: Recreate\n selector:\n matchLabels:\n app: external-dns\n template:\n metadata:\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1591, "all_permissive": false }
ansible_role
Pat-TIG/lynx
107aca9b6e9baadfdb228e402fdf4990e5727be7
0
roles/letsencrypt
6,336
[ "no_license" ]
[ { "path": "roles/letsencrypt/defaults/main.yaml", "content": "acme_directory: https://acme-staging-v02.api.letsencrypt.org/directory\nacme_email: <EMAIL>\ncommon_name: '*.tigera.ca'\nacm_cert_name: 'wildcard.tigera.ca'\nroute53_zone: 'tigera.ca'\n", "license_type": "no_license", "detected_licenses":...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1966, "all_permissive": false }
ansible_role
leoviana00/lab-k8s-prep-cka
85fb131e3df3a89f9574a1ff731e2c68a03195e3
3
setup/setup-k8s-kubeadm/src/roles/configure_k8s_master
6,336
[ "no_license" ]
[ { "path": "setup/setup-k8s-kubeadm/src/roles/configure_k8s_master/tasks/main.yml", "content": "# --------------------------------------------------\n# O Kubelet não será iniciado se o sistema tiver a troca ativada, então estamos desabilitando a troca usando o código abaixo.\n# ------------------------------...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3300, "all_permissive": false }
ansible_role
leoviana00/lab-k8s-prep-cka
85fb131e3df3a89f9574a1ff731e2c68a03195e3
3
setup/setup-k8s-kubeadm/src/roles/configure_k8s_worker
6,336
[ "no_license" ]
[ { "path": "setup/setup-k8s-kubeadm/src/roles/configure_k8s_worker/tasks/main.yml", "content": "# --------------------------------------------------\n# O Kubelet não será iniciado se o sistema tiver a troca ativada, então estamos desabilitando a troca usando o código abaixo.\n# ------------------------------...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1751, "all_permissive": false }
ansible_role
leoviana00/lab-k8s-prep-cka
85fb131e3df3a89f9574a1ff731e2c68a03195e3
3
setup/setup-k8s-kubeadm/src/roles/configure_pre_requisitos
6,336
[ "no_license" ]
[ { "path": "setup/setup-k8s-kubeadm/src/roles/configure_pre_requisitos/vars/main.yml", "content": "---\ncontainerd_config_default_write: true\ncontainerd_config_cgroup_driver_systemd: false", "license_type": "no_license", "detected_licenses": [], "size_bytes": 88 }, { "path": "setup/setup...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4541, "all_permissive": false }
ansible_role
yutakachiba/vagrant-ansible-lamp
b06a0cd257afa381dd52bd5a86c2331cb485e216
0
ansible/roles/apache
6,256
[ "permissive" ]
[ { "path": "ansible/roles/apache/tasks/main.yml", "content": "---\n- name: be sure httpd is installed\n yum: pkg={{item}} state=latest\n with_items:\n - httpd\n - httpd-devel\n - mod_ssl\n tags: httpd\n\n#- name: create virtualhost root\n# file: dest=/var/www/vhosts state=directory owner=apache ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4741, "all_permissive": true }
ansible_role
yutakachiba/vagrant-ansible-lamp
b06a0cd257afa381dd52bd5a86c2331cb485e216
0
ansible/roles/init
6,256
[ "permissive" ]
[ { "path": "ansible/roles/init/tasks/rpmforge.yml", "content": "---\n- name: be sure rpmforge repository is installed\n yum: name=http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm\n notify:\n - import rpmforge key\n tags: rpmforge\n\n- name: disable rpmforge reposito...
{ "task_files": 9, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 3525, "all_permissive": true }
ansible_role
yutakachiba/vagrant-ansible-lamp
b06a0cd257afa381dd52bd5a86c2331cb485e216
0
ansible/roles/php
6,256
[ "permissive" ]
[ { "path": "ansible/roles/php/tasks/main.yml", "content": "---\n- name: be sure php is installed\n yum: name={{item}} state=installed enablerepo=remi-php55\n with_items: php_packages\n notify:\n - restart httpd\n tags: php\n\n- name: configure php.ini\n lineinfile: >\n dest=/etc/php.ini\n regex...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 534, "all_permissive": true }
ansible_role
yutakachiba/vagrant-ansible-lamp
b06a0cd257afa381dd52bd5a86c2331cb485e216
0
ansible/roles/postgresql
6,256
[ "permissive" ]
[ { "path": "ansible/roles/postgresql/tasks/main.yml", "content": "---\n- name: be sure pgdg repository is installed\n yum: name=http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-centos94-9.4-1.noarch.rpm\n notify:\n - import pgdg key\n tags: postgresql\n\n- name: be sure postgresql is installed\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1540, "all_permissive": true }
ansible_role
nejibem/ansible-aws-vpc
1958349f6aa52b43710c56f4e0cf3ec7de0f4129
1
roles/aws-create
6,256
[ "no_license" ]
[ { "path": "roles/aws-create/tasks/sg_modify.yml", "content": "--- \n- name: modify sg_web rules\n local_action:\n module: ec2_group\n region: \"{{ region }}\"\n vpc_id: \"{{ vpc_id }}\"\n #your security group name\n name: \"{{ app }}_{{ env }}_sg_web\"\n description: security group for w...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 6347, "all_permissive": false }
ansible_role
nejibem/ansible-aws-vpc
1958349f6aa52b43710c56f4e0cf3ec7de0f4129
1
roles/aws-destroy
6,256
[ "no_license" ]
[ { "path": "roles/aws-destroy/tasks/vpc_delete.yml", "content": "---\n- name: delete vpc\n local_action:\n module: ec2_vpc\n region: \"{{ region }}\"\n vpc_id: \"{{ vpc_id }}\"\n resource_tags: '{\"Name\":\"{{ app }}_{{ env }}_vpc\"}'\n state: absent\n wait: yes\n", "license_type": "no...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2910, "all_permissive": false }
ansible_role
nejibem/ansible-aws-vpc
1958349f6aa52b43710c56f4e0cf3ec7de0f4129
1
roles/test
6,256
[ "no_license" ]
[ { "path": "roles/test/tasks/main.yml", "content": "---\n- name: site conf\n file: path=/var/www/some_directory state=directory mode=0755\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 85, "all_permissive": false }
ansible_role
stephenbrannen/ansible_ubuntu-atlassian-confluence-stack
976386388e9222c18e80899f85825ff393c9b71b
0
roles/common
6,256
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Stop Confluence service if it exists\n systemd:\n name: confluence\n state: stopped\n ignore_errors: true\n\n- name: Update repositories and install pip for Python 3\n apt:\n name: python3-pip\n state: present\n update_cache...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 967, "all_permissive": false }
ansible_role
stephenbrannen/ansible_ubuntu-atlassian-confluence-stack
976386388e9222c18e80899f85825ff393c9b71b
0
roles/confluence
6,256
[ "no_license" ]
[ { "path": "roles/confluence/tasks/main.yml", "content": "---\n- name: Confluence | Installing Confluence...\n include: install-confluence.yml\n- name: Confluence | Configuring Confluence...\n include: configure-confluence.yml\n- name: Confluence | Restoring Confluence home directory...\n when: file_name ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 6858, "all_permissive": false }
ansible_role
stephenbrannen/ansible_ubuntu-atlassian-confluence-stack
976386388e9222c18e80899f85825ff393c9b71b
0
roles/jdk
6,256
[ "no_license" ]
[ { "path": "roles/jdk/tasks/main.yml", "content": "---\n- name: Add the AdoptOpenJDK GPG key from URL\n apt_key:\n url: https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public\n state: present\n- name: Add the AdoptOpenJDK repository to apt\n apt_repository:\n repo: \"deb https://adoptopenjd...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 478, "all_permissive": false }
ansible_role
stephenbrannen/ansible_ubuntu-atlassian-confluence-stack
976386388e9222c18e80899f85825ff393c9b71b
0
roles/nginx
6,256
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx\n apt:\n name: nginx\n state: present\n update_cache: true\n- name: Configure SSL if enabled\n block:\n - name: Create directory for nginx ssl config files\n file:\n path: /etc/nginx/ssl\n state: director...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1931, "all_permissive": false }
ansible_role
stephenbrannen/ansible_ubuntu-atlassian-confluence-stack
976386388e9222c18e80899f85825ff393c9b71b
0
roles/postgres
6,256
[ "no_license" ]
[ { "path": "roles/postgres/defaults/main.yml", "content": "---\n# defaults file for postgres role\n# Backup restore related defaults\ntmp_dir: /tmp/ansible_pg_restore\n# To skip pg_restore use an empty string ex. file_name: \"\"\n# Example of file_name: confluence-dump.tar.gz\n# Supported compression formats...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2796, "all_permissive": false }
ansible_role
devreagi/wsl2-dev-ubuntu
9cc10351495d2ee110a719d60a6a1fcaea59fc52
0
roles/base
6,256
[ "no_license" ]
[ { "path": "roles/base/tasks/main.yaml", "content": "---\n\n- name: Set default text editor to vi\n become: True\n become_user: root\n alternatives:\n name: editor\n path: /usr/bin/vim.basic\n\n- name: perform a dist upgrade\n become: True\n become_user: root\n apt:\n update_cache: yes\n up...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1393, "all_permissive": false }
ansible_role
devreagi/wsl2-dev-ubuntu
9cc10351495d2ee110a719d60a6a1fcaea59fc52
0
roles/tfonts
6,256
[ "no_license" ]
[ { "path": "roles/tfonts/tasks/main.yml", "content": "---\n\n- block:\n - name: create local fonts directory\n file:\n path: \"~{{ user }}/.local/share/fonts\"\n state: directory\n become: yes\n become_user: \"{{ user }}\"\n\n- block:\n - name: download nerd fonts to local fonts fo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1523, "all_permissive": false }
ansible_role
devreagi/wsl2-dev-ubuntu
9cc10351495d2ee110a719d60a6a1fcaea59fc52
0
roles/vim
6,256
[ "no_license" ]
[ { "path": "roles/vim/tasks/main.yml", "content": "---\n\n- block:\n - name: clone amix vimrc git repo\n git:\n repo: \"{{ vim_amix_vimrc_url }}\"\n dest: \"~{{ user }}/.vim_runtime\"\n depth: 1\n\n - name: install amix vimrc\n shell: \"sh ~/.vim_runtime/install_awesome_v...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 680, "all_permissive": false }
ansible_role
devreagi/wsl2-dev-ubuntu
9cc10351495d2ee110a719d60a6a1fcaea59fc52
0
roles/zsh
6,256
[ "no_license" ]
[ { "path": "roles/zsh/tasks/main.yml", "content": "---\n- include_tasks: zsh.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 29 }, { "path": "roles/zsh/tasks/zsh.yml", "content": "---\n- name: install zsh and friends\n become: True\n become_user: root\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 938, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.admin_tools
6,256
[ "no_license" ]
[ { "path": "roles/cklein.admin_tools/tasks/main.yaml", "content": "---\n- name: Install admin tools\n become: true\n ansible.builtin.apt:\n name:\n - curl\n - htop\n - inotify-tools\n - iperf\n - iotop\n - jq\n - mc\n - moreutils\n - net-tools\n - pv\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 282, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.c
6,256
[ "no_license" ]
[ { "path": "roles/cklein.c/tasks/main.yaml", "content": "---\n- name: Install development tools\n ansible.builtin.apt:\n name:\n - build-essential\n - ccache\n - libtext-markdown-perl\n - meld\n - sloccount\n - subversion\n become: true\n\n- name: Create configuration folde...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 540, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.chrome
6,256
[ "no_license" ]
[ { "path": "roles/cklein.chrome/meta/main.yaml", "content": "---\ndependencies:\n - role: cklein.google_key\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 46 }, { "path": "roles/cklein.chrome/tasks/main.yaml", "content": "---\n- name: Add Google Chrome repos...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 598, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.chrome-extra-profiles
6,256
[ "no_license" ]
[ { "path": "roles/cklein.chrome-extra-profiles/tasks/main.yaml", "content": "# yamllint disable rule:line-length\n---\n- name: \"Check parameters\"\n ansible.builtin.assert:\n that: \"profile_names is iterable\"\n\n- name: \"Create user applications and icons folder\"\n ansible.builtin.file:\n path: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1755, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.cloud_tools
6,256
[ "no_license" ]
[ { "path": "roles/cklein.cloud_tools/tasks/main.yaml", "content": "---\n- name: Include Azure\n ansible.builtin.include_tasks: azure.yaml\n- name: Include Google Cloud\n ansible.builtin.include_tasks: gcloud.yaml\n- name: Include OpenStack\n ansible.builtin.include_tasks: openstack.yaml\n- name: Include t...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 1434, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.cncf
6,256
[ "no_license" ]
[ { "path": "roles/cklein.cncf/defaults/main.yaml", "content": "# yamllint disable rule:line-length\n---\nhelm_version: 3.8.0\n\nkrew_version: 0.4.4\n\nterraform_version: 1.1.4\n\ncncf_execs:\n kubectl:\n checksum: sha256:33d0cdec6967817468f0a4a90f537dfef394dcf815d91966ca651cc118393eea\n url: https://d...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2530, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.curl
6,256
[ "no_license" ]
[ { "path": "roles/cklein.curl/tasks/main.yaml", "content": "---\n- name: Install curl\n become: true\n ansible.builtin.apt:\n name:\n - curl\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 86 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 86, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.default_apps
6,256
[ "no_license" ]
[ { "path": "roles/cklein.default_apps/tasks/main.yaml", "content": "---\n- name: Configure default apps\n ansible.builtin.template:\n src: mimeapps.list.j2\n dest: ~/.config/mimeapps.list\n mode: '0644'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 140 }, ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 826, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.dictionaries
6,256
[ "no_license" ]
[ { "path": "roles/cklein.dictionaries/defaults/main.yaml", "content": "---\ndictionaries:\n - hunspell-de-de\n - hunspell-en-gb\n - hunspell-fr\n - hunspell-ro\n - hunspell-sv\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 104 }, { "path": "roles/cklein.dict...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 233, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.docker
6,256
[ "no_license" ]
[ { "path": "roles/cklein.docker/tasks/main.yaml", "content": "---\n- name: Gather needed facts\n ansible.builtin.setup:\n gather_subset:\n - \"distribution\"\n - \"user\"\n - \"!min\"\n when: >\n ansible_distribution_release is not defined\n or ansible_user_id is not defined\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1419, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.dotfiles
6,256
[ "no_license" ]
[ { "path": "roles/cklein.dotfiles/tasks/main.yaml", "content": "---\n- name: Clone dotfiles\n ansible.builtin.git:\n repo: '{{ dotfiles_repo }}'\n dest: ~/.config/dotfiles\n depth: 1\n update: false\n version: main\n\n- name: Symlink dotfiles\n ansible.builtin.file:\n src: '~/.config/dotf...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 703, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.dotnet
6,256
[ "no_license" ]
[ { "path": "roles/cklein.dotnet/defaults/main.yaml", "content": "---\ndotnet_pkgs:\n - dotnet-sdk-8.0\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "roles/cklein.dotnet/meta/main.yaml", "content": "---\ndependencies:\n - role: cklein.micros...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 687, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.dropbox
6,256
[ "no_license" ]
[ { "path": "roles/cklein.dropbox/tasks/main.yaml", "content": "---\n- name: Install dropbox\n become: true\n ansible.builtin.apt:\n name: nautilus-dropbox\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 93, "all_permissive": false }
ansible_role
cristiklein/stateless-workstation-config
1f2b26521d04493abca30e8586165b917c109d57
22
roles/cklein.errata
6,256
[ "no_license" ]
[ { "path": "roles/cklein.errata/README.md", "content": "errata\n======\nProgrammatically fix changes in other roles, such as packages moving from apt to snap or vice-versa, files being deprecated, etc.\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 144 }, { "path...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1037, "all_permissive": false }