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
voltun/COMP90024-S1-2021-A2
5740a5f2c4880a18a8491f9da583b2fc6037c9c4
0
Ansible/roles/webapp-setup
1,879
[ "no_license" ]
[ { "path": "Ansible/roles/webapp-setup/tasks/main.yaml", "content": "---\n\n# Install WebApp dependencies\n- name: Install dependencies\n become: yes\n apt:\n name: ['nodejs', 'npm']\n force_apt_get: yes\n state: present\n\n# Clone github repo\n- name: Clone git repo\n git:\n repo: https://git...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 301, "all_permissive": false }
ansible_role
dmgukov/hw17-ansible-2
4a2845b881761b5e4dfb0e49f58dcbe92364ff62
0
roles/nginx.setup
1,879
[ "no_license" ]
[ { "path": "roles/nginx.setup/tasks/main.yml", "content": "- name: Installing Nginx\n ansible.builtin.apt: \n name: nginx\n state: present\n force_apt_get: true\n update_cache: true\n cache_valid_time: 3600\n- name: Ensure that Nginx service is running\n ansible.builtin.service:\n name: n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 786, "all_permissive": false }
ansible_role
jebikirogi/ansible-h
230f3c8b739db629b693439138bdb6bd7579d2a7
0
ansible-wordpress/roles/ansible-mysql-role
1,879
[ "no_license" ]
[ { "path": "ansible-wordpress/roles/ansible-mysql-role/tasks/main.yml", "content": "---\n- name: Install MySQL\n package:\n name: mariadb-server\n state: latest\n \n- name: Install MySQL Client\n package:\n name: mariadb\n state: latest\n\n- name: Start MySQL\n service:\n name: mariadb\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1360, "all_permissive": false }
ansible_role
jebikirogi/ansible-h
230f3c8b739db629b693439138bdb6bd7579d2a7
0
ansible-wordpress/roles/ansible-wordpress-role
1,879
[ "no_license" ]
[ { "path": "ansible-wordpress/roles/ansible-wordpress-role/defaults/main.yml", "content": "---\nmysql_db: \"wordpress\"\nmysql_user: \"wpuser\"\nmysql_password: \"<PASSWORD>\"\nmysql_host: \"127.0.0.1\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "pat...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4241, "all_permissive": false }
ansible_role
Xhmx1203/ansible-k8s-centos7
1cc0e6dbaaeb7f94e1832e7d99c5ed8df9aba0a2
0
roles/common
1,879
[ "no_license" ]
[ { "path": "roles/common/tasks/05.swapoff.yml", "content": "- name: swap off\n shell: \"swapoff -a\"\n\n- name: write to fstable swap off\n replace:\n dest: /etc/fstab\n regexp: '^/dev/mapper/centos-swap'\n replace: '#/dev/mapper/centos-swap'\n\n", "license_type": "no_license", "detected_l...
{ "task_files": 11, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 14, "total_bytes": 3628, "all_permissive": false }
ansible_role
jacksonfdam/sre
a3ef23a155703afc228b8704c23f149f33311a49
0
lab07/roles/nginx-website
1,879
[ "no_license" ]
[ { "path": "lab07/roles/nginx-website/defaults/main.yml", "content": "---\n# defaults file for roles/nginx-website", "license_type": "no_license", "detected_licenses": [], "size_bytes": 43 }, { "path": "lab07/roles/nginx-website/tasks/main.yml", "content": "---\n- name: nginx-website ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 893, "all_permissive": false }
ansible_role
jacksonfdam/sre
a3ef23a155703afc228b8704c23f149f33311a49
0
lab08/roles/gitlab
1,879
[ "no_license" ]
[ { "path": "lab08/roles/gitlab/vars/main.yml", "content": "---\n# vars file for roles/gitlab\n\ngitlab_fqdn: \"https://gitlab2.targettrust.test/\"\n\ngitlab_time_zone: 'America/Sao_Paulo'\n\ngitlab_nginx_client_max_body_size: '250m'\n\ngitlab_nginx_redirect_http_to_https: 'True'\n\ngitlab_signup_enabled: 'tr...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3448, "all_permissive": false }
ansible_role
jacksonfdam/sre
a3ef23a155703afc228b8704c23f149f33311a49
0
lab09/roles/common
1,879
[ "no_license" ]
[ { "path": "lab09/roles/common/tasks/main.yml", "content": "---\n# tasks file for roles/common\n\n- name: Docker | Upgrade all packages\n yum: name=* state=latest\n\n\n- name: Docker | Check if Docker is installed\n command: systemctl status docker\n register: docker_check\n ignore_errors: yes \n \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1523, "all_permissive": false }
ansible_role
jacksonfdam/sre
a3ef23a155703afc228b8704c23f149f33311a49
0
lab11/roles/server
1,879
[ "no_license" ]
[ { "path": "lab11/roles/server/tasks/main.yml", "content": "---\n# tasks file for roles/server\n\n- name: Install a list of packages\n yum:\n name:\n - epel-release\n state: present\n\n- name: APP | Install Dependencies\n shell: yum install -y python36 python36-devel python36-setuptools bash\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 957, "all_permissive": false }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/common
1,879
[ "permissive" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# TODO: This role can be done in cobbler!!\n# This role contains common plays that will run on all nodes.\n\n- name: Remove all the repo\n shell: rm -rf /etc/yum.repos.d/*.repo\n\n# TODO: use template to support different repo address\n- name: Creat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1862, "all_permissive": true }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/horizon
1,879
[ "permissive" ]
[ { "path": "roles/horizon/tasks/main.yml", "content": "---\n# This role is used to deploy and config horizon service\n\n- name: Install horizon package\n yum: name={{ item }} state=present\n with_items:\n - memcached\n - python-memcached\n - mod_wsgi\n - openstack-dashboard\n\n- name: Configure hor...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 561, "all_permissive": true }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/mysql
1,879
[ "permissive" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n# This role will install MySQL and create db user and give permissions.\n\n- name: Install Mysql package\n yum: name={{ item }} state=present\n with_items:\n - mariadb\n - mariadb-galera-server\n - MySQL-python\n\n- name: Create Mysql confi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 978, "all_permissive": true }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/mysqlcluster_finish
1,879
[ "permissive" ]
[ { "path": "roles/mysqlcluster_finish/tasks/main.yml", "content": "---\n# This role will join MySQL galera cluster\n- name: Stop Mysql Service\n service: name=mariadb state=stopped enabled=true\n\n- name: Create Mysql galera configuration file\n template: src=etc/my.cnf.d/galera.cnf.finish.j2 dest=/etc/my....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 360, "all_permissive": true }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/mysqlcluster_init
1,879
[ "permissive" ]
[ { "path": "roles/mysqlcluster_init/tasks/main.yml", "content": "---\n# This role will init MySQL galera cluster\n- name: Stop Mysql Service\n service: name=mariadb state=stopped enabled=true\n\n- name: Create Mysql galera configuration file\n template: src=etc/my.cnf.d/galera.cnf.init.j2 dest=/etc/my.cnf....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 357, "all_permissive": true }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/neutron_compute
1,879
[ "permissive" ]
[ { "path": "roles/neutron_compute/tasks/main.yml", "content": "---\n# This role is used to deploy and config neutron on compute node\n- name: Config sysctl net.ipv4.conf.all.rp_filter\n sysctl: name=net.ipv4.conf.all.rp_filter value=0 state=present \n\n- name: Config sysctl net.ipv4.conf.default.rp_filter\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1767, "all_permissive": true }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/neutron_network
1,879
[ "permissive" ]
[ { "path": "roles/neutron_network/handlers/main.yml", "content": "---\n- name: restart neutron-openvswitch-agent\n service: name=neutron-openvswitch-agent state=restarted\n\n- name: restart neutron-l3-agent\n service: name=neutron-l3-agent state=restarted\n\n- name: restart neutron-lbaas-agent\n service: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 4022, "all_permissive": true }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/nova_compute
1,879
[ "permissive" ]
[ { "path": "roles/nova_compute/tasks/main.yml", "content": "---\n# This role is used to deploy and config nova service on compute node\n\n- name: Install nova-compute package\n yum: name=openstack-nova-compute state=present\n\n- name: Configure nova config\n template: src=etc/nova/nova.conf.compute.j2 dest...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1489, "all_permissive": true }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/nova_controller
1,879
[ "permissive" ]
[ { "path": "roles/nova_controller/handlers/main.yml", "content": "---\n- name: restart openstack-nova-api\n service: name=openstack-nova-api state=restarted\n\n- name: restart openstack-nova-cert\n service: name=openstack-nova-cert state=restarted\n\n- name: restart openstack-nova-consoleauth\n service:...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 3548, "all_permissive": true }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/rabbitmqcluster
1,879
[ "permissive" ]
[ { "path": "roles/rabbitmqcluster/tasks/main.yml", "content": "---\n# This role will install RabbitMQ and config RabbitMQ User\n\n- name: Install RabbitMQ\n yum: name=rabbitmq-server state=present\n\n- name: Modify erlang.cookie\n copy: src=var/lib/rabbitmq/erlang.cookie dest=/var/lib/rabbitmq/.erlang.cook...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1423, "all_permissive": true }
ansible_role
feli5/ocp-deploy
9ba98307e5ae27bec4fd78b6fa73ed8289934b8e
0
roles/upgrade
1,879
[ "permissive" ]
[ { "path": "roles/upgrade/tasks/main.yml", "content": "---\n# This role contains common plays that will run on all nodes.\n- name: upgrade all packages\n yum: name=* state=latest\n register: upgrade\n\n# Centos 7 will shutdown stop system, to protect this, we need 1 min delay\n- name: restart machine\n sh...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 525, "all_permissive": true }
ansible_role
austinsherron/self-hosting
8b3bd976e09b6e49bd3b7ecd5bbf61b3e320b594
0
ansible/roles/git_repo
1,879
[ "no_license" ]
[ { "path": "ansible/roles/git_repo/defaults/main.yaml", "content": "git_repo_url: ~\ngit_dest_dir: ~\ngit_branch: master\n\ngit_repo: \"{{ git_repo_url.split('/')[-1] }}\"\ngit_repo_name: \"{{ git_repo.split('.')[0] }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 144...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 910, "all_permissive": false }
ansible_role
austinsherron/self-hosting
8b3bd976e09b6e49bd3b7ecd5bbf61b3e320b594
0
ansible/roles/mount_nfs
1,879
[ "no_license" ]
[ { "path": "ansible/roles/mount_nfs/tasks/main.yaml", "content": "- name: Ensure system is updated\n apt:\n update_cache: yes\n upgrade: dist\n\n- name: Ensure NFS client utilities are installed\n apt:\n name: nfs-common\n state: present\n update_cache: yes\n\n- name: \"Create {{ mount_point...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1174, "all_permissive": false }
ansible_role
austinsherron/self-hosting
8b3bd976e09b6e49bd3b7ecd5bbf61b3e320b594
0
ansible/roles/terraform
1,879
[ "no_license" ]
[ { "path": "ansible/roles/terraform/tasks/main.yaml", "content": "- name: \"Initialize {{ component_name }} Terraform\"\n command:\n cmd: terraform init\n chdir: \"{{ terraform_dir }}\"\n\n- name: \"Run {{ component_name }} Terraform plan\"\n command:\n cmd: terraform plan {{ tf_flags }}\n chdi...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 581, "all_permissive": false }
ansible_role
Saadovich/Web-CountVistors
a02bb5f43379469bf03873925395897c73505b18
0
Ansible-WebCountVisitors/roles/common
1,879
[ "no_license" ]
[ { "path": "Ansible-WebCountVisitors/roles/common/tasks/main.yml", "content": "- name: Update apt repository and cache\n package:\n update_cache: yes\n\n#- name: Install Docker\n# package:\n# name: docker.io\n# state: latest\n# when: ansible_distribution == \"Ubuntu\"\n\n- name: Add Docker's off...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 920, "all_permissive": false }
ansible_role
Saadovich/Web-CountVistors
a02bb5f43379469bf03873925395897c73505b18
0
Ansible-WebCountVisitors/roles/webapp
1,879
[ "no_license" ]
[ { "path": "Ansible-WebCountVisitors/roles/webapp/handlers/main.yml", "content": "- name: restart webapp\n systemd:\n name: webapp\n state: restarted\n enabled: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "Ansible-WebCountVisitors...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 490, "all_permissive": false }
ansible_role
spmarin/bigeekie-ansible
7c3d0f1754d6eca85dd75e90c1ab328220395577
0
roles/basic-setup
1,879
[ "no_license" ]
[ { "path": "roles/basic-setup/tasks/main.yml", "content": "####################################################################\n# Customize Machine\n####################################################################\n- name: Setting hostname in {{ machine_name }}\n register: hostname_result\n hostname:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1476, "all_permissive": false }
ansible_role
spmarin/bigeekie-ansible
7c3d0f1754d6eca85dd75e90c1ab328220395577
0
roles/server
1,879
[ "no_license" ]
[ { "path": "roles/server/tasks/main.yml", "content": "- name: ensure apache is at the latest version\n apt: name=apache2 state=latest\n become: true\n\n- name: change default index page\n copy: src=\"{{ item }}\" dest=/var/www/html/{{ item }}\n with_items:\n - index.html\n - style.css\n become: tr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 655, "all_permissive": false }
ansible_role
tokyo-farmers/isucon-ansible
84ca464d6d8ddbe7f288a397301c0e2fad364cd6
0
roles/make_user
1,879
[ "no_license" ]
[ { "path": "roles/make_user/tasks/user.yml", "content": "# make user\n- name: Add {{ item }} user\n user: name={{ item }} groups=wheel state=present shell=/bin/bash\n\n- name: Configure {{ item }} user directory\n file: path=/home/{{ item }} owner={{ item }} group=users mode=0755\n\n- name: Make directory ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 764, "all_permissive": false }
ansible_role
tokyo-farmers/isucon-ansible
84ca464d6d8ddbe7f288a397301c0e2fad364cd6
0
roles/master
1,879
[ "no_license" ]
[ { "path": "roles/master/tasks/main.yml", "content": " - name: Get jenkins yum repository\n yum_repository:\n name: jenkins\n description: jenkins yum repo\n baseurl: http://pkg.jenkins-ci.org/redhat-stable/\n\n - name: Install jenkins-ci.org.key\n rpm_key:\n key: http://p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1302, "all_permissive": false }
ansible_role
tokyo-farmers/isucon-ansible
84ca464d6d8ddbe7f288a397301c0e2fad364cd6
0
roles/web-install
1,879
[ "no_license" ]
[ { "path": "roles/web-install/tasks/main.yml", "content": "---\n- name: Disable SELinux\n selinux: state=disabled\n\n- name: Configure sudoers\n copy: >\n src=./../templates/sudoers\n dest=/etc/sudoers\n owner=root\n group=root\n mode=0440\n\n- name: Change timezone to Asia/Tokyo\n shell: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4574, "all_permissive": false }
ansible_role
Datanexus/openshift
76aed6046bafac5684f54048ad9d16129f81c895
0
roles/aws
1,879
[ "permissive" ]
[ { "path": "roles/aws/tasks/create-securitygroup.yml", "content": "# (c) 2016 DataNexus Inc. All Rights Reserved.\n#\n# create AWS openshift security group rules\n---\n- name: OPENSHIFT OVERLAY | creating openshift security group\n local_action:\n module: ec2_group\n name: \"dnsg_{{ project }}_opensh...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2944, "all_permissive": true }
ansible_role
Datanexus/openshift
76aed6046bafac5684f54048ad9d16129f81c895
0
roles/openshift
1,879
[ "permissive" ]
[ { "path": "roles/openshift/tasks/main.yml", "content": "# (c) Copyright 2016 DataNexus Inc. All Rights Reserved.\n#\n# install openshift\n---\n- set_fact: install_dir=/usr/local/src\n \n# - block:\n#\n# # we use the HTTPS protocol instead of SSH because it's a public repo without authentication\n# - n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2015, "all_permissive": true }
ansible_role
Datanexus/openshift
76aed6046bafac5684f54048ad9d16129f81c895
0
roles/preflight
1,879
[ "permissive" ]
[ { "path": "roles/preflight/tasks/install-docker.yml", "content": "# (c) Copyright 2016 DataNexus Inc. All Rights Reserved.\n#\n# install docker packages\n---\n- block:\n \n - name: OPENSHIFT DOCKER OVERLAY | adding docker repo\n command: yum-config-manager --add-repo https://download.docker.com/linux/...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3286, "all_permissive": true }
ansible_role
wtnb75/kubegrant
771b2ca28e36a1c256bfcc3b01d57de21f85946e
0
ansible/roles/base
1,879
[ "no_license" ]
[ { "path": "ansible/roles/base/tasks/package_yum.yml", "content": "- name: install common package\n yum: update_cache=yes name=\"{{ base_packages }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 }, { "path": "ansible/roles/base/tasks/storage_ubuntu.yml", ...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 1083, "all_permissive": false }
ansible_role
wtnb75/kubegrant
771b2ca28e36a1c256bfcc3b01d57de21f85946e
0
ansible/roles/db
1,879
[ "no_license" ]
[ { "path": "ansible/roles/db/tasks/ubuntu.yml", "content": "- name: package\n apt: name=mysql-server update_cache=yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 58 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 58, "all_permissive": false }
ansible_role
wtnb75/kubegrant
771b2ca28e36a1c256bfcc3b01d57de21f85946e
0
ansible/roles/docker
1,879
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/ubuntu.yml", "content": "- name: apt key\n apt_key: url=https://download.docker.com/linux/ubuntu/gpg\n- name: name\n command: lsb_release -cs\n register: lsbrel\n- name: repo\n apt_repository:\n repo: deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ l...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1362, "all_permissive": false }
ansible_role
wtnb75/kubegrant
771b2ca28e36a1c256bfcc3b01d57de21f85946e
0
ansible/roles/helm
1,879
[ "no_license" ]
[ { "path": "ansible/roles/helm/tasks/main.yml", "content": "- name: download\n unarchive:\n src: https://get.helm.sh/helm-{{ helm_version|default(\"v2.14.3\") }}-linux-amd64.tar.gz\n remote_src: yes\n dest: /tmp\n creates: /tmp/linux-amd64\n- name: tiller\n command: mv /tmp/linux-amd64/tiller /...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 404, "all_permissive": false }
ansible_role
wtnb75/kubegrant
771b2ca28e36a1c256bfcc3b01d57de21f85946e
0
ansible/roles/iscsi
1,879
[ "no_license" ]
[ { "path": "ansible/roles/iscsi/tasks/centos.yml", "content": "- name: install package\n yum:\n name:\n - targetd\n - iscsi-initiator-utils\n- name: service\n service: name={{item}} state=started enabled=yes\n with_items:\n - iscsi\n - iscsid\n - iscsiuio\n", "license_type": "no_...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 821, "all_permissive": false }
ansible_role
wtnb75/kubegrant
771b2ca28e36a1c256bfcc3b01d57de21f85946e
0
ansible/roles/k8s_master
1,879
[ "no_license" ]
[ { "path": "ansible/roles/k8s_master/tasks/main.yml", "content": "- name: initialize\n shell: kubeadm init --apiserver-advertise-address={{ internal_ip }} --pod-network-cidr=172.16.0.0/16 > /tmp/kubeadm-init.log 2>&1\n args:\n creates: /root/.kube\n- name: mkdir(root)\n file: path=/root/.kube state=dir...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1152, "all_permissive": false }
ansible_role
wtnb75/kubegrant
771b2ca28e36a1c256bfcc3b01d57de21f85946e
0
ansible/roles/kubelet
1,879
[ "no_license" ]
[ { "path": "ansible/roles/kubelet/tasks/centos.yml", "content": "- name: config\n template: src=kubelet.conf dest=/etc/sysconfig/kubelet\n- name: repo\n template: src=k8s.repo dest=/etc/yum.repos.d/k8s.repo owner=root group=root mode=0644\n- name: selinux\n selinux: state=permissive policy=targeted\n- nam...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1370, "all_permissive": false }
ansible_role
rlaecio/ansible
1447edd76f7e3794bf1047938d851f581e570a4d
0
roles/mysql
1,879
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n- name: 'Instala pacotes de dependencia do sistema operacional'\n mysql_db:\n name: \"{{ wp_db_name }}\"\n login_user: root\n login_password: '<PASSWORD>'\n state: present\n \n- name: 'Cria o usuário do MySQL'\n mysql_user:\n login...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 644, "all_permissive": false }
ansible_role
rlaecio/ansible
1447edd76f7e3794bf1047938d851f581e570a4d
0
roles/webserver
1,879
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "---\n- name: 'Instala pacotes de dependencia do sistema operacional'\n apt:\n name: \"{{ packages }}\"\n state: latest\n become: yes\n vars:\n packages:\n - php\n - apache2\n - libapache2-mod-php\n - php-gd\n - php-ssh2\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 262, "all_permissive": false }
ansible_role
rlaecio/ansible
1447edd76f7e3794bf1047938d851f581e570a4d
0
roles/wordpress
1,879
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "---\n - name: 'Baixa os arquivos de instalacao do wordpress'\n get_url:\n url: 'https://wordpress.org/latest.tar.gz'\n dest: '/tmp/wordpress.tar.gz'\n\n - name: 'Descompactar o wordpress'\n unarchive:\n src: '/tmp/wordpress.tar.g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1216, "all_permissive": false }
ansible_role
git-ender/tw
6fb3bf8be4292ef70fcd68952cd9613bb67f14cf
0
roles/tw-docker_app
1,879
[ "no_license" ]
[ { "path": "roles/tw-docker_app/README.md", "content": "# tw-docker_app\nThis role is just and exercise. It builds a docker image from a dockefile on remote hosts and start some containers from it, acconding to config files.\n\n# Requirements\n\n* Ansible >= 2.1\n* Python >= 2.6\n* Docker-py >= 1.7.0\n* Dock...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4990, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/atftp
1,919
[ "no_license" ]
[ { "path": "roles/atftp/handlers/main.yml", "content": "---\n- name: restart atftp\n systemd:\n name: atftp\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 }, { "path": "roles/atftp/tasks/main.yml", "content": "---\n- name: install...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 831, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/certbot
1,919
[ "no_license" ]
[ { "path": "roles/certbot/tasks/main.yml", "content": "---\n- name: install certbot\n portage:\n package: certbot\n state: present\n\n- name: get certificate\n command: >\n certbot certonly\n --domain {{ item }}\n --standalone\n --email <EMAIL>\n --agree-tos\n --no-eff-email\n --...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 990, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/cli
1,919
[ "no_license" ]
[ { "path": "roles/cli/tasks/main.yml", "content": "---\n- name: configure /etc/portage/package.use/*\n copy:\n src: \"package.use/{{ item }}\"\n dest: \"/etc/portage/package.use/{{ item }}\"\n with_items:\n - feh\n - iputils\n\n- name: install cli applications\n portage:\n package: \"{{ ite...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 519, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/glibc
1,919
[ "no_license" ]
[ { "path": "roles/glibc/tasks/main.yml", "content": "---\n- name: create /etc/portage/patches/sys-libs/glibc directorys\n file:\n path: \"/etc/portage/patches/{{ item }}\"\n mode: 0755\n state: directory\n with_items:\n - sys-libs\n - sys-libs/glibc\n\n- name: install UTF-8-CJK.patch\n copy...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 756, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/go-overlay
1,919
[ "no_license" ]
[ { "path": "roles/go-overlay/tasks/main.yml", "content": "---\n- name: install go-overlay.conf\n copy:\n src: go-overlay.conf\n dest: /etc/portage/repos.conf/go-overlay.conf\n register: result\n\n- name: sync go-overlay repository\n command: emerge --sync go-overlay\n when: result.changed\n", "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 233, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/greetd
1,919
[ "no_license" ]
[ { "path": "roles/greetd/tasks/main.yml", "content": "---\n- name: configure /etc/portage/package.accept_keywords/*\n copy:\n src: \"package.accept_keywords/{{ item }}\"\n dest: \"/etc/portage/package.accept_keywords/{{ item }}\"\n with_items:\n - greetd\n\n- name: install greetd and tuigreet\n p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 463, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/gui
1,919
[ "no_license" ]
[ { "path": "roles/gui/tasks/main.yml", "content": "---\n- name: configure /etc/portage/package.use/*\n copy:\n src: \"package.use/{{ item }}\"\n dest: \"/etc/portage/package.use/{{ item }}\"\n with_items:\n - abcde\n - mpv\n - pavucontrol\n - rxvt-unicode\n - vivaldi\n - zathura-pdf...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 845, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/iptables
1,919
[ "no_license" ]
[ { "path": "roles/iptables/templates/ip6tables/rules-save.j2", "content": "{% for table in ip6tables.keys() %}\n*{{ table }}\n{% for chain in ip6tables[table].keys() %}\n:{{ chain }} {{ ip6tables[table][chain]['policy'] }} [0:0]\n{% endfor %}\n{% for chain in ip6tables[table].keys() %}\n{% for rule in ip6tab...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 4764, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/lightdm
1,919
[ "no_license" ]
[ { "path": "roles/lightdm/tasks/main.yml", "content": "---\n- name: configure /etc/portage/package.use/*\n copy:\n src: \"package.use/{{ item }}\"\n dest: \"/etc/portage/package.use/{{ item }}\"\n with_items:\n - lightdm\n\n- name: configure /etc/portage/package.accept_keywords/*\n copy:\n src...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 518, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/openssh
1,919
[ "no_license" ]
[ { "path": "roles/openssh/tasks/main.yml", "content": "---\n- name: configure /etc/portage/package.use/openssh\n copy:\n src: package.use/openssh\n dest: /etc/portage/package.use/openssh\n when: openssh.xforwarding\n\n- name: install openssh\n portage:\n package: openssh\n state: present\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1263, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/portage
1,919
[ "no_license" ]
[ { "path": "roles/portage/tasks/main.yml", "content": "---\n- name: create portage directorys\n file:\n path: \"/etc/portage/{{ item }}\"\n mode: 0755\n state: directory\n with_items:\n - package.use\n - package.accept_keywords\n - package.license\n - patches\n - repos.conf\n\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1399, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/prince
1,919
[ "no_license" ]
[ { "path": "roles/prince/meta/main.yml", "content": "---\ndependencies:\n - { role: portage }\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "roles/prince/tasks/main.yml", "content": "---\n- name: create app-text/prince directorys\n file:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1208, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/qtile
1,919
[ "no_license" ]
[ { "path": "roles/qtile/tasks/main.yml", "content": "---\n- name: configure /etc/portage/package.use/*\n copy:\n src: \"package.use/{{ item }}\"\n dest: \"/etc/portage/package.use/{{ item }}\"\n with_items:\n - qtile\n - dunst\n\n- name: install qtile and some packages\n portage:\n package:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 336, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/samba
1,919
[ "no_license" ]
[ { "path": "roles/samba/handlers/main.yml", "content": "---\n- name: restart samba\n systemd:\n name: \"{{ item }}\"\n state: restarted\n with_items:\n - smb\n - nmb\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 115 }, { "path": "roles/samba/tasks/...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1518, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/sway
1,919
[ "no_license" ]
[ { "path": "roles/sway/meta/main.yml", "content": "---\ndependencies:\n - { role: wofi }\n - { role: swaylock-effects }\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 68 }, { "path": "roles/sway/tasks/main.yml", "content": "---\n- name: configure /etc/porta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 596, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/swaylock-effects
1,919
[ "no_license" ]
[ { "path": "roles/swaylock-effects/tasks/main.yml", "content": "---\n- name: create gui-apps/swaylock-effects directorys\n file:\n path: \"/var/db/repos/local/{{ item }}\"\n mode: 0755\n state: directory\n with_items:\n - gui-apps\n - gui-apps/swaylock-effects\n\n- name: install gui-apps/swa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 715, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/systemd
1,919
[ "no_license" ]
[ { "path": "roles/systemd/tasks/main.yml", "content": "---\n- name: set timezone\n file:\n src: /usr/share/zoneinfo/Asia/Tokyo\n dest: /etc/localtime\n state: link\n\n- name: enable systemd-timesyncd\n systemd:\n name: systemd-timesyncd\n enabled: yes\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 204, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/wofi
1,919
[ "no_license" ]
[ { "path": "roles/wofi/tasks/main.yml", "content": "---\n- name: create gui-apps/wofi directorys\n file:\n path: \"/var/db/repos/local/{{ item }}\"\n mode: 0755\n state: directory\n with_items:\n - gui-apps\n - gui-apps/wofi\n\n- name: install gui-apps/wofi/*\n copy:\n src: \"{{ item }}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 423, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/xorg-client
1,919
[ "no_license" ]
[ { "path": "roles/xorg-client/tasks/main.yml", "content": "---\n- name: configure /etc/portage/package.use/*\n copy:\n src: \"package.use/{{ item }}\"\n dest: \"/etc/portage/package.use/{{ item }}\"\n with_items:\n - ibus-skk\n\n- name: configure /etc/portage/package.accept_keywords/*\n copy:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 726, "all_permissive": false }
ansible_role
wacky612/grimoire
b633ed9c9bd9bfcb7d43b7369220ae672eccdcd6
0
roles/xorg-server
1,919
[ "no_license" ]
[ { "path": "roles/xorg-server/tasks/main.yml", "content": "---\n- name: modify /etc/portage/make.conf\n lineinfile:\n path: /etc/portage/make.conf\n regexp: \"^#?{{ item.key }}\"\n line: \"{{ item.key }}=\\\"{{ item.value }}\\\"\"\n with_items:\n - { key: VIDEO_CARDS, value: \"{{ xorg.video_car...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 752, "all_permissive": false }
ansible_role
Rahul22Joy/demo-super-automation
127fc265294167a34b1fa9bd26a3be428c6ddfc7
0
roles/triggers
1,919
[ "no_license" ]
[ { "path": "roles/triggers/tasks/main.yml", "content": "- name: copying the files to object servers\n copy: src={{ item.src}} dest={{ item.dest}}\n with_items:\n - { src: 'triggers/automation.sql', dest: '/opt/IBM/tivoli/netcool/omnibus/tmp/automation.sql' }\n\n- name: Deploying the object server trigge...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 483, "all_permissive": false }
ansible_role
SFedyanov/mysql
66e4d13687c0d7d0f8c751c2a26e91f01d28d782
0
roles/linux-config
1,919
[ "no_license" ]
[ { "path": "roles/linux-config/defaults/main.yaml", "content": "skip_task: false\nwork_dir: /opt/mariadb\nmariadb_version: 10.8\nreinstall_mariadb: false\nmariadb_pkgs:\n - mariadb-server\n - galera-4\n - mariadb-client\n - libmariadb3\n - mariadb-backup\n - mariadb-common\n - python3-pip\n", "lic...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1895, "all_permissive": false }
ansible_role
SFedyanov/mysql
66e4d13687c0d7d0f8c751c2a26e91f01d28d782
0
roles/mariadb-config
1,919
[ "no_license" ]
[ { "path": "roles/mariadb-config/templates/my.cnf.j2", "content": "[client]\nuser=root\npassword={{ <PASSWORD> }}\n\n[mysql]\nuser=root\npassword={{ <PASSWORD> }}\n\n[mysqldump]\nuser=root\npassword={{ <PASSWORD> }}\n\n[mysqldiff]\nuser=root\npassword={{ <PASSWORD> }}\n", "license_type": "no_license", ...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 14, "total_bytes": 8220, "all_permissive": false }
ansible_role
stefenello/jenkins
5ba8ea095226c071cfcf7ce39879f87f6ec670db
0
roles/common
1,919
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# file: roles/common/tasks/main.yml\n \n- name: Asegurar que el cache de Yum este actualizado\n yum: \n update_cache: yes\n state: latest\n tags:\n - common\n\n- name: Actualizar todos los paquetes\n yum:\n name: \"*\"\n state: latest...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 462, "all_permissive": false }
ansible_role
stefenello/jenkins
5ba8ea095226c071cfcf7ce39879f87f6ec670db
0
roles/dependencies
1,919
[ "no_license" ]
[ { "path": "roles/dependencies/tasks/main.yml", "content": "---\n \n#file: /roles/dependencies/tasks/main.yml\n\n- name: install the latest version of wget\n yum:\n name: wget\n state: present\n tags:\n - dependencies\n\n- name: install the latest version of unzip\n yum:\n name: unzip\n state...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 376, "all_permissive": false }
ansible_role
stefenello/jenkins
5ba8ea095226c071cfcf7ce39879f87f6ec670db
0
roles/java8
1,919
[ "no_license" ]
[ { "path": "roles/java8/tasks/main.yml", "content": "---\n\n- name: Bajar Java 8\n #command: wget --no-cookies --no-check-certificate --header \"Cookie: gpw_e24=https//www.oracle.com/; oraclelicense=accept-securebackup-cookie\" \"http://download.oracle.com/otn-pub/java/jdk/8u131-b11/d54c1d3a095b4ff2b6607d09...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1053, "all_permissive": false }
ansible_role
stefenello/jenkins
5ba8ea095226c071cfcf7ce39879f87f6ec670db
0
roles/jenkins
1,919
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/main.yml", "content": "---\n \n# file: /roles/jenkins/tasks/main.yml\n\n- name: Import Jenkins Key\n rpm_key: \n key: '{{jenkins.yum_key}}' \n state: present\n tags: \n - jenkins\n\n- name: Download jenkins.repo\n get_url:\n url: '{{jenkins.repo}}'\n dest: '{{j...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1064, "all_permissive": false }
ansible_role
raja-moukhass/Setting-up-HAProxy-as-Load-Balancer-for-Nginx
3e3d2cdb9bc26ceb239a9654298005998c994f0b
0
roles/check-setup-docker
1,919
[ "no_license" ]
[ { "path": "roles/check-setup-docker/defaults/main.yml", "content": "---\n# defaults file for check-env", "license_type": "no_license", "detected_licenses": [], "size_bytes": 33 }, { "path": "roles/check-setup-docker/tasks/main.yml", "content": "---\n# tasks file for check-env\n \n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1906, "all_permissive": false }
ansible_role
raja-moukhass/Setting-up-HAProxy-as-Load-Balancer-for-Nginx
3e3d2cdb9bc26ceb239a9654298005998c994f0b
0
roles/check-setup-docker-compose
1,919
[ "no_license" ]
[ { "path": "roles/check-setup-docker-compose/vars/main.yml", "content": "---\n# vars file for check-setup-docker-compose\n\ndocker_compose_url : https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Linux-x86_64\n\n", "license_type": "no_license", "detected_licenses": [], "siz...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1007, "all_permissive": false }
ansible_role
raja-moukhass/Setting-up-HAProxy-as-Load-Balancer-for-Nginx
3e3d2cdb9bc26ceb239a9654298005998c994f0b
0
roles/run-compose-with-ansible
1,919
[ "no_license" ]
[ { "path": "roles/run-compose-with-ansible/vars/main.yml", "content": "---\n# vars file for run-compose-with-ansible\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 }, { "path": "roles/run-compose-with-ansible/defaults/main.yml", "content": "---\n# defaults...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 597, "all_permissive": false }
ansible_role
dataramblers/datahack-server-ansible
fb4e68b79349f256ff452204e4f486d25d281c62
0
roles/common
1,919
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Generate data folder\n file:\n path: \"{{data}}/images/\"\n state: directory\n- name: Install Uzip\n apt: name={{item}} state=installed\n with_items:\n - unzip\n- name: Updates the servers package list\n apt: update_cache=y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 845, "all_permissive": false }
ansible_role
dataramblers/datahack-server-ansible
fb4e68b79349f256ff452204e4f486d25d281c62
0
roles/data
1,919
[ "no_license" ]
[ { "path": "roles/data/tasks/main.yml", "content": "---\n#- name: Get 5025sah2 images data from the Sozialarchiv\n# unarchive:\n# src: https://data.stadt-zuerich.ch/dataset/9e986455-0a3d-4d55-94c7-9e903b61536e/resource/59371d00-6333-42f6-b20e-dc711c3c0ecd/download/5025sah2.zip\n# dest: /data/images/\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1484, "all_permissive": false }
ansible_role
dataramblers/datahack-server-ansible
fb4e68b79349f256ff452204e4f486d25d281c62
0
roles/dockercontainers
1,919
[ "no_license" ]
[ { "path": "roles/dockercontainers/tasks/10-configure-es.yml", "content": "---\n- name: Generate tmp folder for metadata\n file:\n path: /tmp/metadata\n state: directory\n- name: Load metadata from github\n unarchive:\n src: https://github.com/dataramblers/datenhack-sozarchiv/files/1769001/F_5...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 7076, "all_permissive": false }
ansible_role
dirkaholic/vagrant-php-dev-box
a15eb412eeab21ca25eca6f2584b613e9ed290aa
477
playbooks/roles/base
1,919
[ "no_license" ]
[ { "path": "playbooks/roles/base/tasks/main.yml", "content": "- name: Install required base packages\n apt: name={{ item }} state=present\n with_items:\n - curl\n - git\n - python-mysqldb\n - zip\n - unzip", "license_type": "no_license", "detected_licenses": [], "size_bytes": 153...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 153, "all_permissive": false }
ansible_role
dirkaholic/vagrant-php-dev-box
a15eb412eeab21ca25eca6f2584b613e9ed290aa
477
playbooks/roles/laravel-quickstart
1,919
[ "no_license" ]
[ { "path": "playbooks/roles/laravel-quickstart/templates/.env.j2", "content": "APP_ENV=local\nAPP_DEBUG=true\nAPP_KEY=a0888cfd6538f2ded11ed14b163eee30f732c5b8\nAPP_URL=http://192.168.50.4:8082/\n\nDB_HOST=127.0.0.1\nDB_DATABASE=laravel\nDB_USERNAME=laravel\nDB_PASSWORD=<PASSWORD>\n\nCACHE_DRIVER=file\nSESSIO...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3014, "all_permissive": false }
ansible_role
dirkaholic/vagrant-php-dev-box
a15eb412eeab21ca25eca6f2584b613e9ed290aa
477
playbooks/roles/mysql
1,919
[ "no_license" ]
[ { "path": "playbooks/roles/mysql/tasks/main.yml", "content": "---\n- name: Install MySQL\n apt: name=mysql-server state=present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 65 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 65, "all_permissive": false }
ansible_role
dirkaholic/vagrant-php-dev-box
a15eb412eeab21ca25eca6f2584b613e9ed290aa
477
playbooks/roles/nginx
1,919
[ "no_license" ]
[ { "path": "playbooks/roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx\n apt: name=nginx state=present\n\n- name: Copy across new nginx config\n template:\n src=nginx.conf.j2\n dest=/etc/nginx/nginx.conf\n notify:\n - restart nginx\n\n- name: Remove default virtual host\n file...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 324, "all_permissive": false }
ansible_role
dirkaholic/vagrant-php-dev-box
a15eb412eeab21ca25eca6f2584b613e9ed290aa
477
playbooks/roles/php
1,919
[ "no_license" ]
[ { "path": "playbooks/roles/php/defaults/main.yml", "content": "---\nphp_version: 7.0\ncomposer_process_timeout: 900", "license_type": "no_license", "detected_licenses": [], "size_bytes": 50 }, { "path": "playbooks/roles/php/tasks/main.yml", "content": "---\n- name: Add apt key for PH...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1074, "all_permissive": false }
ansible_role
dirkaholic/vagrant-php-dev-box
a15eb412eeab21ca25eca6f2584b613e9ed290aa
477
playbooks/roles/php-devtools
1,919
[ "no_license" ]
[ { "path": "playbooks/roles/php-devtools/tasks/main.yml", "content": "---\n- name: Download and install PHPUnit\n get_url: url=https://phar.phpunit.de/phpunit.phar dest=/usr/local/bin/phpunit mode=0755", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 130, "all_permissive": false }
ansible_role
dirkaholic/vagrant-php-dev-box
a15eb412eeab21ca25eca6f2584b613e9ed290aa
477
playbooks/roles/php-fpm
1,919
[ "no_license" ]
[ { "path": "playbooks/roles/php-fpm/tasks/main.yml", "content": "---\n- name: Install php-fpm\n apt: name=php{{ php_version }}-fpm state=present", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "playbooks/roles/php-fpm/handlers/main.yml", "conten...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 193, "all_permissive": false }
ansible_role
dirkaholic/vagrant-php-dev-box
a15eb412eeab21ca25eca6f2584b613e9ed290aa
477
playbooks/roles/symfony-standard
1,919
[ "no_license" ]
[ { "path": "playbooks/roles/symfony-standard/meta/main.yml", "content": "---\ndependencies:\n - { role: base }\n - { role: mysql }\n - { role: php-fpm }\n - { role: nginx }", "license_type": "no_license", "detected_licenses": [], "size_bytes": 98 }, { "path": "playbooks/roles/symfony-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2292, "all_permissive": false }
ansible_role
Francis-Ngethe-Ngari/infra-stack-create
d2ae2624d6757e924c2b53d65a5fd578cb46efb5
0
roles/prepare
1,919
[ "no_license" ]
[ { "path": "roles/prepare/tasks/main.yml", "content": "---\n- name: update apt packages\n become: true\n apt:\n update_cache: yes\n\n- name: upgrade packages\n become: true\n apt:\n upgrade: yes\n\n- name: remove dependencies that are longer required\n become: true\n apt:\n autoremove: yes", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 236, "all_permissive": false }
ansible_role
Francis-Ngethe-Ngari/infra-stack-create
d2ae2624d6757e924c2b53d65a5fd578cb46efb5
0
roles/setup
1,919
[ "no_license" ]
[ { "path": "roles/setup/tasks/main.yml", "content": "---\n- name: install dependencies\n become: true\n apt:\n name: [\"nodejs\", \"npm\"]\n state: latest\n update_cache: yes\n\n- name: install pm2\n become: true\n npm:\n name: pm2\n global: yes\n production: yes\n state: present\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 477, "all_permissive": false }
ansible_role
SFSeeger/Abitur-Song-Uploader
7c75dd99bd7d3722e2444999b829dbc63bca1a41
2
ansible/roles/apt
1,919
[ "no_license" ]
[ { "path": "ansible/roles/apt/tasks/main.yml", "content": "- name: Running apt update\n apt: update_cache=yes\n\n- name: Installing required packages\n apt:\n pkg:\n - git\n - python3-pip\n - nginx\n - gettext\n - default-libmysqlclient-dev\n - default-mysql-client\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 880, "all_permissive": false }
ansible_role
SFSeeger/Abitur-Song-Uploader
7c75dd99bd7d3722e2444999b829dbc63bca1a41
2
ansible/roles/django
1,919
[ "no_license" ]
[ { "path": "ansible/roles/django/defaults/main.yml", "content": "---\npython_skip_install: true\nremove_repo: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 48 }, { "path": "ansible/roles/django/meta/main.yml", "content": "dependencies:\n - role: global...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 3800, "all_permissive": false }
ansible_role
SFSeeger/Abitur-Song-Uploader
7c75dd99bd7d3722e2444999b829dbc63bca1a41
2
ansible/roles/exporter
1,919
[ "no_license" ]
[ { "path": "ansible/roles/exporter/templates/nginx_exporter.service.j2", "content": "[Unit]\nDescription=Nginx Exporter\nAfter=network.target\n\n[Service]\nUser=prometheus\nGroup=prometheus\nType=simple\nExecStart=/opt/nginx_exporter/nginx-prometheus-exporter -nginx.scrape-uri=http://localhost:8080/stub_stat...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 4740, "all_permissive": false }
ansible_role
SFSeeger/Abitur-Song-Uploader
7c75dd99bd7d3722e2444999b829dbc63bca1a41
2
ansible/roles/fail2ban
1,919
[ "no_license" ]
[ { "path": "ansible/roles/fail2ban/tasks/main.yml", "content": "---\n- name: Installing required packages\n apt:\n pkg:\n - fail2ban\n - sendmail\n state: latest\n update_cache: true\n\n- name: Copy Config\n template:\n src: \"templates/jail.local.j2\"\n dest: \"/etc/fail2ban/jail....
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 880, "all_permissive": false }
ansible_role
SFSeeger/Abitur-Song-Uploader
7c75dd99bd7d3722e2444999b829dbc63bca1a41
2
ansible/roles/grafana
1,919
[ "no_license" ]
[ { "path": "ansible/roles/grafana/handlers/main.yml", "content": "---\n- name: restart grafana\n become: true\n systemd:\n daemon_reload: true\n name: grafana-server\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { "path": "an...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 641, "all_permissive": false }
ansible_role
SFSeeger/Abitur-Song-Uploader
7c75dd99bd7d3722e2444999b829dbc63bca1a41
2
ansible/roles/gunicorn
1,919
[ "no_license" ]
[ { "path": "ansible/roles/gunicorn/templates/gunicorn.service.j2", "content": "[Unit]\nDescription=gunicorn daemon\nRequires=gunicorn.socket\nAfter=network.target\n\n[Service]\nUser=gunicorn\nGroup=gunicorn\nWorkingDirectory={{ django_dir }}\nExecStart={{ repo_dir }}/.venv/bin/gunicorn \\\n --log-level de...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1350, "all_permissive": false }
ansible_role
SFSeeger/Abitur-Song-Uploader
7c75dd99bd7d3722e2444999b829dbc63bca1a41
2
ansible/roles/mysql
1,919
[ "no_license" ]
[ { "path": "ansible/roles/mysql/tasks/main.yml", "content": "---\n- name: include vault\n include_vars:\n file: vault.yml\n\n- name: install mysql\n apt:\n pkg:\n - mariadb-server\n - default-libmysqlclient-dev\n - build-essential\n - python3-pip\n update_cache: yes\n cache_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1336, "all_permissive": false }
ansible_role
SFSeeger/Abitur-Song-Uploader
7c75dd99bd7d3722e2444999b829dbc63bca1a41
2
ansible/roles/nginx
1,919
[ "no_license" ]
[ { "path": "ansible/roles/nginx/templates/default.j2", "content": "upstream app-server {\n server unix:/run/gunicorn.sock; # for a file socket\n}\n\nserver {\n listen 8080;\n listen [::]:8080;\n\n location /stub_status {\n stub_status;\n }\n}\n\nserver {\n listen [::]:443 ssl ipv6...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1565, "all_permissive": false }
ansible_role
SFSeeger/Abitur-Song-Uploader
7c75dd99bd7d3722e2444999b829dbc63bca1a41
2
ansible/roles/prometheus
1,919
[ "no_license" ]
[ { "path": "ansible/roles/prometheus/defaults/main.yml", "content": "prometheus_db_dir: \"/opt/prometheus/\"\nprometheus_version: \"2.37.8\"\ngo_arch: arm64\n__prometheus_checksum: 2172088577619231c6b7e0733affaa98ff65e1c5cbb4e741ee0c6aa02cbdd1d5\n_prometheus_binary_install_dir: \"/opt\"\nprometheus_skip_inst...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2588, "all_permissive": false }
ansible_role
SFSeeger/Abitur-Song-Uploader
7c75dd99bd7d3722e2444999b829dbc63bca1a41
2
ansible/roles/user_creation
1,919
[ "no_license" ]
[ { "path": "ansible/roles/user_creation/defaults/main.yml", "content": "---\n# defaults file for user-creation\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "ansible/roles/user_creation/tests/test.yml", "content": "---\n- hosts: localhost\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 521, "all_permissive": false }
ansible_role
majkinetor/liferay-server
47174e8a196f664eca4015909aa0613bc7285d2a
0
ansible/roles/base
1,919
[ "no_license" ]
[ { "path": "ansible/roles/base/defaults/main.yml", "content": "---\nusers:\n #- { name: 'vagrant', groups: 'sudo' }\npackages:\n - name: python-pycurl\n - name: tmux\n files:\n tmux.conf: /etc/tmux/conf\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 146 },...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 681, "all_permissive": false }
ansible_role
majkinetor/liferay-server
47174e8a196f664eca4015909aa0613bc7285d2a
0
ansible/roles/docker.ubuntu
1,919
[ "permissive" ]
[ { "path": "ansible/roles/docker.ubuntu/tasks/main.yml", "content": "---\n# tasks file for docker.ubuntu\n- name: Fail if not a new release of Ubuntu\n fail: msg=\"{{ ansible_distribution_version }} is not an acceptable version of Ubuntu for this role\"\n when: \"ansible_distribution_version not in ['12.04...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3807, "all_permissive": true }
ansible_role
majkinetor/liferay-server
47174e8a196f664eca4015909aa0613bc7285d2a
0
ansible/roles/docker_liferay
1,919
[ "no_license" ]
[ { "path": "ansible/roles/docker_liferay/vars/main.yml", "content": "---\nservice:\n name: liferay\n state: stopped\n start_priority: 97\n end_priority: 50\n container: snasello/liferay-6.2\n version: 6.2-ce-ga2\n options: >\n \"\n --lin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 767, "all_permissive": false }