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
gabor-udvari/automation-project
9314bf290b8e54933c3404b06850183256760573
2
ansible/roles/oldkernels
7,959
[ "no_license" ]
[ { "path": "ansible/roles/oldkernels/tasks/main.yml", "content": "---\n- name: Remove old kernels\n shell: apt-get remove -y --purge $(dpkg -l 'linux-image-*' | sed '/^ii/!d;/'\"$(uname -r | sed \"s/\\(.*\\)-\\([^0-9]\\+\\)/\\1/\")\"'/d;s/^[^ ]* [^ ]* \\([^ ]*\\).*/\\1/;/[0-9]/!d')\n register: command_resu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 310, "all_permissive": false }
ansible_role
gabor-udvari/automation-project
9314bf290b8e54933c3404b06850183256760573
2
ansible/roles/parking
7,959
[ "no_license" ]
[ { "path": "ansible/roles/parking/tasks/main.yml", "content": "---\n\n- debug:\n msg: \"Inside parking.yml\"\n\n- name: Check www folder\n file: path=/var/www owner=www-data group=www-data mode=0774 state=directory\n\n- name: Check parking folder\n file: path=/var/www/parking owner=www-data group=www-da...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3090, "all_permissive": false }
ansible_role
gabor-udvari/automation-project
9314bf290b8e54933c3404b06850183256760573
2
ansible/roles/transmission
7,959
[ "no_license" ]
[ { "path": "ansible/roles/transmission/defaults/main.yml", "content": "transmission__ferm__dependent_rules:\n\n - type: 'accept'\n protocol: [ 'tcp', 'udp']\n dport: [ 9091, 51413, '49152:65535' ]\n saddr: [ '192.168.0.0/24' ]\n accept_any: True\n weight: '40'\n by_role: 'transmission'\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 433, "all_permissive": false }
ansible_role
gabor-udvari/automation-project
9314bf290b8e54933c3404b06850183256760573
2
ansible/roles/upgrade
7,959
[ "no_license" ]
[ { "path": "ansible/roles/upgrade/tasks/main.yml", "content": "---\n- name: Upgrade with apt (update cache)\n apt: upgrade=dist update_cache=yes dpkg_options='force-confold,force-confdef'\n register: apt_result\n ignore_errors: True\n\n- name: Upgrade with apt\n apt: upgrade=dist update_cache=no dpkg_opt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 747, "all_permissive": false }
ansible_role
arafinahmed/caddy-install-by-ansible
43df42331bb68bf5fafb113d8ee29723d75f1658
0
roles/caddy
7,959
[ "no_license" ]
[ { "path": "roles/caddy/templates/docker-compose-caddy.yml.j2", "content": "version: '3'\nservices:\n caddy:\n image: caddy:latest\n container_name: caddy\n ports:\n - \"80:80\"\n - \"443:443\"\n volumes:\n - /home/ubuntu/caddy/caddy-config/Caddyfile:/etc/caddy/Caddyfile:ro\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2719, "all_permissive": false }
ansible_role
cpe-lyon/lcha-ci-cd
da417c07fc232684681386255713f84f7ea2bd24
0
TP03/ansible/roles/create-network
7,959
[ "no_license" ]
[ { "path": "TP03/ansible/roles/create-network/tasks/main.yml", "content": "---\n# tasks file for roles/create-network\n - name: Create network\n docker_network:\n name: tp03-network\n state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes": 132 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 132, "all_permissive": false }
ansible_role
cpe-lyon/lcha-ci-cd
da417c07fc232684681386255713f84f7ea2bd24
0
TP03/ansible/roles/launch-app
7,959
[ "no_license" ]
[ { "path": "TP03/ansible/roles/launch-app/tasks/main.yml", "content": "---\n# tasks file for roles/launch-app\n - name: Run App-1\n docker_container:\n name: \"{{ BACKEND_NAME}}-1\" \n image: \"{{ BACKEND_IMAGE }}\"\n state: started\n env:\n DATABASE_URL: \"{{ DATABASE_URL }}\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 781, "all_permissive": false }
ansible_role
cpe-lyon/lcha-ci-cd
da417c07fc232684681386255713f84f7ea2bd24
0
TP03/ansible/roles/launch-database
7,959
[ "no_license" ]
[ { "path": "TP03/ansible/roles/launch-database/tasks/main.yml", "content": "---\n# tasks file for roles/launch-database\n - name: Run Database\n docker_container:\n name: \"{{ DATABASE_NAME }}\"\n image: \"{{ DATABASE_IMAGE }}\"\n state: started\n env:\n POSTGRES_DB: \"{{ POSTG...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 381, "all_permissive": false }
ansible_role
cpe-lyon/lcha-ci-cd
da417c07fc232684681386255713f84f7ea2bd24
0
TP03/ansible/roles/launch-front
7,959
[ "no_license" ]
[ { "path": "TP03/ansible/roles/launch-front/tasks/main.yml", "content": "---\n# tasks file for roles/launch-front\n - name: Run App\n docker_container:\n name: \"{{ FRONTEND_NAME }}\"\n image: \"{{ FRONTEND_IMAGE }}\"\n state: started\n networks:\n - name: \"{{ NETWORK_NAME }}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 223, "all_permissive": false }
ansible_role
cpe-lyon/lcha-ci-cd
da417c07fc232684681386255713f84f7ea2bd24
0
TP03/ansible/roles/launch-proxy
7,959
[ "no_license" ]
[ { "path": "TP03/ansible/roles/launch-proxy/tasks/main.yml", "content": "---\n# tasks file for roles/launch-proxy\n - name: Run HTTPD\n docker_container:\n name: \"{{ HTTPD_NAME }}\"\n image: \"{{ HTTPD_IMAGE }}\"\n state: started\n networks:\n - name: \"{{ NETWORK_NAME }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 250, "all_permissive": false }
ansible_role
GroverPinto/cluster-prometheus
a435166e281546ccc17e2a6ebb85144d6ce345f9
0
ansible/roles/grafana
7,954
[ "no_license" ]
[ { "path": "ansible/roles/grafana/defaults/main.yml", "content": "---\ngrafana_user: \"grafana\"\ngrafana_group: \"grafana\"\ngrafana_prerequisites: [\"gnupg2\", \"curl\", \"software-properties-common\"]\ngrafana_version: \"9.2.6\"", "license_type": "no_license", "detected_licenses": [], "size_by...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 3981, "all_permissive": false }
ansible_role
GroverPinto/cluster-prometheus
a435166e281546ccc17e2a6ebb85144d6ce345f9
0
ansible/roles/prometheus
7,954
[ "no_license" ]
[ { "path": "ansible/roles/prometheus/templates/config.yml.j2", "content": "# Global configuration\nglobal:\n scrape_interval: 15s\n evaluation_interval: 15s\n\n# Cluster labels configuration \n external_labels:\n cluster: monitoring-cluster\n replica: replica-{{play_hosts.index(inventory_hostna...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 4179, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/Ansible-Maven
7,954
[ "no_license" ]
[ { "path": "Roles/Ansible-Maven/tasks/main.yml", "content": "---\n\n- name: Install Java 1.7\n yum: name=java-1.7.0-openjdk state=present\n\n# Main list of tasks to be executed.\n#\n# Fail the play if it runs on an unsupported platform.\n- name: Assert platform is supported\n tags: maven\n assert:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1677, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/Cassandra-nosqldb
7,954
[ "no_license" ]
[ { "path": "Roles/Cassandra-nosqldb/vars/main.yml", "content": "---\nrepo_key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&fingerprint=on&search=0x<KEY>'\nrepo_key_file: '<KEY>'\n \n\n\n\ncassandra-repo: 'deb http://www.apache.org/dist/cassandra/debian 20x main'\n\n\ncluster_name: 'MyCluster'\ndata_f...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2445, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/Rds-instance
7,954
[ "no_license" ]
[ { "path": "Roles/Rds-instance/tasks/main.yml", "content": "---\r\n# This playbook will create rds instance in aws.\r\n# create a .boto file in home directory in localhost and give aws credentials to authenticate \r\n# see boto documentation for more detais \"http://boto.cloudhackers.com/en/latest/boto_confi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 703, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/ec2-customvpc/roles/ec2
7,954
[ "no_license" ]
[ { "path": "Roles/ec2-customvpc/roles/ec2/tasks/main.yml", "content": "- ec2:\r\n key_name: keypair1\r\n instance_type: t2.micro\r\n image: ami-f173cc91\r\n wait: yes\r\n group: devops_secgrp\r\n count: 1\r\n vpc_subnet_id: subnet-05e04162\r\n region: us-west-2\r\n assign_public_ip...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 667, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/ec2-instance
7,954
[ "no_license" ]
[ { "path": "Roles/ec2-instance/tasks/main.yml", "content": "# create a .boto file in home directory in localhost and give aws credentials to authenticate \r\n# see boto documentation for more detais \"http://boto.cloudhackers.com/en/latest/boto_config_tut.html\"\r\n- name: Setting up Security group for aws i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1928, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/ec2-jenkins
7,954
[ "no_license" ]
[ { "path": "Roles/ec2-jenkins/tasks/main.yml", "content": "---\n- name: Jenkins - install | Install java\n yum: name=java state=installed\n\n- name: Jenkins - install | Install Jenkins 2.0\n yum: pkg=http://pkg.jenkins-ci.org/redhat-rc/jenkins-2.0-1.1.noarch.rpm state=installed\n\n- name: Jenkins - install...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 324, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/html/roles/webservers
7,954
[ "no_license" ]
[ { "path": "Roles/html/roles/webservers/templates/index.html.j2", "content": "<!DOCTYPE html>\r\n\r\n<html >\r\n <head>\r\n \r\n <title>Resume</title>\r\n\r\n <style type=\"text/css\">\r\n \r\n body { font: 16px Helvetica, Sans-Serif; padding:10px; margin: 0 auto; width: 90%}\r\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3824, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/nginx/roles/common
7,954
[ "no_license" ]
[ { "path": "Roles/nginx/roles/common/tasks/ubuntu_development_tools.yml", "content": "---\r\n\r\n# Installing development tools like GCC, C++, etc., required to Ubuntu\r\n- name: Installing Development Tools in Ubuntu\r\n apt:\r\n name: build-essential\r\n state: present\r\n \r\n# Install dependicies ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1577, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/nginx/roles/nginx
7,954
[ "no_license" ]
[ { "path": "Roles/nginx/roles/nginx/tasks/main.yml", "content": "# Downloading and Installing nginx \r\n- name: Download and unarchive nginx\r\n unarchive:\r\n src: http://nginx.org/download/nginx-{{ nginx_version }}.tar.gz\r\n dest: \"{{ path_to_install }}\"\r\n remote_src: True\r\n \r\n- name: In...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1060, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/nodejs
7,954
[ "no_license" ]
[ { "path": "Roles/nodejs/tasks/main.yml", "content": "--- \r\n- name: install wget\r\n yum:\r\n name=wget\r\n\r\n- name: get epel\r\n command: wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm \r\n \r\n- name: install\r\n yum:\r\n name=epel-release-latest-7.noarch.rpm \r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 432, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/secgrp/roles/ec2-secgrp
7,954
[ "no_license" ]
[ { "path": "Roles/secgrp/roles/ec2-secgrp/tasks/main.yml", "content": "- name: example ec2 group\n ec2_group:\n name: karthi\n description: an example EC2 group\n vpc_id: vpc-ceff7ba9\n region: us-west-2\n aws_access_key: <KEY>\n aws_secret_key: <KEY>\n rules:\n - proto: tcp\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1170, "all_permissive": false }
ansible_role
stackaero/opsible
d08e81f336c53495a3c44c770d8cc3e7c1f537f5
0
Roles/supervisor-ubuntu
7,954
[ "no_license" ]
[ { "path": "Roles/supervisor-ubuntu/tasks/main.yml", "content": "---\r\n- name: install python\r\n apt: \r\n pkg: \"python-setuptools\"\r\n state: present\r\n \r\n- name: install supervisor\r\n apt: \r\n pkg: supervisor\r\n state: latest\r\n \r\n- name: Creates directory\r\n file: pat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 684, "all_permissive": false }
ansible_role
Oleg-Odessa/ansible
834afd6deae2e7ace955f70b15cc22136c223de4
0
dz9/roles/install_jenkins
7,954
[ "no_license" ]
[ { "path": "dz9/roles/install_jenkins/vars/main.yml", "content": "---\n# vars file for install_jenkins\n\n\nansible_python_interpreter: /bin/python3\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 }, { "path": "dz9/roles/install_jenkins/tasks/main.yml", "co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 305, "all_permissive": false }
ansible_role
Oleg-Odessa/ansible
834afd6deae2e7ace955f70b15cc22136c223de4
0
roles/deploy_apache_web
7,954
[ "no_license" ]
[ { "path": "roles/deploy_apache_web/tasks/main.yml", "content": "---\n# tasks file for deploy_apache_web\n\n- block: # ===== Block for RedHat =====\n - name: Install Apache Web Server for RedHat (HTTPD)\n yum: name=httpd state=latest\n - name: Start and Enable Web Server service for RedHat\n serv...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1097, "all_permissive": false }
ansible_role
Oleg-Odessa/ansible
834afd6deae2e7ace955f70b15cc22136c223de4
0
roles/install_docker_docker_compose
7,954
[ "no_license" ]
[ { "path": "roles/install_docker_docker_compose/defaults/main.yml", "content": "---\n# defaults file for install_docker_docker_compose", "license_type": "no_license", "detected_licenses": [], "size_bytes": 53 }, { "path": "roles/install_docker_docker_compose/tasks/main.yml", "content"...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1802, "all_permissive": false }
ansible_role
ga-wdi-boston/gaku
97742d0c898c01347d9f7f6c4a979c76008db664
0
roles/main
7,954
[ "no_license" ]
[ { "path": "roles/main/tasks/nginx.yml", "content": "---\n\n- name: Install nginx\n apt: pkg=nginx-full state=present\n\n- name: Upload nginx config files\n copy: src={{ item }} dest=/etc/nginx/{{ item }}\n with_items:\n - drop.conf\n - nginx.conf\n", "license_type": "no_license", "detected_...
{ "task_files": 6, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 6499, "all_permissive": false }
ansible_role
rblack42/tech-blog
873f9a6930248a5fdeb750e58066db62e7f61123
0
ansible/roles/pyenv
7,954
[ "no_license" ]
[ { "path": "ansible/roles/pyenv/tasks/main.yml", "content": "---\n- name: install pyenv using brew\n homebrew:\n name: pyenv\n state: present\n\n- name: configure zsh\n blockinfile:\n path: /Users/rblack/.zshrc\n block: |\n # pyenv config\n eval \"$(pyenv init -)\"\n export PYENV...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 329, "all_permissive": false }
ansible_role
vsonka/ansible
c2a86e0bed2b0e544e6da7cd45d685bede0c51ba
0
playbook/roles/common
7,954
[ "no_license" ]
[ { "path": "playbook/roles/common/tasks/install_java_shell.yml", "content": "---\n- hosts: webservers\n remote_user: root\n\n tasks:\n - name: ensure java is installed\n action: command yum install java-1.8.0-openjdk.x86_64 -y\n - name: Transfer the script\n copy: src=../files/shell.sh dest=/home/v...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 308, "all_permissive": false }
ansible_role
harry41/mCloud-plateform
dc732c1540e9682313df90628607ddf9b1556cfb
0
ansible/roles/Hari.Python-Project
7,965
[ "no_license" ]
[ { "path": "ansible/roles/Hari.Python-Project/tasks/python-migrations.yml", "content": "# This will use to deploy Python Application\n---\n\n- name: Initializing Python App - {{ python_app_name }}\n shell: |\n source {{ venv }}/bin/activate\n cd {{ python_app_dir }}\n rm -rf {{ web_directory ...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 8653, "all_permissive": false }
ansible_role
harry41/mCloud-plateform
dc732c1540e9682313df90628607ddf9b1556cfb
0
ansible/roles/hari.dependency
7,965
[ "no_license" ]
[ { "path": "ansible/roles/hari.dependency/defaults/main.yml", "content": "---\n\n# defaults file for dependency\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "ansible/roles/hari.dependency/tasks/main.yml", "content": "#MySql.server/tasks/main...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1368, "all_permissive": false }
ansible_role
ShotaKitazawa/k8s-learning
11697d172f88b0075f5203ee9debf93453e47a1b
4
scripts/roles/master
7,965
[ "no_license" ]
[ { "path": "scripts/roles/master/tasks/main.yml", "content": "---\n\n- name: \"master.tasks.main: Download binaries\"\n unarchive:\n src: \"https://storage.googleapis.com/kubernetes-release/release/{{ kubernetes_version }}/kubernetes-server-linux-amd64.tar.gz\"\n remote_src: yes\n dest: /tmp/\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1375, "all_permissive": false }
ansible_role
ShotaKitazawa/k8s-learning
11697d172f88b0075f5203ee9debf93453e47a1b
4
scripts/roles/node
7,965
[ "no_license" ]
[ { "path": "scripts/roles/node/tasks/main.yml", "content": "---\n\n- name: \"node.tasks.main: Download binaries\"\n unarchive:\n src: \"https://storage.googleapis.com/kubernetes-release/release/{{ kubernetes_version }}/kubernetes-server-linux-amd64.tar.gz\"\n remote_src: yes\n dest: /tmp/\n\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1421, "all_permissive": false }
ansible_role
rcjaustralia/rcj-infrastructure
b5be3ef0366d0aebe79518c3de3651a53af16566
0
roles/common
7,965
[ "no_license" ]
[ { "path": "roles/common/tasks/python.yml", "content": "---\n- name: add IUS repository\n yum:\n name: 'https://centos7.iuscommunity.org/ius-release.rpm'\n state: present\n tags: yum, ius\n\n- name: install Python 3.6\n yum:\n name:\n - python36u\n - python36u-pip\n - python36u-dev...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 1278, "all_permissive": false }
ansible_role
rcjaustralia/rcj-infrastructure
b5be3ef0366d0aebe79518c3de3651a53af16566
0
roles/docker
7,965
[ "no_license" ]
[ { "path": "roles/docker/tasks/docker.yml", "content": "---\n- name: enable overlay\n copy: src=overlay.conf dest=/etc/modules-load.d/overlay.conf\n\n- name: check if reboot required by host\n shell: lsmod | grep -q \"overlay\"\n ignore_errors: yes\n failed_when: \"'Permission denied' in overlay_check.st...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1278, "all_permissive": false }
ansible_role
rcjaustralia/rcj-infrastructure
b5be3ef0366d0aebe79518c3de3651a53af16566
0
roles/mysql
7,965
[ "no_license" ]
[ { "path": "roles/mysql/tasks/mysql.yml", "content": "---\n- name: create MariaDB data folder\n file:\n path: /srv/mariadb\n state: directory\n mode: 0777\n recurse: yes\n\n- name: create MariaDB container\n docker_container:\n name: mariadb\n image: centos/mariadb\n pull: yes\n res...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 421, "all_permissive": false }
ansible_role
rcjaustralia/rcj-infrastructure
b5be3ef0366d0aebe79518c3de3651a53af16566
0
roles/soccer
7,965
[ "no_license" ]
[ { "path": "roles/soccer/tasks/main.yml", "content": "- include: soccer.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 22 }, { "path": "roles/soccer/tasks/soccer.yml", "content": "---\n- name: create soccer platform container\n docker_container:\n nam...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 901, "all_permissive": false }
ansible_role
phcaguiar/ansible
cc1fe55ef23e6a50542456fa9724002a39dc06a4
0
roles/ansible-join-ad
7,965
[ "no_license" ]
[ { "path": "roles/ansible-join-ad/molecule/windows/playbook.yml", "content": "---\n- name: Playbook to enroll a Windows host into Active Directory domain\n hosts: all\n vars:\n joinad_dns_server: \"\"\n joinad_dns_domain: \"\"\n joinad_enrollment_user: null\n joinad_enrollment_password: null\n ...
{ "task_files": 7, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 21, "total_bytes": 10348, "all_permissive": false }
ansible_role
phcaguiar/ansible
cc1fe55ef23e6a50542456fa9724002a39dc06a4
0
roles/appdynamics-agent
7,965
[ "no_license" ]
[ { "path": "roles/appdynamics-agent/tasks/main.yml", "content": "---\n\n- name: Execute Tasks for Windows OS\n include_tasks: windows/main.yml\n when: ansible_os_family == \"Windows\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 116 }, { "path": "roles/appd...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 3939, "all_permissive": false }
ansible_role
phcaguiar/ansible
cc1fe55ef23e6a50542456fa9724002a39dc06a4
0
roles/sql-express
7,965
[ "no_license" ]
[ { "path": "roles/sql-express/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - ansible-sql-express", "license_type": "no_license", "detected_licenses": [], "size_bytes": 77 }, { "path": "roles/sql-express/tasks/windows/install-features.yml", "...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 4587, "all_permissive": false }
ansible_role
phcaguiar/ansible
cc1fe55ef23e6a50542456fa9724002a39dc06a4
0
roles/vsts-agent
7,965
[ "no_license" ]
[ { "path": "roles/vsts-agent/tasks/install_vsts_agent.yml", "content": "---\n - name: Mount base install command\n set_fact:\n install_command: \"{{ AGENT_FOLDER }}\\\\config.cmd --unattended --url {{ VSTS_URL }} \\\n --auth PAT --token {{ AUTH_TOKEN }} --projectName {{ PROJECT_NAME }} --ag...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 7188, "all_permissive": false }
ansible_role
phcaguiar/ansible
cc1fe55ef23e6a50542456fa9724002a39dc06a4
0
roles/windows-dfs
7,965
[ "no_license" ]
[ { "path": "roles/windows-dfs/tasks/dfs-config.yml", "content": "---\r\n- name: Run New-DfsnRoot Powershell Command\r\n win_shell: New-DfsnRoot -Path \"\\\\{{ dfs_domain_name }}\\{{ dfs_share_name }}\" -TargetPath \"\\\\{{ dfs_primary_server }}.{{ dfs_domain_name }}\\{{ dfs_share_name }}\" -Type \"{{ dfs_t...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 9841, "all_permissive": false }
ansible_role
JavasMiddi/SFIA-Project2
c5177509875545a3d4dd5784b53e072bb4717a72
1
roles/swarm-manager
7,965
[ "no_license" ]
[ { "path": "roles/swarm-manager/tasks/main.yaml", "content": "---\n- name: Leave Swarm\n docker_swarm:\n state: absent\n force: true\n\n- name: Leave Swarm via Force\n shell: docker swarm leave -f\n ignore_errors: true\n \n- name: Initialise Swarm\n docker_swarm:\n state: present\n \n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 501, "all_permissive": false }
ansible_role
JavasMiddi/SFIA-Project2
c5177509875545a3d4dd5784b53e072bb4717a72
1
roles/swarm-worker
7,965
[ "no_license" ]
[ { "path": "roles/swarm-worker/tasks/main.yaml", "content": "- name: Leave Current Swarm\n docker_swarm:\n state: absent\n force: true\n\n- name: Nodes Leaving the Swarm\n shell: docker swarm leave -f\n ignore_errors: true \n\n- name: Add Node 1\n docker_swarm:\n state: join\n advertise_add...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 530, "all_permissive": false }
ansible_role
astraios/terminal
258a03b8f1f68b6b80ac301e4e7ba5e659310dc2
0
ansible/roles/binaries
7,965
[ "no_license" ]
[ { "path": "ansible/roles/binaries/tasks/facts.yml", "content": "---\n\n- name: OSX - set_fact - platform\n set_fact:\n platform: darwin\n when: ansible_distribution == \"MacOSX\"\n tags: [ always, facts ]\n\n- name: Linux - set_fact - platform\n set_fact:\n platform: linux\n when: ansible_distrib...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 4107, "all_permissive": false }
ansible_role
astraios/terminal
258a03b8f1f68b6b80ac301e4e7ba5e659310dc2
0
ansible/roles/terminal
7,965
[ "no_license" ]
[ { "path": "ansible/roles/terminal/defaults/main.yml", "content": "---\n\npackages:\n - tmux\n# - fzf\n# - nvim\n - jq\n - tig\n - tree\n - wget\n - watch\n - unzip\n\npip:\n - awscli\n - argcomplete\n - boto3\n\nrepositories_structure:\n # Github\n - \"~/Workspace/VCS/github.com/astraios\"\n ...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 4553, "all_permissive": false }
ansible_role
andes2020/vagrant-local-nginx-node
c74f77625137229919eab433041924259f23deab
0
roles/nginx
7,965
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n# See apt ansible module https://docs.ansible.com/ansible/latest/collections/ansible/builtin/apt_module.html\n# See official nginx installation by https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-18-04\n- name: Install n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 811, "all_permissive": false }
ansible_role
andes2020/vagrant-local-nginx-node
c74f77625137229919eab433041924259f23deab
0
roles/nginx_proxy
7,965
[ "no_license" ]
[ { "path": "roles/nginx_proxy/tasks/main.yml", "content": "---\n# Limit to just loadbalancer\n- name: Modifiy /etc/nginx/sites-available/default with j2 template\n template:\n src: loadbalancer_config.j2\n dest: /etc/nginx/sites-available/default\n remote_src: false\n owner: root\n group: roo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 703, "all_permissive": false }
ansible_role
rzara/ansible_appro_122020
d0fa73ef73c3889f0f82ea49f68fc2d39a4487fa
0
roles/ansible_role_haproxy
7,965
[ "no_license" ]
[ { "path": "roles/ansible_role_haproxy/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/ansible_role_haproxy_1.0.0", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 }, { "path": "roles/ansible_role_haproxy/vars/main.y...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2326, "all_permissive": false }
ansible_role
rajeevid9009/udapeople-myproject-03
8e0cf803d17b6defeea057ceabbb305e84e199e0
0
.circleci/ansible/roles/deploy
7,965
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "- name: Create a directory if it does not exist\n become: true\n ansible.builtin.file:\n path: /home/ubuntu/project/backend\n state: directory\n mode: '0755'\n\n- name: \"copy folder \"\n become: true\n copy:\n #src: /roo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1296, "all_permissive": false }
ansible_role
Telecominfraproject/oopt-zuul-jobs
35071f3a854b87df8fdc7b22c8924f759ee368e5
0
roles/download-coverage
7,965
[ "permissive" ]
[ { "path": "roles/download-coverage/tasks/main.yaml", "content": "- name: Retrieve coverage from parent jobs\n include_tasks: download.yaml\n loop: \"{{ zuul.artifacts | json_query(artifact_selector) }}\"\n vars:\n artifact_selector: \"[([?metadata.type == 'cobertura_xml' && project == '{{ zuul.project...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 575, "all_permissive": true }
ansible_role
Telecominfraproject/oopt-zuul-jobs
35071f3a854b87df8fdc7b22c8924f759ee368e5
0
roles/ensure-pycobertura
7,965
[ "permissive" ]
[ { "path": "roles/ensure-pycobertura/tasks/main.yaml", "content": "- name: Ensure pycobertura is available\n pip:\n name: pycobertura\n become: yes\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 83 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 83, "all_permissive": true }
ansible_role
Telecominfraproject/oopt-zuul-jobs
35071f3a854b87df8fdc7b22c8924f759ee368e5
0
roles/fetch-coverage-diff
7,965
[ "permissive" ]
[ { "path": "roles/fetch-coverage-diff/tasks/main.yaml", "content": "- name: Check for coverage-diff.html\n stat:\n path: \"{{ ansible_user_dir }}/zuul-output/logs/coverage-diff.html\"\n get_checksum: false\n get_mime: false\n get_md5: false\n register: coverage_diff_html_stat\n\n- name: Registe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 968, "all_permissive": true }
ansible_role
Telecominfraproject/oopt-zuul-jobs
35071f3a854b87df8fdc7b22c8924f759ee368e5
0
roles/fetch-coverage-xml
7,965
[ "permissive" ]
[ { "path": "roles/fetch-coverage-xml/defaults/main.yaml", "content": "coverage_artifact_name: \"Coverage data\"\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 40 }, { "path": "roles/fetch-coverage-xml/tasks/main.yaml", "content": "---\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 810, "all_permissive": true }
ansible_role
Telecominfraproject/oopt-zuul-jobs
35071f3a854b87df8fdc7b22c8924f759ee368e5
0
roles/fetch-linters-html
7,965
[ "permissive" ]
[ { "path": "roles/fetch-linters-html/tasks/main.yaml", "content": "- name: Create temporary HTML archive file\n tempfile:\n state: file\n suffix: \".tar.gz\"\n register: html_archive\n\n- name: Archive HTML\n command: \"tar -f {{ html_archive.path }} -C {{ zuul.project.src_dir }}/linters -cz .\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1061, "all_permissive": true }
ansible_role
Telecominfraproject/oopt-zuul-jobs
35071f3a854b87df8fdc7b22c8924f759ee368e5
0
roles/git-use-previous-commit
7,965
[ "permissive" ]
[ { "path": "roles/git-use-previous-commit/tasks/main.yaml", "content": "- name: Prepare git submodules\n shell: |\n PREVIOUS_BRANCH=$(git rev-parse --abbrev-ref HEAD)\n echo \"{{ item.key }}: ${PREVIOUS_BRANCH}\"\n git checkout -b zuul_origin_${PREVIOUS_BRANCH} origin/${PREVIOUS_BRANCH}\n args:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 334, "all_permissive": true }
ansible_role
Telecominfraproject/oopt-zuul-jobs
35071f3a854b87df8fdc7b22c8924f759ee368e5
0
roles/prepare-previous-src
7,965
[ "permissive" ]
[ { "path": "roles/prepare-previous-src/tasks/main.yaml", "content": "- name: Place for previous version of sources\n file:\n path: \"{{ (previous_source_prefix + '/' + zuul.project.canonical_hostname + '/' + zuul.project.name) | dirname }}\"\n state: directory\n\n- name: Prepare copy of the previous v...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 459, "all_permissive": true }
ansible_role
Telecominfraproject/oopt-zuul-jobs
35071f3a854b87df8fdc7b22c8924f759ee368e5
0
roles/pycobertura-diff
7,965
[ "permissive" ]
[ { "path": "roles/pycobertura-diff/tasks/main.yaml", "content": "- name: Generate pycobertura report\n shell: |\n set -ex\n\n pycobertura show --format html --output \"{{ ansible_user_dir }}/zuul-output/logs/coverage-previous.html\" \\\n --source \"{{ previous_source_prefix }}/{{ zuul.project.can...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1138, "all_permissive": true }
ansible_role
Tobbeman/infra
71806a5b08393fc4e9964a2bf459031b7e82a42e
0
roles/common
7,965
[ "no_license" ]
[ { "path": "roles/common/tasks/Debian.yaml", "content": "- name: configure norecommend\n become: yes\n copy:\n content: 'APT::Install-Recommends \"0\";'\n dest: /etc/apt/apt.conf.d/99norecommend\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 140 }, { "pat...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 301, "all_permissive": false }
ansible_role
Tobbeman/infra
71806a5b08393fc4e9964a2bf459031b7e82a42e
0
roles/ddns
7,965
[ "no_license" ]
[ { "path": "roles/ddns/templates/script", "content": "#!/bin/bash\n\nset -e\nset -o nounset\n\nwan_interface=\"{{ ddns_wan_interface }}\"\nddns_url=\"{{ ddns_url }}\"\n\ndir=\"$( cd \"$( dirname \"${BASH_SOURCE[0]}\" )\" && pwd )\"\nwan_last_ip_file=\"${dir}/last_ip.txt\"\n\ntouch \"$wan_last_ip_file\"\n\nwa...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1749, "all_permissive": false }
ansible_role
Tobbeman/infra
71806a5b08393fc4e9964a2bf459031b7e82a42e
0
roles/kvm_provision
7,965
[ "no_license" ]
[ { "path": "roles/kvm_provision/tasks/main.yml", "content": "---\n# tasks file for kvm_provision\n- name: Ensure requirements in place\n package:\n name:\n - qemu-system\n - libvirt-clients\n - libvirt-daemon-system\n - libguestfs-tools\n - python3-libvirt\n - python3-lxml\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2859, "all_permissive": false }
ansible_role
Tobbeman/infra
71806a5b08393fc4e9964a2bf459031b7e82a42e
0
roles/podman
7,965
[ "no_license" ]
[ { "path": "roles/podman/tasks/main.yaml", "content": "- name: install podman\n become: yes\n package:\n name: podman\n state: present\n\n- name: configure storage\n become: yes\n copy:\n src: roles/podman/files/storage.conf\n dest: /etc/containers/storage.conf\n mode: 0644\n\n- name: conf...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 553, "all_permissive": false }
ansible_role
Tobbeman/infra
71806a5b08393fc4e9964a2bf459031b7e82a42e
0
roles/prometheus
7,965
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yaml", "content": "- name: install packages\n become: yes\n package:\n name:\n - prometheus\n - prometheus-node-exporter\n\n- name: create server config\n become: yes\n register: config\n template:\n src: prometheus.j2\n dest: /etc/prometheus/pr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1609, "all_permissive": false }
ansible_role
Tobbeman/infra
71806a5b08393fc4e9964a2bf459031b7e82a42e
0
roles/wol
7,965
[ "no_license" ]
[ { "path": "roles/wol/variables/main.yaml", "content": "wol_interface: \n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 16 }, { "path": "roles/wol/tasks/main.yaml", "content": "- name: Install must have packages\n package:\n name:\n - ethtool\n\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 174, "all_permissive": false }
ansible_role
trak2016z/vulgar-detector-api-tr
64220a86371be826af3139163f743affc4401dc8
0
vagrant/provisioning/roles/elasticsearch
7,965
[ "no_license" ]
[ { "path": "vagrant/provisioning/roles/elasticsearch/tasks/main.yml", "content": "---\n- name: Install add-apt-repostory\n apt: name=software-properties-common state=latest\n\n- name: Add Oracle Java Repository\n apt_repository: repo='ppa:webupd8team/java'\n\n- name: Accept Java 8 Licence\n shell: echo or...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 960, "all_permissive": false }
ansible_role
2heoh/ScrumRuConfiguration
d6617410012eb0ebbf3ae73b942303c9279393ef
0
roles/apache2
7,965
[ "no_license" ]
[ { "path": "roles/apache2/templates/site.conf.j2", "content": "Listen 127.0.0.1:{{ backend_port }}\nNameVirtualHost *:{{ backend_port }}\n<VirtualHost *:{{ backend_port }}>\n ServerAdmin admin@{{ site_name }}\n ServerName {{ site_name }}\n ServerAlias www.{{ site_name }}\n\n Docum...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1787, "all_permissive": false }
ansible_role
2heoh/ScrumRuConfiguration
d6617410012eb0ebbf3ae73b942303c9279393ef
0
roles/mysql
7,965
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n\n- name: install tools\n apt: name={{ item }} state=present update_cache=yes\n with_items:\n - mysql-server\n - python-mysqldb\n\n- name: ensure mysql started\n service: name=mysql state=started enabled=yes\n\n- name: creating database\n my...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 857, "all_permissive": false }
ansible_role
2heoh/ScrumRuConfiguration
d6617410012eb0ebbf3ae73b942303c9279393ef
0
roles/nginx
7,965
[ "no_license" ]
[ { "path": "roles/nginx/templates/nginx.conf.j2", "content": " upstream backend-{{ site_key }} {\n server localhost:{{ backend_port }};\n }\n\n server {\n listen {{ frontend_port }};\n server_name {{ site_name }} www.{{ site_name }};\n\n location / {\n p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1327, "all_permissive": false }
ansible_role
2heoh/ScrumRuConfiguration
d6617410012eb0ebbf3ae73b942303c9279393ef
0
roles/wordpress
7,965
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "---\n- name: copy test script\n copy: src=hetzner/tmp/site.tar.gz dest={{ app_path }} owner=www-data group=www-data mode=0644\n notify: restart apache2\n\n- name: unpack site files\n shell: \"cd {{ app_path }} && tar -zxvf site.tar.gz && chown -R ww...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 702, "all_permissive": false }
ansible_role
anryller/k8s-deploy-apps-ansible
68a8d10fae5ef52fea3308a50fe2083f70f5463b
0
roles/apply_deployment
7,965
[ "no_license" ]
[ { "path": "roles/apply_deployment/tasks/apply_deployments.yml", "content": "---\n- name: Create Kubernetes namespace {{ namespace }}\n k8s:\n name: \"{{ namespace }}\"\n api_version: v1\n kind: Namespace\n state: present\n\n- name: Create a Deployment object by reading the definition from a fil...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 863, "all_permissive": false }
ansible_role
anryller/k8s-deploy-apps-ansible
68a8d10fae5ef52fea3308a50fe2083f70f5463b
0
roles/apply_deployment_cd
7,965
[ "no_license" ]
[ { "path": "roles/apply_deployment_cd/tasks/main.yml", "content": "---\n\n- name: Check upd variable\n debug:\n msg: \"upd is required\"\n failed_when: upd is not defined\n\n- name: Get updating service name\n set_fact:\n svc_name: \"{{ upd | regex_replace('^(.*?)-version=.*', '\\\\1') }}\"\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 895, "all_permissive": false }
ansible_role
anryller/k8s-deploy-apps-ansible
68a8d10fae5ef52fea3308a50fe2083f70f5463b
0
roles/create_deployment
7,965
[ "no_license" ]
[ { "path": "roles/create_deployment/templates/upload_app_configs.sh.j2", "content": "kubectl create configmap {{ item.1.name }}-configs \\\n --namespace {{ namespace }} \\\n --from-file=/opt/{{ namespace }}/{{ item.0.app_name }}/{{ item.1.name }}/configs/ \\\n --dry-run=client -o yaml | kubectl appl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 14138, "all_permissive": false }
ansible_role
anryller/k8s-deploy-apps-ansible
68a8d10fae5ef52fea3308a50fe2083f70f5463b
0
roles/create_deployment_cd
7,965
[ "no_license" ]
[ { "path": "roles/create_deployment_cd/templates/auto_deploy.yml", "content": " UPD_SVC_NAME:\n app_name: UPD_SVC_NAME\n app_version: \"{{ UPD_SVC_NAME_version }}\"\n containers:\n - name: UPD_SVC_NAME\n image: \"{{ docker_registry }}/UPD_SVC_NAME:\"{{ UPD_SVC_NAME_version }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1597, "all_permissive": false }
ansible_role
ariguillegp/dockershame
2ce34101e61d1e27f1dca15d75fe6223e4f9888a
0
roles/general
7,965
[ "no_license" ]
[ { "path": "roles/general/tasks/01-pkg-updates.yml", "content": "---\n- name: Update and upgrade apt packages\n apt:\n upgrade: dist\n update_cache: true\n\n- name: Install required packages\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg-agent\n ...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 4247, "all_permissive": false }
ansible_role
ariguillegp/dockershame
2ce34101e61d1e27f1dca15d75fe6223e4f9888a
0
roles/master
7,965
[ "no_license" ]
[ { "path": "roles/master/vars/main.yml", "content": "---\n# network: \"calico\" # working on adding cilium soon as an option\n# pod_subnet: \"192.168.0.0/17\"\n# service_subnet: \"192.168.128.0/17\"\n# dns_domain: \"cluster.local\"\n", "license_type": "no_license", "detected_licenses": [], "size_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2538, "all_permissive": false }
ansible_role
ariguillegp/dockershame
2ce34101e61d1e27f1dca15d75fe6223e4f9888a
0
roles/worker
7,965
[ "no_license" ]
[ { "path": "roles/worker/tasks/main.yml", "content": "---\n- name: Copy join command to node\n copy:\n src: join\n dest: /tmp/join\n mode: 0755\n\n- name: Join the node to cluster\n shell: sh /tmp/join\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 151 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 151, "all_permissive": false }
ansible_role
Mayuri-36/mysql-ansible-operator
d5b8700d94cb8e2794441427f83a17960dd5cd12
0
mysql-ansible-operator/roles/mysql
7,965
[ "no_license" ]
[ { "path": "mysql-ansible-operator/roles/mysql/tasks/main.yml", "content": "---\n- name: start mysql\n k8s:\n definition:\n kind: StatefulSet\n apiVersion: apps/v1\n metadata:\n name: 'mysql-deployment'\n namespace: '{{ meta.namespace }}'\n spec:\n replicas: \"{{s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1234, "all_permissive": false }
ansible_role
gdevenyi/biglab_ansible
b9c966aa0a06a5fd4a83f1c75285241b3bd4899e
0
roles/workstation
7,965
[ "no_license" ]
[ { "path": "roles/workstation/tasks/python.yml", "content": "---\n- name: download anaconda\n get_url:\n url: https://repo.anaconda.com/archive/Anaconda3-2021.05-Linux-x86_64.sh\n dest: /tmp/Anaconda3-2021.05-Linux-x86_64.sh\n\n- name: install anaconda\n shell: bash /tmp/Anaconda3-2021.05-Linux-x86_6...
{ "task_files": 9, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 19006, "all_permissive": false }
ansible_role
DevOpsJeremy/ansible
c12e3eac46589e95f87fa715f7115ec7661b3aaa
0
examples/collections/collections/ansible_collections/local/collection_a/roles/role_a
7,965
[ "no_license" ]
[ { "path": "examples/collections/collections/ansible_collections/local/collection_a/roles/role_a/tasks/main.yml", "content": "- name: Example task in my_namespace.collection_a.role_a\r\n ansible.builtin.debug:\r\n msg: This is an example task in the my_namespace.collection_a.role_a role", "license_ty...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 161, "all_permissive": false }
ansible_role
DevOpsJeremy/ansible
c12e3eac46589e95f87fa715f7115ec7661b3aaa
0
examples/collections/collections/ansible_collections/local/collection_a/roles/role_b
7,965
[ "no_license" ]
[ { "path": "examples/collections/collections/ansible_collections/local/collection_a/roles/role_b/tasks/main.yml", "content": "- name: Example task in my_namespace.collection_a.role_b\r\n ansible.builtin.debug:\r\n msg: This is an example task in the my_namespace.collection_a.role_b role", "license_ty...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 161, "all_permissive": false }
ansible_role
DevOpsJeremy/ansible
c12e3eac46589e95f87fa715f7115ec7661b3aaa
0
examples/collections/collections/ansible_collections/local/collection_b/roles/role_a
7,965
[ "no_license" ]
[ { "path": "examples/collections/collections/ansible_collections/local/collection_b/roles/role_a/tasks/main.yml", "content": "- name: Example task in my_namespace.collection_b.role_a\r\n ansible.builtin.debug:\r\n msg: This is an example task in the my_namespace.collection_b.role_a role", "license_ty...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 161, "all_permissive": false }
ansible_role
vpllion/ansible-playbook
2129bbc150aa79cf9b5414c2d3f98e5745a3f5af
0
roles/invoke_build
7,965
[ "no_license" ]
[ { "path": "roles/invoke_build/vars/main.yml", "content": "---\n# Variables listed here are applicable to all\n\n#release_tag: v1.0.0\n#apps: app1\n#repository: https://github.com/demo/demo.git\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 }, { "path": "role...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1559, "all_permissive": false }
ansible_role
vpllion/ansible-playbook
2129bbc150aa79cf9b5414c2d3f98e5745a3f5af
0
roles/publish_build
7,965
[ "no_license" ]
[ { "path": "roles/publish_build/defaults/main.yml", "content": "---\n# defaults file for publish_build---\n# Git source code URL\nrepository_url: \"\"\n\n# Applicaotion name\napp: app1 \n\n# for the release release_tag\nrelease_tag: v1.0.0\n\n# folder for binary\nbuild_bin_folder: \n\n# work dir\nwork_dir: '...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1240, "all_permissive": false }
ansible_role
jwronquillo/Activity8
8e3e93515eb1e5dd2fa12b14e5d232fa03063d85
0
roles/CentOS
7,965
[ "no_license" ]
[ { "path": "roles/CentOS/tasks/main.yml", "content": "---\n\n - name: install nagios package (CentOS)\n tags: nagios, centos\n yum:\n name: nagios\n state: latest\n when: ansible_distribution == \"CentOS\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 163, "all_permissive": false }
ansible_role
jwronquillo/Activity8
8e3e93515eb1e5dd2fa12b14e5d232fa03063d85
0
roles/Ubuntu
7,965
[ "no_license" ]
[ { "path": "roles/Ubuntu/tasks/main.yml", "content": "---\n\n\n - name: Install nagios (Ubuntu)\n tags: nagios, ubuntu\n apt:\n name: nagios4\n state: latest\n when: ansible_distribution == \"Ubuntu\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 157...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 157, "all_permissive": false }
ansible_role
mani1765/ansible-handler
180f59aaff26c8be6280ab357dfd51f85ed11e37
0
roles/nginx
7,965
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Install Nginx\n apt:\n name: nginx\n state: present\n update_cache: yes\n\n- name: Deploy initial index.html\n copy:\n src: index_v1.html\n dest: /var/www/html/index.html\n mode: '0644'\n\n- name: Update index.html with new...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 394, "all_permissive": false }
ansible_role
vjsmit/roboshop-ansible-2
5f214ed4b87d04bef241b0e8eb20357be5acde68
0
roles/common
7,965
[ "no_license" ]
[ { "path": "roles/common/tasks/app_presetup.yml", "content": "- name: Add App user\n ansible.builtin.shell: useradd roboshop\n\n- name: Remove app directory\n ansible.builtin.file:\n path: /app\n state: absent\n\n- name: Create app directory\n ansible.builtin.file:\n path: /app\n state: direct...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2584, "all_permissive": false }
ansible_role
vjsmit/roboshop-ansible-2
5f214ed4b87d04bef241b0e8eb20357be5acde68
0
roles/frontend
7,965
[ "no_license" ]
[ { "path": "roles/frontend/tasks/main.yml", "content": "- name: Installing Nginx\n ansible.builtin.dnf:\n name: nginx\n state: installed\n\n- name: Remove default directory\n ansible.builtin.file:\n path: /usr/share/nginx/html\n state: absent\n\n- name: Create a directory\n ansible.builtin.fil...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 714, "all_permissive": false }
ansible_role
vjsmit/roboshop-ansible-2
5f214ed4b87d04bef241b0e8eb20357be5acde68
0
roles/mysql
7,965
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "- name: Disable mysql8\n ansible.builtin.shell: dnf module disable mysql -y\n\n- name: Setup the MySQL5.7 repo file\n ansible.builtin.copy:\n src: mysql.repo\n dst: /etc/yum.repos.d/mysql.repo\n\n- name: Install MySQL Serve\n ansible.builtin.dnf:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 524, "all_permissive": false }
ansible_role
vjsmit/roboshop-ansible-2
5f214ed4b87d04bef241b0e8eb20357be5acde68
0
roles/rabbitmq
7,965
[ "no_license" ]
[ { "path": "roles/rabbitmq/tasks/main.yml", "content": "- name: Setup erlang & rabbitmq repo\n ansible.builtin.shell: curl -s https://packagecloud.io/install/repositories/rabbitmq/{{ item }} | bash\n loop:\n - erlang/script.rpm.sh\n - rabbitmq-server/script.rpm.sh\n\n- name: Install rabbitmq\n ansib...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 648, "all_permissive": false }
ansible_role
vjsmit/roboshop-ansible-2
5f214ed4b87d04bef241b0e8eb20357be5acde68
0
roles/shipping
7,965
[ "no_license" ]
[ { "path": "roles/shipping/tasks/main.yml", "content": "- name: Setup shipping\n ansible.builtin.import_role:\n name: common\n tasks_from: maven", "license_type": "no_license", "detected_licenses": [], "size_bytes": 92 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 92, "all_permissive": false }
ansible_role
ttsrg/gerrit
8f3bdee5b16b2c965e43ed877a309c42d88072e3
0
roles/devops_user
7,966
[ "no_license" ]
[ { "path": "roles/devops_user/tasks/main.yml", "content": "---\n- name: Create group - devops w gid\n group:\n name: \"{{ user_name }}\"\n state: present\n gid: 7777\n# become: yes\n \n- name: Create user devops w uid\n user:\n name: \"{{ user_name }}\"\n append: yes\n uid: 7777\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 314, "all_permissive": false }
ansible_role
ttsrg/gerrit
8f3bdee5b16b2c965e43ed877a309c42d88072e3
0
roles/docker
7,966
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: Check if Docker is installed\n command: systemctl status docker\n register: docker_check\n ignore_errors: yes\n\n- name: Add docker repo\n yum_repository:\n name: docker\n description: docker stable\n baseurl: https://download.do...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1817, "all_permissive": false }
ansible_role
ttsrg/gerrit
8f3bdee5b16b2c965e43ed877a309c42d88072e3
0
roles/installpacks
7,966
[ "no_license" ]
[ { "path": "roles/installpacks/tasks/main.yml", "content": "---\n- name: Installing necessary packets\n package:\n name:\n - nano\n - net-tools\n - ntp\n - epel-release\n - mc\n state: installed\n\n#enable and start time service\n- name: Enabling ntp\n service: name=ntpd enabled=yes st...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 249, "all_permissive": false }
ansible_role
ttsrg/gerrit
8f3bdee5b16b2c965e43ed877a309c42d88072e3
0
roles/nginx
7,966
[ "no_license" ]
[ { "path": "roles/nginx/files/Dockerfile", "content": "FROM centos:centos7\nLABEL maintainer=\"SergeiTiT\"\nRUN yum update -y && yum install -y epel-release && yum install -y nginx && yum clean all\n# apache RUN echo \"<h1>Sergei TiT httpd container</h1>\" > /var/www/html/index.html\nRUN echo \"<h1>-------...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1213, "all_permissive": false }
ansible_role
ttsrg/gerrit
8f3bdee5b16b2c965e43ed877a309c42d88072e3
0
roles/postgre
7,966
[ "no_license" ]
[ { "path": "roles/postgre/tasks/main.yml", "content": "---\n- name: Install postgresql server and contrib\n package: \n name:\n - postgresql-server\n - postgresql-contrib\n state: installed\n\n- name: Postgres init DB\n command: \"postgresql-setup initdb\"\n args: \n creates: /var/lib/p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 916, "all_permissive": false }
ansible_role
rmb938/ansible_hashicorp-consul
966ccbe870cbc9f1b60f55198eee8e2bc733efd0
0
roles/consul
7,966
[ "no_license" ]
[ { "path": "roles/consul/tasks/main.yaml", "content": "---\n- name: Create datavg\n community.general.lvg:\n vg: data\n pvs: /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_drive-scsi1\n\n- name: Create consul lv\n community.general.lvol:\n vg: data\n lv: consul\n size: 95G\n\n- name: Format consul...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 5306, "all_permissive": false }
ansible_role
wensir1991/ansible-install-k8s
aa3d0f436df6abe0ede8a7ba99a1798a9df1d87e
1
roles/common
7,966
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# 这个剧本在所有节点上运行\n- name: 创建k8s所需软件包目录\n file: dest={{ software_dir }} state=directory\n\n- name: 关闭firewalld\n service: name=firewalld state=stopped enabled=no\n\n- name: 开启iptables\n yum: name=iptables-services state=present\n\n- name: 拷贝iptables配...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 796, "all_permissive": false }
ansible_role
wensir1991/ansible-install-k8s
aa3d0f436df6abe0ede8a7ba99a1798a9df1d87e
1
roles/docker
7,966
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: 创建临时目录\n file: dest={{ tmp_dir }} state=directory\n\n- name: 下载docker二进制包\n get_url: url=https://download.docker.com/linux/static/stable/x86_64/docker-19.03.9.tgz dest={{ software_dir }} \n\n- name: 分发并解压docker二进制包\n unarchive: src={{ item...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 949, "all_permissive": false }