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
tiqwab/example
cfefcd1a0ad87c7258b87d65ca12b93577a3a956
7
ansible-growi/roles/proxy
8,089
[ "no_license" ]
[ { "path": "ansible-growi/roles/proxy/defaults/main.yaml", "content": "server_ssl_path: \"/etc/nginx/ssl\"\nserver_ssl_key: \"{{ server_ssl_path }}/{{ server_domain }}.key\"\nserver_ssl_crt: \"{{ server_ssl_path }}/{{ server_domain }}.crt\"\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1277, "all_permissive": false }
ansible_role
preetampvp/fedora-ansible
487bebc7081851310f41a5808c14f435ee5102d7
0
roles/install-packages
8,089
[ "no_license" ]
[ { "path": "roles/install-packages/tasks/main.yml", "content": "---\n- name: Update dnf\n dnf:\n name: \"*\"\n state: latest\n\n- name: Install Packages using dnf\n dnf:\n name: \"{{item}}\"\n state: latest\n with_items:\n - libselinux-python\n - terminator\n - zsh\n - vim\n - powert...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 252, "all_permissive": false }
ansible_role
preetampvp/fedora-ansible
487bebc7081851310f41a5808c14f435ee5102d7
0
roles/ssh-keys
8,089
[ "no_license" ]
[ { "path": "roles/ssh-keys/tasks/main.yml", "content": "---\n- name: Create .ssh directory\n file: \n path: /home/preetam/.ssh\n owner: \"{{owner}}\"\n group: \"{{group}}\"\n state: directory\n mode: 0755\n\n- name: Check if id_rsa exists\n stat:\n path: /home/{{owner}}/.ssh/id_rsa\n reg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 636, "all_permissive": false }
ansible_role
preetampvp/fedora-ansible
487bebc7081851310f41a5808c14f435ee5102d7
0
roles/zsh
8,089
[ "no_license" ]
[ { "path": "roles/zsh/tasks/main.yml", "content": "---\n- name: Setup zsh as default shell\n shell: which zsh\n register: zsh_path\n\n- name: Debug\n debug:\n msg: \"{{zsh_path.stdout}}\"\n\n- name: set zsh as the default shell\n replace:\n path: /etc/passwd\n regexp: preetam:/bin/bash$\n replac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1785, "all_permissive": false }
ansible_role
cedricblondeau/magento2-ansible-vagrant
26e76f1e1280edc3cdf2ca20fcff5b3e3217b6d0
26
ansible/roles/common
8,089
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: Update apt cache\n become: yes\n apt: update-cache=yes\n tags: common\n\n- name: Repos directory\n become: yes\n file: path=/home/vagrant/repos/ state=directory owner=vagrant group=vagrant\n\n- name: Install dev packages\n becom...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 334, "all_permissive": false }
ansible_role
cedricblondeau/magento2-ansible-vagrant
26e76f1e1280edc3cdf2ca20fcff5b3e3217b6d0
26
ansible/roles/magento2
8,089
[ "no_license" ]
[ { "path": "ansible/roles/magento2/tasks/keys.yml", "content": "---\n- name: Set repo.magento.com composer keys\n shell: composer config --global http-basic.repo.magento.com {{ magento_account_public_key }} {{ magento_account_private_key }}\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 5210, "all_permissive": false }
ansible_role
cedricblondeau/magento2-ansible-vagrant
26e76f1e1280edc3cdf2ca20fcff5b3e3217b6d0
26
ansible/roles/mariadb
8,089
[ "no_license" ]
[ { "path": "ansible/roles/mariadb/tasks/main.yml", "content": "---\n- name: Install MariaDB packages\n become: yes\n apt: pkg={{ item }} state=present update_cache=yes\n with_items:\n - mariadb-server-10.0\n - mariadb-client-10.0\n - python-mysqldb\n\n- name: Create a database\n become: true\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 443, "all_permissive": false }
ansible_role
cedricblondeau/magento2-ansible-vagrant
26e76f1e1280edc3cdf2ca20fcff5b3e3217b6d0
26
ansible/roles/nginx
8,089
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/conf.yml", "content": "---\n- name: Copy magento2.conf\n become: yes\n copy: src=magento2.conf dest=/etc/nginx/sites-available/magento2.conf\n notify: Reload nginx\n\n- name: Disable default site\n become: yes\n file: path=/etc/nginx/sites-enabled/default state=abse...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 554, "all_permissive": false }
ansible_role
cedricblondeau/magento2-ansible-vagrant
26e76f1e1280edc3cdf2ca20fcff5b3e3217b6d0
26
ansible/roles/php
8,089
[ "no_license" ]
[ { "path": "ansible/roles/php/tasks/install.yml", "content": "---\n- name: Install PHP packages\n become: yes\n apt: pkg={{ item }} state=present update_cache=yes\n with_items:\n - php7.0-common\n - php7.0-fpm\n - php7.0-cli\n - php7.0-bcmath\n - php7.0-intl\n - php7.0-curl\n - php7.0...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 2001, "all_permissive": false }
ansible_role
cedricblondeau/magento2-ansible-vagrant
26e76f1e1280edc3cdf2ca20fcff5b3e3217b6d0
26
ansible/roles/redis
8,089
[ "no_license" ]
[ { "path": "ansible/roles/redis/tasks/main.yml", "content": "---\n- name: Install\n become: yes\n apt: name=redis-server state=present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 73, "all_permissive": false }
ansible_role
rootsh/gitlab-ansible
a45f32d6a90f7322d9c71fc1ab9276256dbb749f
0
roles/gitlab
8,089
[ "no_license" ]
[ { "path": "roles/gitlab/tasks/common.yml", "content": "---\n\n- name: Upgrade all packages\n ansible.builtin.package:\n name: \"*\"\n state: latest\n\n- name: Install packages\n ansible.builtin.dnf:\n name:\n - policycoreutils\n - perl\n - postfix\n - curl\n state: latest\n...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 3415, "all_permissive": false }
ansible_role
moaipool/ansible-cardano-node
12a4234b8b873a9def1358f08f23d21e5c5e18b6
26
roles/cardano-node
8,089
[ "no_license" ]
[ { "path": "roles/cardano-node/templates/tx-api.sh.j2", "content": "/usr/bin/cardano-submit-api \\\n --config /home/{{ server_username }}/cardano-node/{{ cardano_submit_api_config_dir }}/tx-submit-mainnet-config.yaml \\\n --socket-path {{ cardano_install_dir }}/db/node.socket \\\n --listen-address {{ card...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 24, "total_bytes": 32081, "all_permissive": false }
ansible_role
moaipool/ansible-cardano-node
12a4234b8b873a9def1358f08f23d21e5c5e18b6
26
roles/common
8,089
[ "no_license" ]
[ { "path": "roles/common/vars/main.yml", "content": "---\nfail2ban_ignoreip: \"127.0.0.1/8 ::1\"\nfail2ban_bantime: 1w\nfail2ban_findtime: 1d\nfail2ban_maxretry: 2\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 }, { "path": "roles/common/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 797, "all_permissive": false }
ansible_role
moaipool/ansible-cardano-node
12a4234b8b873a9def1358f08f23d21e5c5e18b6
26
roles/ssh
8,089
[ "no_license" ]
[ { "path": "roles/ssh/tasks/main.yml", "content": "---\n- name: Disable root login\n lineinfile:\n dest: /etc/ssh/sshd_config\n regexp: \"^PermitRootLogin\"\n line: \"PermitRootLogin no\"\n state: present\n notify: restart ssh\n tags:\n - ssh\n\n- name: Disable password authentication\n li...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 939, "all_permissive": false }
ansible_role
moaipool/ansible-cardano-node
12a4234b8b873a9def1358f08f23d21e5c5e18b6
26
roles/ufw
8,089
[ "no_license" ]
[ { "path": "roles/ufw/defaults/main.yml", "content": "---\n\n# Relay node public IP addresses\nrelay_node_ips:\n - 127.0.0.1/32 #relay1.mypool.com\n - 127.0.0.2/32 #relay2.mypool.com\n\n# Trusted IP addresses, used for remote access/administration\ntrusted_ips:\n - 127.0.10.1/32\n - 127.0.10.2/32\n", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1431, "all_permissive": false }
ansible_role
kpritam/tmt-ansible
6943439214dfc835dcff40d8ae80371cd4c70410
0
provisioning/roles/packages
8,089
[ "no_license" ]
[ { "path": "provisioning/roles/packages/tasks/main.yml", "content": "- name: Install packages\n yum:\n name: \"{{ packages }}\"\n state: latest\n become: true\n tags:\n - packages\n\n- name: Install python packages\n pip:\n name: httpie\n executable: pip3\n become: true\n\n- name: Downloa...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 711, "all_permissive": false }
ansible_role
stealthHat/k8s-ansible
29836e2982db87162a839aee4aef268b7b392887
0
roles/charts
8,089
[ "no_license" ]
[ { "path": "roles/charts/files/values-pihole.yaml", "content": "ingress:\n enabled: true\n annotations: {\n kubernetes.io/ingress.class: nginx\n }\n hosts:\n - \n path: /\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 111 }, { "path": "roles/charts/fil...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1602, "all_permissive": false }
ansible_role
stealthHat/k8s-ansible
29836e2982db87162a839aee4aef268b7b392887
0
roles/common
8,089
[ "no_license" ]
[ { "path": "roles/common/files/.zshalias", "content": "#!/bin/bash\n\n#my alias\nalias \\\n l='ls -lha --color=auto' \\\n ls='ls --color=auto' \\\n grep='grep --color=auto' \\\n\tdiff='diff --color=auto' \\\n ap='ansible-playbook' \\\n d='sudo docker' \\\n sc='sudo systemctl' \\\n diff='diff --color=a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1334, "all_permissive": false }
ansible_role
stealthHat/k8s-ansible
29836e2982db87162a839aee4aef268b7b392887
0
roles/common-nodes
8,089
[ "no_license" ]
[ { "path": "roles/common-nodes/tasks/main.yaml", "content": "---\n- name: Activating cgroup support\n lineinfile:\n path: /boot/firmware/cmdline.txt\n regexp: '^((?!.*\\bcgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory\\b).*)$'\n line: '\\1 cgroup_enable=cpuset cgroup_memory=1 cgroup_enabl...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1493, "all_permissive": false }
ansible_role
stealthHat/k8s-ansible
29836e2982db87162a839aee4aef268b7b392887
0
roles/containerd
8,089
[ "no_license" ]
[ { "path": "roles/containerd/defaults/main.yaml", "content": "---\n# Service options.\ncontainerd_service_state: started\ncontainerd_service_enabled: true\n\ncontainerd_apt_key: https://download.docker.com/linux/ubuntu/gpg\ncontainerd_apt_repository: deb [arch=amd64] https://download.docker.com/linux/ubuntu ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1730, "all_permissive": false }
ansible_role
stealthHat/k8s-ansible
29836e2982db87162a839aee4aef268b7b392887
0
roles/master
8,089
[ "no_license" ]
[ { "path": "roles/master/defaults/main.yaml", "content": "---\nk8s_network_cidr: 10.32.0.0/12\nk8s_apiserver: \"{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}\"\n\ntoken_file: $HOME/.kube/join_token\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 15...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2229, "all_permissive": false }
ansible_role
stealthHat/k8s-ansible
29836e2982db87162a839aee4aef268b7b392887
0
roles/worker
8,089
[ "no_license" ]
[ { "path": "roles/worker/tasks/main.yaml", "content": "---\n- name: Copying token to worker nodes\n copy: \n src: ~/.kube/join_token \n dest: ~/join_token\n\n- name: Joining worker nodes with kubernetes master\n shell: |\n kubeadm reset -f\n cat ~/join_token | tail -2 > out.sh\n sh out.sh\n"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 242, "all_permissive": false }
ansible_role
Ballouk12/Devops_Pipeline
e2b58102424433e055b165f822248453603364fb
0
deployment/ansible/roles/common
8,089
[ "no_license" ]
[ { "path": "deployment/ansible/roles/common/tasks/main.yml", "content": "---\n- name: Update and upgrade apt packages\n apt:\n upgrade: yes\n update_cache: yes\n cache_valid_time: 86400 # 24 heures en secondes\n when: ansible_os_family == \"Debian\"\n\n- name: Update and upgrade yum packages\n yu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 612, "all_permissive": false }
ansible_role
Ballouk12/Devops_Pipeline
e2b58102424433e055b165f822248453603364fb
0
deployment/ansible/roles/docker
8,089
[ "no_license" ]
[ { "path": "deployment/ansible/roles/docker/tasks/main.yml", "content": "---\n- name: Install Docker dependencies\n package:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg\n - lsb-release\n state: present\n when: ansible_os_family == \"Debian\"\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1591, "all_permissive": false }
ansible_role
Ballouk12/Devops_Pipeline
e2b58102424433e055b165f822248453603364fb
0
deployment/ansible/roles/frontend
8,089
[ "no_license" ]
[ { "path": "deployment/ansible/roles/frontend/templates/nginx-frontend.conf.j2", "content": "server {\n listen 80;\n server_name {{ frontend_domain }};\n \n location / {\n proxy_pass http://localhost:{{ frontend_port }};\n proxy_http_version 1.1;\n proxy_set_header Upgrade $h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1114, "all_permissive": false }
ansible_role
Ballouk12/Devops_Pipeline
e2b58102424433e055b165f822248453603364fb
0
deployment/ansible/roles/microservices
8,089
[ "no_license" ]
[ { "path": "deployment/ansible/roles/microservices/templates/docker-compose.yml.j2", "content": "version: '3'\n\nservices:\n # Zookeeper (pour Kafka)\n zookeeper:\n image: zookeeper\n container_name: zookeeper\n ports:\n - \"2181:2181\"\n networks:\n - microservices-network\n\n # Kaf...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 9140, "all_permissive": false }
ansible_role
lancejjohnson/ansible-setup-machines
b088af3d04502236ff3993fb2f09bf7bf0f794dc
0
roles/common
8,088
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "# - name: Print all available facts\n# ansible.builtin.debug:\n# var: ansible_facts\n\n- name: Install desktop environment packages\n ansible.builtin.dnf:\n name: \"{{ item }}\"\n state: latest\n loop:\n - gnome-tweaks\n when: ansible_di...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 265, "all_permissive": false }
ansible_role
lancejjohnson/ansible-setup-machines
b088af3d04502236ff3993fb2f09bf7bf0f794dc
0
roles/developer
8,088
[ "no_license" ]
[ { "path": "roles/developer/tasks/main.yml", "content": "- import_tasks: packages.yml\n- import_tasks: playbooks/software/alacritty.yml\n- import_tasks: playbooks/software/codium.yml\n- import_tasks: playbooks/software/ctags.yml", "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": 725, "all_permissive": false }
ansible_role
lancejjohnson/ansible-setup-machines
b088af3d04502236ff3993fb2f09bf7bf0f794dc
0
roles/lance
8,088
[ "no_license" ]
[ { "path": "roles/lance/tasks/shell.yml", "content": "- name: Install zsh\n become: yes\n dnf:\n name: zsh\n state: latest\n\n- name: Set default shell\n become: yes\n user:\n name: lance\n shell: /usr/bin/zsh", "license_type": "no_license", "detected_licenses": [], "size_bytes": ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3699, "all_permissive": false }
ansible_role
Tareqmohamed/end-to-end-devops-flask-project
e3ffbbc5242fa2aacdbb63816d4ee3606c73385f
0
ansible/roles/docker
8,088
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n# tasks file for roles/docker\n#install docker\n- name: Install Docker\n apt:\n name: docker.io\n state: present\n update_cache: yes\n become: yes\n\n#start docker\n- name: Start Docker\n service:\n name: docker\n state: sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 272, "all_permissive": false }
ansible_role
Tareqmohamed/end-to-end-devops-flask-project
e3ffbbc5242fa2aacdbb63816d4ee3606c73385f
0
ansible/roles/run_infra
8,088
[ "no_license" ]
[ { "path": "ansible/roles/run_infra/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/run_infra\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 }, { "path": "ansible/roles/run_infra/defaults/main.yml", "content...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 567, "all_permissive": false }
ansible_role
lucassouzamatos/thor-demo
a3f4d77ad3520a01107903b568d5d1beb37fb594
0
instances/ansible/roles/aws_config
8,088
[ "no_license" ]
[ { "path": "instances/ansible/roles/aws_config/tasks/main.yml", "content": "---\n\n- stat:\n path: \"{{ config }}\"\n register: config_stat\n\n- name: ensure configuration file exists\n fail: \n msg: Configuration file {{ config }} does not exists.\n when: not config_stat.stat.exists\n\n- name: read...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 854, "all_permissive": false }
ansible_role
lucassouzamatos/thor-demo
a3f4d77ad3520a01107903b568d5d1beb37fb594
0
instances/ansible/roles/my_pub_cidr
8,088
[ "no_license" ]
[ { "path": "instances/ansible/roles/my_pub_cidr/defaults/main.yml", "content": "---\n\nip_provider: https://icanhazip.com\nwhois_provider: https://rdap.arin.net/bootstrap/ip\n\nnet_cache_file: networks.json\nnet_cache_path: \"{{ cache_dir | expanduser }}/{{ net_cache_file }}\"\n\nuse_my_network: false", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2096, "all_permissive": false }
ansible_role
lucassouzamatos/thor-demo
a3f4d77ad3520a01107903b568d5d1beb37fb594
0
instances/ansible/roles/post_instance_create
8,088
[ "no_license" ]
[ { "path": "instances/ansible/roles/post_instance_create/tasks/main.yml", "content": "---\n\n- name: wait aws say instances is fine to go\n shell: aws ec2 wait instance-status-ok --instance-ids {{ inst_id }}\n\n- name: gather instance public ssh keys from {{ inst_ip }} as safe as possible\n # --no-latest t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1122, "all_permissive": false }
ansible_role
lucassouzamatos/thor-demo
a3f4d77ad3520a01107903b568d5d1beb37fb594
0
instances/ansible/roles/vars_helper
8,088
[ "no_license" ]
[ { "path": "instances/ansible/roles/vars_helper/tasks/main.yml", "content": "---\n\n- name: check where the default setup variables file is present\n stat:\n path: \"{{ default_setup_variables_file | mandatory }}\"\n register: default_setup_vars_stat\n connection: local\n\n- name: include deployer setu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 360, "all_permissive": false }
ansible_role
lucassouzamatos/thor-demo
a3f4d77ad3520a01107903b568d5d1beb37fb594
0
instances/wireguard-vpn/roles/after_install
8,088
[ "no_license" ]
[ { "path": "instances/wireguard-vpn/roles/after_install/tasks/main.yml", "content": "---\n\n- name: define password for new user\n include_role: \n role: passwd\n vars:\n login: \"{{ user.name }}\"\n group: \"{{ kpxc_user_group }}\"\n algo: \"{{ pwd_hash_algo }}\"\n prompt: \"User password:\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3378, "all_permissive": false }
ansible_role
lucassouzamatos/thor-demo
a3f4d77ad3520a01107903b568d5d1beb37fb594
0
instances/wireguard-vpn/roles/auto_install
8,088
[ "no_license" ]
[ { "path": "instances/wireguard-vpn/roles/auto_install/templates/net.conf.j2", "content": "{% include 'base.conf.j2' %}\n\nLocation of sets = http\nHTTP Server = 1\nUnable to connect using https. Use http instead = yes\nLocation of sets = done\n\n", "license_type": "no_license", "detected_licenses": ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 6918, "all_permissive": false }
ansible_role
lucassouzamatos/thor-demo
a3f4d77ad3520a01107903b568d5d1beb37fb594
0
instances/wireguard-vpn/roles/my_pub_cidr
8,088
[ "no_license" ]
[ { "path": "instances/wireguard-vpn/roles/my_pub_cidr/tasks/main.yml", "content": "---\n\n- name: looking up for your ip address\n set_fact:\n my_ip: \"{{ lookup('url', ip_provider) }}\"\n\n- name: discover ip version\n set_fact:\n my_ip_version: \"{{ (':' in my_ip) | ternary('v6', 'v4') }}\"\n\n- na...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1607, "all_permissive": false }
ansible_role
lucassouzamatos/thor-demo
a3f4d77ad3520a01107903b568d5d1beb37fb594
0
instances/wireguard-vpn/roles/passwd
8,088
[ "no_license" ]
[ { "path": "instances/wireguard-vpn/roles/passwd/tasks/run_method.yml", "content": "---\n\n- include_tasks: \"{{ task }}\"\n\n- block:\n - set_fact:\n input_password: \"{{ <PASSWORD> | password_hash(algo) }}\"\n when: algo != skip_hash_algo\n\n - set_fact:\n input_password: \"{{ <PASSWORD> }}\...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1156, "all_permissive": false }
ansible_role
lucassouzamatos/thor-demo
a3f4d77ad3520a01107903b568d5d1beb37fb594
0
instances/wireguard-vpn/roles/pf
8,088
[ "no_license" ]
[ { "path": "instances/wireguard-vpn/roles/pf/defaults/main.yml", "content": "---\n\npf_path: pf.conf.j2", "license_type": "no_license", "detected_licenses": [], "size_bytes": 24 }, { "path": "instances/wireguard-vpn/roles/pf/tasks/main.yml", "content": "---\n\n- name: configure pf fir...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 318, "all_permissive": false }
ansible_role
lucassouzamatos/thor-demo
a3f4d77ad3520a01107903b568d5d1beb37fb594
0
instances/wireguard-vpn/roles/server
8,088
[ "no_license" ]
[ { "path": "instances/wireguard-vpn/roles/server/tasks/main.yml", "content": "---\n\n- name: ensure cache directory exists\n file: \n path: \"{{ cache_dir }}\"\n state: directory\n mode: 0755\n\n- block:\n - name: check wheter random names file exists \n stat:\n path: \"{{ random_names_pat...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4322, "all_permissive": false }
ansible_role
g-ford/ansible-demo
ea0bae661151cf59bd24656090f10046d4753775
0
roles/web
8,088
[ "no_license" ]
[ { "path": "roles/web/templates/db-test.php.j2", "content": "<?php\n# Fill our vars and run on cli\n# $ php -f db-connect-test.php\n\n$dbname = 'demo';\n$dbuser = 'demo';\n$dbpass = '<PASSWORD>';\n$dbhost = '{{ hostvars[groups.tag_role_db[0]]['private_ip_address'] }}';\n\n$connect = mysqli_connect($dbhost, $...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2618, "all_permissive": false }
ansible_role
Priyankasaggu11929/ansible-k8s-cluster-deploy
73b9ecf70c004b41a95dfd7b23fbdbfd7a184582
1
roles/create-ec2-instances
8,088
[ "no_license" ]
[ { "path": "roles/create-ec2-instances/tasks/ec2.yml", "content": "---\n- name: Create master EC2 instance\n ec2:\n key_name: \"{{ key_name }}\"\n region: \"{{ region_name }}\"\n instance_type: \"{{ instance_type }}\"\n image: \"{{ ami_id }}\"\n vpc_subnet_id: \"{{ random_subnet }}\"\n gro...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3172, "all_permissive": false }
ansible_role
Priyankasaggu11929/ansible-k8s-cluster-deploy
73b9ecf70c004b41a95dfd7b23fbdbfd7a184582
1
roles/delete-ec2-instances
8,088
[ "no_license" ]
[ { "path": "roles/delete-ec2-instances/tasks/main.yml", "content": "---\n# delete-ec2-instances\n- name: Delete ec2 instances in default VPC\n block:\n - import_tasks: ec2.yml\n - import_tasks: network-information.yml\n - import_tasks: security-group.yml\n - import_tasks: key-pair.yml\n", "l...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1147, "all_permissive": false }
ansible_role
jurruh/ansible-webserver-boilerplate
c2e81853fd3608545983fdfce8203a4daa38e0be
1
roles/docker
8,088
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: Install docker packages\n apt:\n name: \"{{ item }}\"\n state: present\n update_cache: yes\n with_items:\n - apt-transport-https\n - ca-certificates\n - curl\n - software-properties-common\n - python3-pip\n tags:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1311, "all_permissive": false }
ansible_role
jurruh/ansible-webserver-boilerplate
c2e81853fd3608545983fdfce8203a4daa38e0be
1
roles/example-app
8,088
[ "no_license" ]
[ { "path": "roles/example-app/tasks/main.yml", "content": "---\n- name: Create example-app network\n docker_network:\n name: example-app\n\n- name: Ensure /opt/example-app exists\n file: \n path: /opt/example-app\n state: directory\n\n- name: Template docker-compose\n template:\n src: docker-c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1056, "all_permissive": false }
ansible_role
jurruh/ansible-webserver-boilerplate
c2e81853fd3608545983fdfce8203a4daa38e0be
1
roles/traefik
8,088
[ "no_license" ]
[ { "path": "roles/traefik/tasks/main.yml", "content": "---\n- name: Create traefik network\n docker_network:\n name: traefik\n\n- name: Ensure /opt/traefik exists\n file: \n path: /opt/traefik\n state: directory\n\n- name: Template docker-compose\n template:\n src: docker-compose.yml\n dest...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1413, "all_permissive": false }
ansible_role
jbrogers63/ansible-ca
538c954578fea8337f311d0a7e78387175c0c172
0
roles/setup-ca
8,088
[ "no_license" ]
[ { "path": "roles/setup-ca/tasks/main.yml", "content": "---\n- name: Check for existing CA\n stat:\n path: \"{{ ca.path }}/ca.crt\"\n register: ca_exists\n\n- name: Stop if CA is setup\n fail:\n msg: \"CA is already setup.\"\n when: ca_exists.stat.exists\n\n- name: Create root ca path, if it doesn'...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1042, "all_permissive": false }
ansible_role
jbrogers63/ansible-ca
538c954578fea8337f311d0a7e78387175c0c172
0
roles/setup-host
8,088
[ "no_license" ]
[ { "path": "roles/setup-host/defaults/main.yml", "content": "debug: False\nnot_before: \"-1d\"\nnot_after: \"+364d\"\nsan_patterns:\n - \"DNS:{{ ansible_fqdn }}\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 92 }, { "path": "roles/setup-host/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1333, "all_permissive": false }
ansible_role
tjheeta/elixir_web_crawler
907ddcdfaa7aa741eee9bc97d7d72246347ca3ee
31
ansible/roles/crawler_worker
8,088
[ "no_license" ]
[ { "path": "ansible/roles/crawler_worker/templates/nodes.j2", "content": "{% for host in groups['all'] %}\n'{{ hostvars[host]['ansible_default_ipv4']['address'] }}'.\n{% endfor %}\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 }, { "path": "ansible/roles/cr...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 2237, "all_permissive": false }
ansible_role
tjheeta/elixir_web_crawler
907ddcdfaa7aa741eee9bc97d7d72246347ca3ee
31
ansible/roles/storage_node
8,088
[ "no_license" ]
[ { "path": "ansible/roles/storage_node/tasks/main.yml", "content": "- name: install required packages\n apt: name={{ item }} state=present update_cache=yes cache_valid_time=86400\n with_items:\n - redis-server\n\n- replace: dest=/etc/redis/redis.conf regexp='127.0.0.1' replace='0.0.0.0' \n notify: rest...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 320, "all_permissive": false }
ansible_role
orgTestCodacy11KRepos110MB/repo-4565-roxy-wi
14e663781be60eca374d92ee5545eea7e4a10ed2
0
app/scripts/ansible/roles/haproxy
8,088
[ "permissive" ]
[ { "path": "app/scripts/ansible/roles/haproxy/tasks/logs.yml", "content": "- name: Installing HAProxy conf for rsyslog\n template:\n src: /var/www/haproxy-wi/app/scripts/ansible/roles/haproxy/templates/haproxy_rsyslog.conf.j2\n dest: /etc/rsyslog.d/49-haproxy.conf\n force: yes\n ignore_errors: yes\n ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 7597, "all_permissive": true }
ansible_role
orgTestCodacy11KRepos110MB/repo-4565-roxy-wi
14e663781be60eca374d92ee5545eea7e4a10ed2
0
app/scripts/ansible/roles/keepalived
8,088
[ "permissive" ]
[ { "path": "app/scripts/ansible/roles/keepalived/templates/add_vrrp.conf.j2", "content": "vrrp_instance VI_{{IP}} {\n\tstate {{MASTER}}\n\tinterface {% if MASTER == 'MASTER' %}{{ETH}} {% else %} {{ETH_SLAVE}} {% endif %}\n\tvirtual_router_id {{ router_id }}\n\tpriority {% if RETURN_TO_MASTER == 1 and MASTER ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3789, "all_permissive": true }
ansible_role
orgTestCodacy11KRepos110MB/repo-4565-roxy-wi
14e663781be60eca374d92ee5545eea7e4a10ed2
0
app/scripts/ansible/roles/nginx_geoip
8,088
[ "permissive" ]
[ { "path": "app/scripts/ansible/roles/nginx_geoip/tasks/main.yml", "content": "---\n- name: Set SSH port\n set_fact:\n ansible_port: \"{{SSH_PORT}}\"\n\n- name: Creates directory\n file:\n path: \"{{nginx_dir}}/geoip\"\n state: directory\n\n- name: Creates directory\n file:\n path: \"{{nginx_d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 816, "all_permissive": true }
ansible_role
orgTestCodacy11KRepos110MB/repo-4565-roxy-wi
14e663781be60eca374d92ee5545eea7e4a10ed2
0
app/scripts/ansible/roles/service_common
8,088
[ "permissive" ]
[ { "path": "app/scripts/ansible/roles/service_common/vars/apache-Suse.yml", "content": "---\nservice_user: apache2\nservice_group: apache2\nconf_folder: sites-available\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 78 }, { "path": "app/sc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3759, "all_permissive": true }
ansible_role
orgTestCodacy11KRepos110MB/repo-4565-roxy-wi
14e663781be60eca374d92ee5545eea7e4a10ed2
0
app/scripts/ansible/roles/waf
8,088
[ "permissive" ]
[ { "path": "app/scripts/ansible/roles/waf/tasks/main.yml", "content": "---\n- name: Installing WAF\n block:\n - name: Set SSH port\n set_fact:\n ansible_port: \"{{SSH_PORT}}\"\n\n - name: Check that WAF has been installed\n stat:\n path: \"{{ HAPROXY_PATH }}/waf/modsecurity.con...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 12725, "all_permissive": true }
ansible_role
orgTestCodacy11KRepos110MB/repo-4565-roxy-wi
14e663781be60eca374d92ee5545eea7e4a10ed2
0
app/scripts/ansible/roles/waf_nginx
8,088
[ "permissive" ]
[ { "path": "app/scripts/ansible/roles/waf_nginx/templates/waf.conf.j2", "content": "Include {{ NGINX_PATH }}/waf/modsecurity.conf\nInclude {{ NGINX_PATH }}/waf/rulescrs-setup.conf\nInclude {{ NGINX_PATH }}/waf/rules/REQUEST-901-INITIALIZATION.conf\nInclude {{ NGINX_PATH }}/waf/rules/REQUEST-903.9001-DRUPAL-E...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 8994, "all_permissive": true }
ansible_role
CSYE-7374-Advanced-Cloud-Computing/webapp-backend
d20b5b37720942dbb6c2d255e4696466f8c52622
0
roles/deploy-app
8,088
[ "no_license" ]
[ { "path": "roles/deploy-app/tasks/main.yml", "content": "---\n# tasks file for deploy-app\n\n- name: run shell scrip\n script: ~/csye7374/webapp-backend/k8s/change_imagetag.sh \"{{username}}\" \"{{image}}\" \"{{rds_url}}\"\n\n- name: create namespace\n shell: \"kubectl apply -f ~/csye7374/webapp-backend/k...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 973, "all_permissive": false }
ansible_role
axarriola/ansible-packer-vmware
8f3b0281bec71ad46bd3e7663436fec7c587c5dc
6
roles/build-template
8,088
[ "no_license" ]
[ { "path": "roles/build-template/tasks/main.yml", "content": "---\n- name: Make sure {{ playbook_dir }}/packer/ exists\n stat:\n path: \"{{ playbook_dir }}/packer\"\n register: packer_folder\n delegate_to: localhost\n failed_when: not packer_folder.stat.exists\n\n- name: Verify that the packer zip doe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2275, "all_permissive": false }
ansible_role
axarriola/ansible-packer-vmware
8f3b0281bec71ad46bd3e7663436fec7c587c5dc
6
roles/cleanup
8,088
[ "no_license" ]
[ { "path": "roles/cleanup/tasks/main.yml", "content": "---\n- name: Reset NTP config\n become: true\n copy:\n content: |\n driftfile /var/lib/ntp/drift\n\n restrict default nomodify notrap nopeer noquery\n\n restrict 127.0.0.1\n restrict ::1\n dest: '/e...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 624, "all_permissive": false }
ansible_role
axarriola/ansible-packer-vmware
8f3b0281bec71ad46bd3e7663436fec7c587c5dc
6
roles/stage-files
8,088
[ "no_license" ]
[ { "path": "roles/stage-files/templates/packer_build.json", "content": "{\n \"variables\": {\n \"vcenter_pass\": \"{{ '{{ env `VC_PASS` }}' }}\",\n \"vm_pass\": \"{{ '{{ env `VM_PASS` }}' }}\"\n },\n \"builders\": [\n {\n \"type\": \"vsphere-iso\",\n\n \"vcenter_server\": \"{{ vcenter_s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 5640, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/base
8,088
[ "no_license" ]
[ { "path": "roles/base/templates/gitconfig.j2", "content": "[user]\n name = {{ ldap_name }}\n email = {{ ldap_email }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "roles/base/tasks/main.yaml", "content": "- name: install base ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 476, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/docker
8,088
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yaml", "content": "- name: setup the docker repository\n block:\n - name: install apt req\n apt:\n pkg:\n - ca-certificates\n - curl\n - apt-transport-https\n state: present\n update_cache: yes\n - name: check gpg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1976, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/go
8,088
[ "no_license" ]
[ { "path": "roles/go/vars/main.yaml", "content": "# Go language SDK version number\ngolang_version: '1.22.0'\n\n# Mirror to download the Go language SDK redistributable package from\ngolang_mirror: 'https://go.dev/dl'\n\n# Base installation directory the Go language SDK distribution\ngolang_install_dir: '/op...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1574, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/kubectl
8,088
[ "no_license" ]
[ { "path": "roles/kubectl/tasks/main.yaml", "content": "- name: setup the kubectl repository\n block:\n - name: install apt req\n apt:\n pkg:\n - ca-certificates\n - curl\n - apt-transport-https\n state: present\n update_cache: yes\n - name: prepare...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1403, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/massagers
8,088
[ "no_license" ]
[ { "path": "roles/massagers/tasks/main.yaml", "content": "- name: Create vkteams dir\n file:\n path: /opt/vkteams\n state: directory\n become: true\n register: no_vkteams\n\n- name: download vk-teams\n unarchive:\n src: \"https://vkteams-www.hb.bizmrg.com/linux/x64/vkteams.tar.xz\"\n dest: /o...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1006, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/netplan
8,088
[ "no_license" ]
[ { "path": "roles/netplan/tasks/main.yaml", "content": "- name: find network configs\n find:\n paths: /etc/netplan/\n excludes: '01-netcfg.yaml'\n register: config_files\n\n\n- name: delete network configs\n file:\n state: absent\n path: \"{{ item.path }}\"\n with_items: \"{{ config_files.fil...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1597, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/proxy
8,088
[ "no_license" ]
[ { "path": "roles/proxy/templates/tinyproxy.conf.j2", "content": "##User/Group to use after dropping root\nUser tinyproxy\nGroup tinyproxy\n\n##Port and address to bind to\nPort {{ tinyproxy_port }}\nAllow {{ tinyproxy_allow }}\n\n##File locations\nDefaultErrorFile \"/usr/local/share/tinyproxy/default.html\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1146, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/shell
8,088
[ "no_license" ]
[ { "path": "roles/shell/tasks/zsh.yaml", "content": "- name: check oh-my-zsh\n stat: \n path: ~/.oh-my-zsh\n register: zsh\n become: \"{{ item }}\"\n\n- name: install oh-my-zsh\n shell: sh -c \"ZSH= $(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\"\n when: zsh....
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1611, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/sshd
8,088
[ "no_license" ]
[ { "path": "roles/sshd/tasks/main.yaml", "content": "- name: install \n apt:\n name: openssh-server\n state: latest\n update_cache: yes\n become: true\n register: install_sshd\n- name: start srevice\n systemd:\n name: ssh\n state: restarted\n enabled: yes\n when: install_sshd is change...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 260, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/virtualization
8,088
[ "no_license" ]
[ { "path": "roles/virtualization/tasks/main.yaml", "content": "- name: install qemu-kvm\n apt:\n pkg:\n - qemu-kvm\n - libvirt-daemon-system\n - libvirt-clients\n - ruby-libvirt\n - libvirt-dev\n - ruby-dev\n - bridge-utils\n - virt-manager\n - ssh-askpass-gno...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2355, "all_permissive": false }
ansible_role
kisa47/work-pc
78c1a125f245afcf242623dd2c2578aa9fc2efe2
1
roles/vscode
8,088
[ "no_license" ]
[ { "path": "roles/vscode/tasks/main.yaml", "content": "- name: setup the vscode repository\n block:\n - name: install apt req\n apt:\n pkg:\n - ca-certificates\n - curl\n - apt-transport-https\n state: present\n update_cache: yes\n - name: check gpg...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1201, "all_permissive": false }
ansible_role
johnfb64/YAML
0aec7cbe061127e59b132af83016ddb7da37710a
0
Curso_Ansible/Cap18_Templates/web_rol/roles/apache2
8,088
[ "no_license" ]
[ { "path": "Curso_Ansible/Cap18_Templates/web_rol/roles/apache2/tasks/main.yml", "content": "---\n- name: Instalar apache2\n apt: name=apache2 state=latest\n- name: Iniciar y habilitar servicio\n service: name=apache2 state=started enabled=true\n- name: Copiar fichero de configuración\n copy: src=apache2....
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 386, "all_permissive": false }
ansible_role
johnfb64/YAML
0aec7cbe061127e59b132af83016ddb7da37710a
0
Curso_Ansible/Cap20_condiciones/web_rol/roles/apache2
8,088
[ "no_license" ]
[ { "path": "Curso_Ansible/Cap20_condiciones/web_rol/roles/apache2/tasks/instalar-apache2.yml", "content": "- name: Instalar_apache2\n apt: name=apache2 state=latest\n\n- name: Iniciar y habilitar servicio\n service: name=apache2 state=started enabled=true\n\n\n", "license_type": "no_license", "dete...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1109, "all_permissive": false }
ansible_role
johnfb64/YAML
0aec7cbe061127e59b132af83016ddb7da37710a
0
roles/apache
8,088
[ "no_license" ]
[ { "path": "roles/apache/templates/httpd.conf.j2", "content": "ServerName: {{ apache_website_name }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n- name: Instalar apach...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 409, "all_permissive": false }
ansible_role
johnfb64/YAML
0aec7cbe061127e59b132af83016ddb7da37710a
0
web/roles/apache2
8,088
[ "no_license" ]
[ { "path": "web/roles/apache2/templates/index.html.j2", "content": "Hola al servidor {{ ansible_fqdn }}\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "web/roles/apache2/tasks/main.yml", "content": "- name: Instalar apache2\n apt: name=apac...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 845, "all_permissive": false }
ansible_role
yp3yp3/Todo_list-cd
1c78d027a58fe5369c4f22ae741565e96cba53eb
0
ansible/roles/app
8,088
[ "no_license" ]
[ { "path": "ansible/roles/app/tasks/main.yml", "content": " - name: run app container\n docker_container:\n name: app\n image: \"{{ app_image }}:{{ app_tag }}\"\n restart_policy: always\n env:\n DB_NAME: \"{{ db_name }}\"\n DB_USER: \"{{ db_user }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 337, "all_permissive": false }
ansible_role
yp3yp3/Todo_list-cd
1c78d027a58fe5369c4f22ae741565e96cba53eb
0
ansible/roles/db
8,088
[ "no_license" ]
[ { "path": "ansible/roles/db/tasks/main.yml", "content": " - name: run mysql container\n docker_container:\n name: mysql\n image: \"{{ db_image }}:{{ db_tag }}\"\n env:\n MYSQL_ROOT_PASSWORD: \"{{ db_root_password }}\"\n MYSQL_DATABASE: \"{{ db_name }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 604, "all_permissive": false }
ansible_role
yp3yp3/Todo_list-cd
1c78d027a58fe5369c4f22ae741565e96cba53eb
0
ansible/roles/docker
8,088
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": " - name: install docker\n apt:\n name:\n - docker.io\n update_cache: yes\n\n - name: Add ubuntu user to docker group\n user:\n name: \"{{ ansible_user }}\"\n groups: docker\n append...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 241, "all_permissive": false }
ansible_role
yp3yp3/Todo_list-cd
1c78d027a58fe5369c4f22ae741565e96cba53eb
0
ansible/roles/nginx
8,088
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": " - name: copy nginx conf file\n copy:\n src: default.conf\n dest: ~/default.conf\n\n - name: run nginx container\n docker_container:\n name: nginx\n image: \"{{ nginx_image }}:{{ nginx_tag }}\"\n r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 503, "all_permissive": false }
ansible_role
brokedba/Devops_all_in_one_vm
35d4a6b8ef72ffe86d58885e20345d07f0929e62
17
OL7/scripts/awx/installer/roles/check_vars
8,088
[ "permissive" ]
[ { "path": "OL7/scripts/awx/installer/roles/check_vars/tasks/main.yml", "content": "# main.yml\n---\n- name: admin_password should be defined\n assert:\n that:\n - admin_password is defined and admin_password != ''\n msg: \"Set the value of 'admin_password' in the inventory file.\"\n\n- include_t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 397, "all_permissive": true }
ansible_role
brokedba/Devops_all_in_one_vm
35d4a6b8ef72ffe86d58885e20345d07f0929e62
17
OL7/scripts/awx/installer/roles/image_build
8,088
[ "permissive" ]
[ { "path": "OL7/scripts/awx/installer/roles/image_build/tasks/main.yml", "content": "---\n- name: Set global version if not provided\n set_fact:\n awx_version: \"{{ lookup('file', playbook_dir + '/../VERSION') }}\"\n when: awx_version is not defined\n\n- name: Verify awx-logos directory exists for offic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1066, "all_permissive": true }
ansible_role
brokedba/Devops_all_in_one_vm
35d4a6b8ef72ffe86d58885e20345d07f0929e62
17
OL7/scripts/awx/installer/roles/local_docker
8,088
[ "permissive" ]
[ { "path": "OL7/scripts/awx/installer/roles/local_docker/tasks/upgrade_postgres.yml", "content": "---\n\n- name: Create {{ postgres_data_dir }} directory\n file:\n path: \"{{ postgres_data_dir }}\"\n state: directory\n\n- name: Get full path of postgres data dir\n shell: \"echo {{ postgres_data_dir }...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4570, "all_permissive": true }
ansible_role
yunsur/ansible-debian
d914457e8c6370bebf804b0c383f6db85d3d6288
1
roles/debian
8,088
[ "no_license" ]
[ { "path": "roles/debian/tasks/timezone.yml", "content": "---\n\n- name: Set timezone to \"{{ debian_timezone }}\"\n community.general.timezone:\n name: \"{{ debian_timezone }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 }, { "path": "roles/debian/ta...
{ "task_files": 10, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 15, "total_bytes": 6742, "all_permissive": false }
ansible_role
yunsur/ansible-debian
d914457e8c6370bebf804b0c383f6db85d3d6288
1
roles/docker
8,088
[ "no_license" ]
[ { "path": "roles/docker/handlers/main.yml", "content": "---\n\n- name: Restart-docker\n ansible.builtin.systemd:\n name: docker\n state: started\n enabled: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 109 }, { "path": "roles/docker/tasks/main.ym...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 930, "all_permissive": false }
ansible_role
yunsur/ansible-debian
d914457e8c6370bebf804b0c383f6db85d3d6288
1
roles/dotfiles
8,088
[ "no_license" ]
[ { "path": "roles/dotfiles/files/bashrc", "content": "#!/usr/bin/env bash\n# ${HOME}/.bashrc: executed by bash(1) for non-login shells.\n# If not running interactively, don't do anything\n[ -z \"$PS1\" ] && return\n\n# Distribute bashrc into smaller, more specific files\n\nsource ~/.shells/defaults\nsource ~...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 985, "all_permissive": false }
ansible_role
yunsur/ansible-debian
d914457e8c6370bebf804b0c383f6db85d3d6288
1
roles/otpauth
8,088
[ "no_license" ]
[ { "path": "roles/otpauth/tasks/main.yml", "content": "---\n\n- name: Ensure required packages are installed\n ansible.builtin.apt:\n pkg:\n - libpam-google-authenticator\n state: present\n update_cache: true\n\n- name: Add pam_google_authenticator.so to PAM of sshd\n ansible.builtin.lineinfi...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2282, "all_permissive": false }
ansible_role
yunsur/ansible-debian
d914457e8c6370bebf804b0c383f6db85d3d6288
1
roles/users
8,088
[ "no_license" ]
[ { "path": "roles/users/tasks/main.yml", "content": "---\n\n- name: Create user group\n ansible.builtin.group:\n name: \"{{ group }}\"\n\n- name: Create user account\n ansible.builtin.user:\n name: \"{{ username }}\"\n password: \"{{ '<PASSWORD>' | password_hash('<PASSWORD>') }}\"\n update_pass...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 536, "all_permissive": false }
ansible_role
openshift-eng/two-node-toolbox
25eb62e726308368b0a71bc196389ec232f8ab8c
0
deploy/ipi-baremetalds-virt/roles/clean
8,088
[ "permissive" ]
[ { "path": "deploy/ipi-baremetalds-virt/roles/clean/README.md", "content": "# Clean Role\n\nThis role cleans up OpenShift deployments and resets the dev-scripts environment.\n\n## Description\n\nThe clean role performs cleanup operations for OpenShift bare metal deployments managed by dev-scripts. It:\n\n1. ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2265, "all_permissive": true }
ansible_role
openshift-eng/two-node-toolbox
25eb62e726308368b0a71bc196389ec232f8ab8c
0
deploy/ipi-baremetalds-virt/roles/config
8,088
[ "permissive" ]
[ { "path": "deploy/ipi-baremetalds-virt/roles/config/README.md", "content": "# Config Role\n\nThis role performs basic user configuration for the development environment.\n\n## Description\n\nThe config role sets up essential user configuration for bare metal development environments. It:\n\n1. Enables user ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1465, "all_permissive": true }
ansible_role
openshift-eng/two-node-toolbox
25eb62e726308368b0a71bc196389ec232f8ab8c
0
deploy/ipi-baremetalds-virt/roles/install-dev
8,088
[ "permissive" ]
[ { "path": "deploy/ipi-baremetalds-virt/roles/install-dev/tasks/proxy.yml", "content": "- name: get kubeconfig\n fetch:\n src: \"{{kubeconfig_path}}\"\n dest: ./kubeconfig\n flat: true\n- name: get kubeadmin-password\n fetch:\n src: \"{{kubeadmin_password_path}}\"\n dest: ./kubeadmin-passwor...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 10, "total_bytes": 7554, "all_permissive": true }
ansible_role
openshift-eng/two-node-toolbox
25eb62e726308368b0a71bc196389ec232f8ab8c
0
deploy/ipi-baremetalds-virt/roles/redfish
8,088
[ "permissive" ]
[ { "path": "deploy/ipi-baremetalds-virt/roles/redfish/defaults/main.yml", "content": "---\n# Default variables for the redfish role\n# These variables can be overridden when calling the role\n\n# BMH namespace where Bare Metal Hosts are deployed\nbmh_namespace: \"openshift-machine-api\"\n\n# SSL certificate ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 12188, "all_permissive": true }
ansible_role
1exanOK/jenkins_sf
f15a3e209e45e34b190f5fcf9498802dc795bf25
0
B6.9.2/roles/dnsmasq
8,095
[ "no_license" ]
[ { "path": "B6.9.2/roles/dnsmasq/tasks/main.yml", "content": "---\n- name: Install dnsmasq\n apt:\n name: dnsmasq\n state: present\n update_cache: yes\n\n- name: Deploy dnsmasq config\n template:\n src: dnsmasq.conf.j2\n dest: /etc/dnsmasq.conf\n mode: '0644'\n notify: Restart dnsmasq\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 435, "all_permissive": false }
ansible_role
1exanOK/jenkins_sf
f15a3e209e45e34b190f5fcf9498802dc795bf25
0
B6.9.2/roles/nginx_php
8,095
[ "no_license" ]
[ { "path": "B6.9.2/roles/nginx_php/tasks/main.yml", "content": "---\n- name: Install nginx and php-fpm\n apt:\n name:\n - nginx\n - php-fpm\n state: present\n update_cache: yes\n\n- name: Create DocumentRoot\n file:\n path: /opt/nginx/ansible\n state: directory\n owner: www-data...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1145, "all_permissive": false }
ansible_role
1exanOK/jenkins_sf
f15a3e209e45e34b190f5fcf9498802dc795bf25
0
PAW_5&6/roles/http
8,095
[ "no_license" ]
[ { "path": "PAW_5&6/roles/http/tasks/main.yml", "content": "---\n- name: Install nginx\n apt:\n name: nginx\n state: present\n update_cache: yes\n\n- name: Configure nginx for PHP via 9000 port\n copy:\n dest: /etc/nginx/sites-available/default\n content: |\n server {\n listen ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 749, "all_permissive": false }
ansible_role
1exanOK/jenkins_sf
f15a3e209e45e34b190f5fcf9498802dc795bf25
0
PAW_5&6/roles/php
8,095
[ "no_license" ]
[ { "path": "PAW_5&6/roles/php/tasks/main.yml", "content": "---\n- name: Install php-fpm\n apt:\n name: php-fpm\n state: present\n update_cache: yes\n\n- name: Configure php-fpm to listen on 9000 port\n lineinfile:\n path: /etc/php/8.1/fpm/pool.d/www.conf\n regexp: '^listen ='\n line: 'lis...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 391, "all_permissive": false }
ansible_role
1exanOK/jenkins_sf
f15a3e209e45e34b190f5fcf9498802dc795bf25
0
PAW_5&6/roles/users
8,095
[ "no_license" ]
[ { "path": "PAW_5&6/roles/users/tasks/main.yml", "content": "---\n- name: Ensure user exists\n user:\n name: user1\n state: present\n shell: /bin/bash\n\n- name: Create .ssh directory\n file:\n path: /home/user1/.ssh\n state: directory\n owner: user1\n group: user1\n mode: '0700'\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 366, "all_permissive": false }
ansible_role
h4rikris/DHIS2-vagrant
d16c8044e7b8d808a8b1537d253a8ade31354746
0
roles/deploy
8,095
[ "no_license" ]
[ { "path": "roles/deploy/tasks/main.yml", "content": "---\n- name: get war file to remote server\n get_url: url=https://www.dhis2.org/download/releases/2.23/dhis.war dest=/usr/share/tomcat/webapps/ROOT.war owner=tomcat group=tomcat mode=0751\n\n- name: restart tomcat\n service: name=tomcat state=restarted\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 250, "all_permissive": false }
ansible_role
h4rikris/DHIS2-vagrant
d16c8044e7b8d808a8b1537d253a8ade31354746
0
roles/postgres
8,095
[ "no_license" ]
[ { "path": "roles/postgres/tasks/main.yml", "content": "---\n\n- name: install python software properties\n apt: pkg=python-software-properties state=latest force=yes update_cache=yes\n\n- name: install ca ceritificates\n apt: pkg=ca-certificates state=latest\n\n- name: install the postgresql.org signing k...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1654, "all_permissive": false }
ansible_role
h4rikris/DHIS2-vagrant
d16c8044e7b8d808a8b1537d253a8ade31354746
0
roles/tomcat
8,095
[ "no_license" ]
[ { "path": "roles/tomcat/tasks/main.yml", "content": "---\r\n- name: add group \"tomcat\"\r\n group: name=tomcat\r\n\r\n- name: add user \"tomcat\"\r\n user: name=tomcat group=tomcat home=/usr/share/tomcat\r\n sudo: True\r\n\r\n- name: delete home dir for symlink of tomcat\r\n shell: rm -fr /usr/share/to...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1384, "all_permissive": false }