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
max-zubov/ansible-labs
7598370723958dbf9d62c51673a27bd8b717db1e
0
cm/ansible/day-2/roles/tomcat_test
171
[ "no_license" ]
[ { "path": "cm/ansible/day-2/roles/tomcat_test/tasks/main.yml", "content": "---\n# tasks file for tomcat_test\n- name: Check if Tomcat Process Running\n shell: ps -eo cmd | grep -v grep | grep \"tomcat\"\n args:\n warn: false\n\n- name: Check if Tomcat Responds 200\n shell: curl -sL -w \"%{http_code}\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 507, "all_permissive": false }
ansible_role
max-zubov/ansible-labs
7598370723958dbf9d62c51673a27bd8b717db1e
0
cm/ansible/day-3/roles/java
171
[ "no_license" ]
[ { "path": "cm/ansible/day-3/roles/java/tasks/main.yml", "content": "---\n# tasks file for java\n- name: Java installation\n dnf: name=java-{{java_version}}-openjdk-devel\n become: yes\n ", "license_type": "no_license", "detected_licenses": [], "size_bytes": 116 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 116, "all_permissive": false }
ansible_role
max-zubov/ansible-labs
7598370723958dbf9d62c51673a27bd8b717db1e
0
cm/ansible/day-3/roles/nginx
171
[ "no_license" ]
[ { "path": "cm/ansible/day-3/roles/nginx/tasks/main.yml", "content": "---\n# tasks file for nginx\n- name: Ensure Nginx Installed\n package: name=nginx\n become: yes\n \n- name: Deploy Config File\n template:\n src: nginx.conf.j2\n dest: /etc/nginx/nginx.conf\n notify:\n - reload nginx\n becom...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 330, "all_permissive": false }
ansible_role
max-zubov/ansible-labs
7598370723958dbf9d62c51673a27bd8b717db1e
0
cm/ansible/day-3/roles/tomcat
171
[ "no_license" ]
[ { "path": "cm/ansible/day-3/roles/tomcat/tasks/main.yml", "content": "---\n# tasks file for tomcat\n- name: Add Tomcat Group\n group:\n name: \"{{ tomcat_group }}\"\n state: present\n become: yes\n\n- name: Add Tomcat User\n user:\n name: \"{{ tomcat_user }}\"\n group: \"{{ tomcat_group }}\"\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 905, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/asdf
171
[ "no_license" ]
[ { "path": "roles/asdf/tasks/main.yml", "content": "---\n- name: \"Clone asdf's repository if not present\"\n git:\n repo: https://github.com/asdf-vm/asdf.git\n dest: ~/.asdf\n version: v0.7.6\n\n- name: \"Symlink fish completions for asdf\"\n file:\n src: ~/.asdf/completions/asdf.fish\n de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1109, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/common
171
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: \"Create ~/bin if not exists\"\n file:\n path: ~/bin\n state: directory\n mode: '0755'\n\n- name: \"Create ~/.local/bin if not exists\"\n file:\n path: ~/.local/bin\n state: directory\n mode: '0755'\n", "license_type":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 217, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/docker
171
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- block:\n - include_tasks: \"../../includes/package-with-repo.yml\"\n vars:\n apt_source_file: /etc/apt/sources.list.d/docker.list\n apt_source_content: \"deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 806, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/dropbox
171
[ "no_license" ]
[ { "path": "roles/dropbox/tasks/main.yml", "content": "---\n- block:\n - name: Add an apt key by id from a keyserver\n apt_key:\n keyserver: pgp.mit.edu\n id: 1C61A2656FB57B7E4DE0F4C1FC918B335044912E\n\n - include_tasks: \"../../includes/package-with-repo.yml\"\n vars:\n apt_source_fil...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 437, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/fish
171
[ "no_license" ]
[ { "path": "roles/fish/files/fish/functions/l-update-faas-cli.fish", "content": "function l-update-faas-cli -d 'Update faas-cli to latest release'\n set faas_cli_version (curl -sI https://github.com/openfaas/faas-cli/releases/latest | grep Location | awk -F\"/\" '{ printf \"%s\", $NF }' | tr -d '\\r')\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 4918, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/git
171
[ "no_license" ]
[ { "path": "roles/git/templates/.gitconfig.j2", "content": "[user]\n\temail = {{ git_email }}\n\tname = {{ git_name }}\n[alias]\n\tst = status\n[core]\n\teditor = vim\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 }, { "path": "roles/git/tasks/main.yml", "...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 529, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/google-chrome
171
[ "no_license" ]
[ { "path": "roles/google-chrome/tasks/main.yml", "content": "---\n- block:\n - include_tasks: \"../../includes/package-with-repo.yml\"\n vars:\n apt_source_file: /etc/apt/sources.list.d/google-chrome.list\n apt_source_content: \"deb http://dl.google.com/linux/chrome/deb/ stable main\"\n ap...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 356, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/kubectl
171
[ "no_license" ]
[ { "path": "roles/kubectl/tasks/main.yml", "content": "---\n- name: \"Install kubectl & krew\"\n shell: \"{{ item }}\"\n args:\n executable: /usr/bin/fish\n chdir: /tmp\n loop:\n - l-update-kubectl\n - l-update-krew\n\n- name: \"Update krew's local index\"\n shell: kubectl krew update\n args...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 450, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/minikube
171
[ "no_license" ]
[ { "path": "roles/minikube/tasks/main.yml", "content": "- name: Install minikube deb package\n shell: >-\n curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_{{ minikube_version }}_amd64.deb && \\\n dpkg -i minikube_{{ minikube_version }}_amd64.deb\n args:\n executable: /bin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 416, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/packages
171
[ "no_license" ]
[ { "path": "roles/packages/tasks/main.yml", "content": "---\n- name: Update apt cache\n apt: update_cache=true cache_valid_time=86400\n become: yes\n\n- name: \"Install common packages\"\n apt:\n pkg:\n - autoconf\n - automake\n - curl\n - dirmngr\n - fonts-powerline\n - g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 577, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/riot
171
[ "no_license" ]
[ { "path": "roles/riot/tasks/main.yml", "content": "---\n- block:\n - include_tasks: \"../../includes/package-with-repo.yml\"\n vars:\n apt_source_file: /etc/apt/sources.list.d/riot-im.list\n apt_source_content: \"deb https://packages.riot.im/debian/ bionic main\"\n apt_key: \"https://pack...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 338, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/terraform
171
[ "no_license" ]
[ { "path": "roles/terraform/tasks/main.yml", "content": "- name: Download terraform executable\n unarchive:\n src: \"https://releases.hashicorp.com/terraform/0.12.28/terraform_0.12.28_linux_amd64.zip\"\n dest: ~/bin\n remote_src: yes\n\n- name: Change terraform file permissions\n file:\n path: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 275, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/virtualbox
171
[ "no_license" ]
[ { "path": "roles/virtualbox/tasks/main.yml", "content": "---\n- block:\n - include_tasks: \"../../includes/package-with-repo.yml\"\n vars:\n apt_source_file: /etc/apt/sources.list.d/virtualbox.list\n apt_source_content: \"deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian bioni...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 377, "all_permissive": false }
ansible_role
laco/dotfiles
b92e2ead8848e51e9a36e62a67a0fa686fa25c97
0
roles/vscode
171
[ "no_license" ]
[ { "path": "roles/vscode/tasks/main.yml", "content": "---\n- block:\n - include_tasks: \"../../includes/package-with-repo.yml\"\n vars:\n apt_source_file: /etc/apt/sources.list.d/vscode.list\n apt_source_content: \"deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1529, "all_permissive": false }
ansible_role
princesshally/tomcat8-jenkins
06aec172cb7c79e89c0e62e49b472f2ca5dc30ba
0
roles/jenkins
171
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/main.yml", "content": "\r\n---\r\n - name: Download jenkins\r\n get_url:\r\n url: \"{{ jenkins_source }}\"\r\n dest: /data/tomcat/webapps\r\n\r\n - name: Stop systemctl\r\n command: systemctl stop tomcat\r\n\r\n - name: Start systemctl\r\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 334, "all_permissive": false }
ansible_role
princesshally/tomcat8-jenkins
06aec172cb7c79e89c0e62e49b472f2ca5dc30ba
0
roles/tomcat
171
[ "no_license" ]
[ { "path": "roles/tomcat/tasks/main.yml", "content": "\r\n---\r\n - name: install java 8\r\n yum: name=java-1.8.0-openjdk.x86_64 state=latest\r\n become: yes\r\n\r\n - name: add group \"tomcat\"\r\n group: name=tomcat\r\n\r\n - name: add user \"tomcat\"\r\n user: name=tomcat grou...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2297, "all_permissive": false }
ansible_role
SouthCoded/2018-Projects
aa6db264a50dc949a7aa46c98f66ebf32131e0ea
0
Ansible-Mailserver Project/roles/domain_config
175
[ "no_license" ]
[ { "path": "Ansible-Mailserver Project/roles/domain_config/tasks/main.yml", "content": " - name: get my public IP\n ipify_facts:\n delegate_to: localhost\n register: local\n \n - name: get my mailserver\n ipify_facts:\n register: mailserver\n\n \n - name: Get Existing DNS Records for doma...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1727, "all_permissive": false }
ansible_role
SouthCoded/2018-Projects
aa6db264a50dc949a7aa46c98f66ebf32131e0ea
0
Ansible-Mailserver Project/roles/mailserver
175
[ "no_license" ]
[ { "path": "Ansible-Mailserver Project/roles/mailserver/tasks/main.yml", "content": " - name: Install packages for apt over HTTPS\n apt:\n name: \"{{item}}\"\n state: present\n update_cache: yes\n with_items:\n - apt-transport-https\n - ca-certificates\n - curl\n - g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2743, "all_permissive": false }
ansible_role
SouthCoded/2018-Projects
aa6db264a50dc949a7aa46c98f66ebf32131e0ea
0
Ansible-Mailserver Project/roles/ssl_setup
175
[ "no_license" ]
[ { "path": "Ansible-Mailserver Project/roles/ssl_setup/tasks/main.yml", "content": " - name: echo SSL\n shell: echo \"SSL_TYPE=letsencrypt\" >> /etc/environment\n\n - name: Get certbot\n get_url:\n url: https://dl.eff.org/certbot-auto\n dest: ./certbot-auto\n\n \n - name: permis...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1262, "all_permissive": false }
ansible_role
twoyao/ansible-mongodb-cluster
86e57221c8170678aff38d78d2e48c45abdd2727
57
mongodb/roles/common
175
[ "permissive" ]
[ { "path": "mongodb/roles/common/tasks/main.yml", "content": "---\n\n# This Playbook runs all the common plays in the deployment\n\n#- name: Create the repository for ali mirror for China area\n# copy: src=Centos-ali.repo dest=/etc/yum.repos.d/CentOS-Base.repo\n#\n#- name: Refresh repository cache\n# shell...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1749, "all_permissive": true }
ansible_role
twoyao/ansible-mongodb-cluster
86e57221c8170678aff38d78d2e48c45abdd2727
57
mongodb/roles/mongoc
175
[ "permissive" ]
[ { "path": "mongodb/roles/mongoc/templates/mongoc.conf.j2", "content": "systemLog:\n destination: file\n path: \"/var/log/mongo/mongod-config.log\"\n logAppend: true\n\n# fork and run in background\nprocessManagement:\n fork: true\n pidFilePath: /var/run/mongo/mongoc.pid\n\nnet:\n port: {{ mongoc_port ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2074, "all_permissive": true }
ansible_role
twoyao/ansible-mongodb-cluster
86e57221c8170678aff38d78d2e48c45abdd2727
57
mongodb/roles/mongod
175
[ "permissive" ]
[ { "path": "mongodb/roles/mongod/templates/mongod.service.j2", "content": "[Unit]\nDescription=High-performance, schema-free document-oriented database\nAfter=network.target\n\n[Service]\nUser=mongod\nType=forking\nExecStart=/usr/bin/mongod --quiet --config /etc/mongod-{{ inventory_hostname }}.conf\n\n[Insta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2448, "all_permissive": true }
ansible_role
twoyao/ansible-mongodb-cluster
86e57221c8170678aff38d78d2e48c45abdd2727
57
mongodb/roles/mongos
175
[ "permissive" ]
[ { "path": "mongodb/roles/mongos/templates/mongos.conf.j2", "content": "#where to log\nsystemLog:\n destination: file\n path: \"/var/log/mongo/mongos.log\"\n logAppend: true\n\nprocessManagement:\n fork: true\n pidFilePath: /var/run/mongodb/mongos.pid\n\nnet:\n port: {{ mongos_port }}\n\nsecurity:\n k...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2286, "all_permissive": true }
ansible_role
twoyao/ansible-mongodb-cluster
86e57221c8170678aff38d78d2e48c45abdd2727
57
mongodb/roles/shard_test
175
[ "permissive" ]
[ { "path": "mongodb/roles/shard_test/tasks/main.yml", "content": "- name: Copy the test script\n template: src=shard_test.js dest=/tmp/shard_test.js\n\n- name: Run test script\n shell: /usr/bin/mongo \"localhost:{{ mongos_port }}/test\" /tmp/shard_test.js -u admin -p {{mongo_admin_pass}}\n register: shard...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1079, "all_permissive": true }
ansible_role
stackhpc/slurm_image_builder
e9773c00420176222649443d3634cdef4381021f
0
roles/builder
175
[ "no_license" ]
[ { "path": "roles/builder/tasks/dnf_packages.yml", "content": "---\n\n- name: Install dnf release packages\n dnf: \"{{ item }}\"\n loop: \"{{ dnf_release_packages }}\"\n\n- name: Install latest dnf packages\n dnf:\n name: \"{{ dnf_latest_packages }}\"\n state: latest\n\n- name: Install dnf packages ...
{ "task_files": 7, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 11, "total_bytes": 13153, "all_permissive": false }
ansible_role
smgaya/dsapce
ea9ee1981117105053b8ac2189f1599a581b014d
0
roles/dspace
175
[ "no_license" ]
[ { "path": "roles/dspace/tasks/localhost.yml", "content": "---\n\n- name: change host to /etc/hosts\n lineinfile:\n dest: /etc/hosts\n # regexp: [ \\t]+localhost'\n line: '{{dspace_ip}} dspace.{{domain}} dspace'\n state: present\n\n\n- hostname:\n name: \"dspace.{{domain}}\"\n", "license_...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2203, "all_permissive": false }
ansible_role
jmontleon/kiosk-operator
dae0d109e212203f626fcb306c9ce06518987214
0
roles/kiosk
175
[ "no_license" ]
[ { "path": "roles/kiosk/templates/kiosk.yml.j2", "content": "{% if persistent_home %}\n---\napiVersion: v1\nkind: PersistentVolumeClaim\nmetadata:\n name: {{ base_name }}-{{ item.count }}\n namespace: \"{{ namespace }}\"\n labels:\n name: {{ base_name }}\n count: \"{{ item.count }}\"\n component:...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 5919, "all_permissive": false }
ansible_role
muirdok/df_smb_403pre1
5fec0c40029de661c6a8d8118346ff6a661c9a83
0
roles/confgure_appliance
175
[ "no_license" ]
[ { "path": "roles/confgure_appliance/tasks/main.yml", "content": "---\n - name: Random Delay\n pause:\n seconds: \"{{ config_ci_delay | random }}\"\n\n - name: Create a Pool\n shell: diskinfo | grep 32 | awk '{print $2}' | xargs zpool create \"{{ config_applaince_pool }}\"\n\n - name: Create a ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 751, "all_permissive": false }
ansible_role
muirdok/df_smb_403pre1
5fec0c40029de661c6a8d8118346ff6a661c9a83
0
roles/create_and_install_vm
175
[ "no_license" ]
[ { "path": "roles/create_and_install_vm/tasks/main.yml", "content": "---\n - name: Random Delay\n pause:\n seconds: \"{{ config_ci_delay | random }}\"\n\n - name: Create Current Build Folder\n vcenter_folder:\n validate_certs: False\n hostname:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3679, "all_permissive": false }
ansible_role
muirdok/df_smb_403pre1
5fec0c40029de661c6a8d8118346ff6a661c9a83
0
roles/create_pxe_env
175
[ "no_license" ]
[ { "path": "roles/create_pxe_env/vars/main.yml", "content": "---\npxe_new_iso: true\npxe_clean_all: true\npxe_iso_repos: \"https://napalm.nexenta.com/iso-nightly\"\npxe_nfs_server: \"192.168.111.1\"\npxe_tftpboot: \"/tftpboot\"\npxe_unpacked_isos: \"NEF\"\n...\n", "license_type": "no_license", "detec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3073, "all_permissive": false }
ansible_role
muirdok/df_smb_403pre1
5fec0c40029de661c6a8d8118346ff6a661c9a83
0
roles/run_smbtorture
175
[ "no_license" ]
[ { "path": "roles/run_smbtorture/tasks/runme.yml", "content": "#Result Codes:\n#PASSED = 1\n#BLOCKED = 2\n#UNTESTED = 3\n#RETEST = 4\n#FAILED = 5\n#FAIL...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2574, "all_permissive": false }
ansible_role
o-grupo-x/iac-grafana-prometheus
5db57e5fbe535134fc9fd8c338c662cb40a926e4
0
ansible/roles/docker
175
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "- name: Esperar o apt/dpkg ficar livre\n shell: |\n while fuser /var/lib/dpkg/lock >/dev/null 2>&1 || \\\n fuser /var/lib/apt/lists/lock >/dev/null 2>&1 || \\\n fuser /var/lib/dpkg/lock-frontend >/dev/null 2>&1; do\n ech...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1276, "all_permissive": false }
ansible_role
o-grupo-x/iac-grafana-prometheus
5db57e5fbe535134fc9fd8c338c662cb40a926e4
0
ansible/roles/grafana
175
[ "no_license" ]
[ { "path": "ansible/roles/grafana/tasks/main.yml", "content": "- name: Ensure docker-compose.yaml is present\n copy:\n src: \"{{ playbook_dir }}/../docker-compose.yaml\"\n dest: /home/debian/docker-compose.yaml\n mode: '0644'\n\n- name: Copiar fonte de dados e dashboards do Grafana (Prometheus)\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 481, "all_permissive": false }
ansible_role
o-grupo-x/iac-grafana-prometheus
5db57e5fbe535134fc9fd8c338c662cb40a926e4
0
ansible/roles/nginx
175
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "- name: Copy nginx configuration\n copy:\n src: \"{{ playbook_dir }}/../nginx.conf\"\n dest: /home/debian/nginx.conf\n mode: '0644'\n\n- name: Start nginx reverse proxy\n command: docker-compose -f /home/debian/docker-compose.yaml up -d ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 246, "all_permissive": false }
ansible_role
o-grupo-x/iac-grafana-prometheus
5db57e5fbe535134fc9fd8c338c662cb40a926e4
0
ansible/roles/node-exporter
175
[ "no_license" ]
[ { "path": "ansible/roles/node-exporter/tasks/main.yml", "content": "- name: Start node-exporter container\n command: docker-compose -f /home/debian/docker-compose.yaml up -d node-exporter\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 120 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 120, "all_permissive": false }
ansible_role
o-grupo-x/iac-grafana-prometheus
5db57e5fbe535134fc9fd8c338c662cb40a926e4
0
ansible/roles/prometheus
175
[ "no_license" ]
[ { "path": "ansible/roles/prometheus/tasks/prometheus.yaml", "content": "global:\n scrape_interval: 15s\nscrape_configs:\n - job_name: 'gce'\n gce_sd_configs:\n - project: app-chamada-5706\n zone: us-central1-a\n port: 9100\n relabel_configs:\n - source_labels: [__meta_gce_ins...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 733, "all_permissive": false }
ansible_role
da-moon/soil-demo
9890d3d2fb87c06d641b7577ef194d8ae343a3c7
1
playbooks/consul/roles/02-install-prerequisites
175
[ "no_license" ]
[ { "path": "playbooks/consul/roles/02-install-prerequisites/tasks/main.yml", "content": "- become: true\n block:\n - import_tasks: 00-asserts.yml\n - import_tasks: 01-initialize.yml\n - include_tasks: installer.yml\n loop:\n - name: ca-certificates\n - name: curl\n - name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 459, "all_permissive": false }
ansible_role
da-moon/soil-demo
9890d3d2fb87c06d641b7577ef194d8ae343a3c7
1
playbooks/consul/roles/04-consul-certificates
175
[ "no_license" ]
[ { "path": "playbooks/consul/roles/04-consul-certificates/defaults/main.yml", "content": "---\ncfssl_config_path: \"{{ role_path+'/files/cfssl/config.json' }}\"\nprivate_ip: \"{{ ansible_default_ipv4.address|default(ansible_all_ipv4_addresses[0]) }}\"\n", "license_type": "no_license", "detected_licen...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 7422, "all_permissive": false }
ansible_role
da-moon/soil-demo
9890d3d2fb87c06d641b7577ef194d8ae343a3c7
1
playbooks/consul/roles/05-configure-consul-server
175
[ "no_license" ]
[ { "path": "playbooks/consul/roles/05-configure-consul-server/tasks/03-transport-security.yml", "content": "---\n- block:\n - name: \"uploading consul server ca\"\n copy:\n src: \"{{ certificate_root_dir }}/ca.pem.enc\"\n dest: \"{{ consul_user_home_path }}/ca.pem\"\n force: yes\n dec...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 693, "all_permissive": false }
ansible_role
da-moon/soil-demo
9890d3d2fb87c06d641b7577ef194d8ae343a3c7
1
playbooks/soil/roles/00-ansible-controller
175
[ "no_license" ]
[ { "path": "playbooks/soil/roles/00-ansible-controller/tasks/00-asserts.yml", "content": "---\n\n- name: Check OS compatibility\n fail:\n msg: \"{{ ansible_os_family }} is not compatible with tasks in this role\"\n when:\n - ansible_os_family != \"Debian\"\n- name: Check CPU architecture compatibilit...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 696, "all_permissive": false }
ansible_role
da-moon/soil-demo
9890d3d2fb87c06d641b7577ef194d8ae343a3c7
1
playbooks/soil/roles/01-install-prerequisites
175
[ "no_license" ]
[ { "path": "playbooks/soil/roles/01-install-prerequisites/tasks/main.yml", "content": "---\n\n- block:\n - import_tasks: \"00-asserts.yml\"\n - import_tasks: \"01-initialize.yml\"\n - name: \"Installing base dependencies\"\n include_tasks: installer.yml\n loop:\n - { name: ca-certificates}\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 580, "all_permissive": false }
ansible_role
da-moon/soil-demo
9890d3d2fb87c06d641b7577ef194d8ae343a3c7
1
playbooks/soil/roles/02-install-docker
175
[ "no_license" ]
[ { "path": "playbooks/soil/roles/02-install-docker/tasks/00-asserts.yml", "content": "- name: Check OS compatibility\n fail:\n msg: \"{{ ansible_facts['os_family'] }} is not currently supported by this role.\"\n when:\n - ansible_facts['os_family'] not in ['Debian']\n- name: Assert variables\n asser...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 4367, "all_permissive": false }
ansible_role
da-moon/soil-demo
9890d3d2fb87c06d641b7577ef194d8ae343a3c7
1
playbooks/soil/roles/03-install-soil
175
[ "no_license" ]
[ { "path": "playbooks/soil/roles/03-install-soil/tasks/01-build.yml", "content": "---\n- block:\n - name: create temporary build directory\n tempfile:\n state: directory\n suffix: build\n register: tmp_build_dir\n - block:\n - name: Assert variables\n assert:\n that:\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3010, "all_permissive": false }
ansible_role
da-moon/soil-demo
9890d3d2fb87c06d641b7577ef194d8ae343a3c7
1
playbooks/soil/roles/04-configure-soil
175
[ "no_license" ]
[ { "path": "playbooks/soil/roles/04-configure-soil/tasks/02-ufw.yml", "content": "---\n- block :\n - name: \"upload soil ufw config file\"\n template:\n src: \"ufw/soil.j2\"\n dest: \"/etc/ufw/applications.d/soil-server\"\n decrypt: yes\n mode: \"0755\"\n force: yes\n - name: \"...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 13, "total_bytes": 7971, "all_permissive": false }
ansible_role
da-moon/soil-demo
9890d3d2fb87c06d641b7577ef194d8ae343a3c7
1
playbooks/soil/roles/05-deploy-pods
175
[ "no_license" ]
[ { "path": "playbooks/soil/roles/05-deploy-pods/tasks/main.yml", "content": "---\n- block:\n - import_tasks: \"00-asserts.yml\"\n - import_tasks: \"01-pod-specs.yml\"\n - import_tasks: \"02-reload-systemd.yml\"\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3167, "all_permissive": false }
ansible_role
sxVova/master-ansible
08094473ded18f3635d141d913d8916b8be1ee1e
0
roles/cadvisor_role
175
[ "no_license" ]
[ { "path": "roles/cadvisor_role/tasks/main.yml", "content": "---\n- name: Run a cadvisor container\n docker_container:\n name: cadvisor\n image: gcr.io/cadvisor/cadvisor\n ports:\n - \"8080:8080\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 141 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 141, "all_permissive": false }
ansible_role
sxVova/master-ansible
08094473ded18f3635d141d913d8916b8be1ee1e
0
roles/db_role
175
[ "no_license" ]
[ { "path": "roles/db_role/tasks/main.yml", "content": "---\n- name: Run a postgres container\n docker_container:\n name: postgres\n image: postgres\n ports:\n - \"5432:5432\"\n env:\n POSTGRES_PASSWORD: \"{{ <PASSWORD>_admin_password }}\"", "license_type": "no_license", "de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 198, "all_permissive": false }
ansible_role
sxVova/master-ansible
08094473ded18f3635d141d913d8916b8be1ee1e
0
roles/docker_role
175
[ "no_license" ]
[ { "path": "roles/docker_role/tasks/main.yml", "content": "---\n- name: Install the latest version of Docker\n yum:\n name: docker\n state: latest\n\n- name: Start docker\n systemd:\n state: started\n name: docker\n enabled: yes\n\n- name: Enable docker\n systemd:\n name: docker...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 428, "all_permissive": false }
ansible_role
sxVova/master-ansible
08094473ded18f3635d141d913d8916b8be1ee1e
0
roles/node_exporter_role
175
[ "no_license" ]
[ { "path": "roles/node_exporter_role/tasks/main.yml", "content": "---\n- name: Run a node exporter container\n docker_container:\n name: node-exporter\n image: quay.io/prometheus/node-exporter\n network_mode: host\n pid_mode: host\n command:\n - '--path.rootfs=/host'\n ports:\n -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 245, "all_permissive": false }
ansible_role
sxVova/master-ansible
08094473ded18f3635d141d913d8916b8be1ee1e
0
roles/prometheus_role
175
[ "no_license" ]
[ { "path": "roles/prometheus_role/templates/prometheus.yml.j2", "content": "---\nalerting:\n alertmanagers:\n - static_configs:\n - targets:\n - {{ prom_private_ip }}:9093\nglobal:\n scrape_interval: 10s\n evaluation_interval: 10s\n\nrule_files:\n - \"container.rules\"\n - \"h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2155, "all_permissive": false }
ansible_role
sxVova/master-ansible
08094473ded18f3635d141d913d8916b8be1ee1e
0
roles/web_role
175
[ "no_license" ]
[ { "path": "roles/web_role/tasks/main.yml", "content": "---\n- name: Run a pgAdmin container\n docker_container:\n name: pgAdmin\n image: dpage/pgadmin4\n ports:\n - \"80:80\"\n env:\n PGADMIN_DEFAULT_EMAIL: \"{{ pgAdmin_admin_email }}\"\n PGADMIN_DEFAULT_PASSWORD: \"{{ pgAdmin_adm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 254, "all_permissive": false }
ansible_role
lenats03/hw_14
bd092126fbebb9b7b2eed63fa612f76f6719ee43
0
roles/hello_world
175
[ "no_license" ]
[ { "path": "roles/hello_world/tasks/main.yml", "content": "\n- name: Copy hello world\n copy: src=helloworld.txt dest=/tmp/test1/\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 70, "all_permissive": false }
ansible_role
lenats03/hw_14
bd092126fbebb9b7b2eed63fa612f76f6719ee43
0
roles/hostname
175
[ "no_license" ]
[ { "path": "roles/hostname/templates/hostname.j2", "content": "this hostname is : {{ansible_hostname}}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "roles/hostname/tasks/main.yml", "content": "- name: hostname_template\n template:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 144, "all_permissive": false }
ansible_role
SnappySoftware/snappy-ubuntu
4f286cf246124818221f22b3b53991e4e2ad2351
0
ansible/roles/common
170
[ "permissive" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- include_tasks: update.yml\n- include_tasks: upgrade.yml\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 61 }, { "path": "ansible/roles/common/tasks/update.yml", "conte...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 128, "all_permissive": true }
ansible_role
SnappySoftware/snappy-ubuntu
4f286cf246124818221f22b3b53991e4e2ad2351
0
ansible/roles/docker
170
[ "permissive" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n- name: Download Docker install script\n get_url:\n url: https://get.docker.com\n dest: /tmp/get-docker.sh\n mode: '0755'\n\n- name: Run Docker install script\n shell: sh /tmp/get-docker.sh\n\n- name: Create docker group if not exi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 508, "all_permissive": true }
ansible_role
SnappySoftware/snappy-ubuntu
4f286cf246124818221f22b3b53991e4e2ad2351
0
ansible/roles/java
170
[ "permissive" ]
[ { "path": "ansible/roles/java/tasks/main.yml", "content": "---\n- name: Update apt cache\n apt:\n update_cache: yes\n\n- name: Install OpenJDK 11\n apt:\n name: openjdk-11-jdk\n state: present\n\n- name: Install OpenJDK 17\n apt:\n name: openjdk-17-jdk\n state: present\n\n- name: Set Java ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 588, "all_permissive": true }
ansible_role
mokdog13/ansible
0e0cfdbf8c419d701de37ebe2b2631afe86acd4f
1
roles/terraform
170
[ "no_license" ]
[ { "path": "roles/terraform/vars/main.yml", "content": "---\n# vars file for terraform\nproject_path_input: \"/home/ubuntu/terraform_project\"\nplan_file_input: \"/home/ubuntu/terraform_project/test.tfplan\"\nami_input: \"ami-00399ec92321828f5\"\nvpc_cidr_block: \"172.16.58.3/16\"\nsubnet_cidr_block: \"172.1...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 2726, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/ansible
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/ansible/tasks/main.yml", "content": "---\n- name: Add Ansible Repository into /etc/apt/sources.list\n apt_repository: repo='ppa:ansible/ansible' state=present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 121 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 121, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/antivirus
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/antivirus/tasks/main.yml", "content": "- name: Install or update ClamAV\n apt: pkg=clamav state=latest\n\n- name: Copy ClamAV Config\n template:\n src: clamd.conf.j2\n dest: /etc/clamav/clamd.conf\n owner: root\n group: root\n", "license_type": "no_li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 192, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/common
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/common/tasks/main.yml", "content": "---\n- name: Install Update Notifier Common Package\n apt: pkg=update-notifier-common state=latest force=yes\n\n- name: Update Cache\n apt: update_cache=yes force=yes\n register: cache_update\n\n- name: Check if packages to Update...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2972, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/fail2ban
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/fail2ban/tasks/main.yml", "content": "---\n- name: Install fail2ban Package\n apt: pkg=fail2ban state=latest force=yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 80 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 80, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/git
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/git/tasks/main.yml", "content": "---\n - name: Install Git Package\n apt: pkg=git state=latest force=yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 74, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/gogs
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/gogs/tasks/main.yml", "content": "---\n- name: Download GOGS\n get_url: url=https://github.com/gogits/gogs/releases/download/v0.6.5/linux_amd64.zip\n dest=\"/root/gogs-0.6.5.zip\"\n\n- name: Expand GOGS zip\n command: unzip /root/gogs-0.6.5.zip\n args:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2492, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/mariadb-configuration
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/mariadb-configuration/tasks/main.yml", "content": "---\n- name: Check for .my.cnf file\n stat: path=/root/.my.cnf\n register: mycnf\n\n- name: Install makepasswd\n apt: >\n pkg=makepasswd\n update_cache=yes\n state=latest\n\n- name: Generate MYSQL Password\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 4222, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/monit
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/monit/tasks/main.yml", "content": "---\n- name: Install Monit Package\n apt: pkg=monit state=latest\n register: monit_installed\n\n- name: Copy Monit Configuration\n template:\n src: monitrc.j2\n dest: /etc/monit/monitrc\n owner: root\n group: root\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 476, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/nginx-configuration
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/nginx-configuration/tasks/main.yml", "content": "---\n- name: Create vHosts.d Directory\n file: path=/etc/nginx/vhosts.d state=directory\n\n- name: Create Microcache Directory\n file: path=/var/nginx state=directory\n\n- name: Create Microcache Directory\n file: pat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 865, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/postfix
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/postfix/templates/sasl_passwd.j2", "content": "{{ postfix_relayhost }}:587 {{ postfix_relayhost_user }}:{{ postfix_relayhost_pass }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "provision-server-mgmt/r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2076, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/rootkit
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/rootkit/tasks/main.yml", "content": "- name: Install or update CHKRootKit\n apt:\n pkg: \"chkrootkit\"\n state: latest\n\n- name: Install or update RKHunter\n apt:\n pkg: \"rkhunter\"\n state: latest\n\n- name: Add RKHunter Cron job\n cron: name=\"RKHunt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 298, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/rsyslog
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/rsyslog/tasks/main.yml", "content": "---\n- name: Install rsyslog tools\n apt: pkg={{ item }} state=latest\n with_items:\n - rsyslog\n - rsyslog-gnutls\n\n- name: Configure Loggly\n template: src=22-loggly.conf.j2 dest=/etc/rsyslog.d/22-loggly.conf\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 479, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-mgmt/roles/ufw
170
[ "no_license" ]
[ { "path": "provision-server-mgmt/roles/ufw/tasks/main.yml", "content": "---\n- name: Enable UFW\n ufw: state=enabled\n\n- name: Rate Limit Port 22\n ufw: rule=limit port=22 proto=tcp\n\n- name: Allow Port 80\n ufw: rule=allow port=80 proto=tcp\n\n- name: Allow Port 443\n ufw: rule=allow port=443 proto=t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 347, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-www/roles/common
170
[ "no_license" ]
[ { "path": "provision-server-www/roles/common/tasks/main.yml", "content": "---\n- name: Update Cache\n apt: update_cache=yes force=yes\n register: cache_update\n\n- name: Check if packages to Update\n command: /usr/bin/aptitude -F%p --disable-columns search ~U\n register: packages\n\n- debug: packages\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3930, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-www/roles/gsutil
170
[ "no_license" ]
[ { "path": "provision-server-www/roles/gsutil/templates/transfer-backups.j2", "content": "#!/bin/sh\n\nGSBUCKET=lc-backup\nGSUTILPATH=/usr/local/bin/gsutil\nDAY=$(date +\"%A\")\n\n/usr/local/bin/gsutil cp /srv/backups/mysql/${DAY}.zip gs://${GSBUCKET}/{{ ansible_fqdn }}/mysql/${DAY}.zip\n/usr/local/bin/gsuti...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 652, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-www/roles/mariadb-install
170
[ "no_license" ]
[ { "path": "provision-server-www/roles/mariadb-install/tasks/main.yml", "content": "---\n- name: Download and Add MariaDB Key to Apt-Get Keyring\n apt_key: keyserver=hkp://keyserver.ubuntu.com:80 id=0xcbcb082a1bb943db state=present\n\n- name: Add MariaDB Repository into /etc/apt/sources.list\n apt_reposito...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 897, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-www/roles/monit
170
[ "no_license" ]
[ { "path": "provision-server-www/roles/monit/templates/mariadb.j2", "content": "check process mysql with pidfile /var/run/mysqld/mysqld.pid\n start program = \"/usr/sbin/service mysql start\" with timeout 60 seconds\n stop program = \"/usr/sbin/service mysql stop\"\n if failed unixsocket /var/run/my...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1546, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-www/roles/new-relic
170
[ "no_license" ]
[ { "path": "provision-server-www/roles/new-relic/tasks/main.yml", "content": "---\n- name: Download and Add New-Relic Key to Apt-Get Keyring\n apt_key: url=https://download.newrelic.com/548C16BF.gpg state=present\n\n- name: Add New-Relic Repository into /etc/apt/sources.list\n apt_repository: repo='deb htt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 672, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-www/roles/nginx-install
170
[ "no_license" ]
[ { "path": "provision-server-www/roles/nginx-install/tasks/main.yml", "content": "---\n- name: Download and Add NGINX Key to Apt-Get Keyring\n apt_key: url=http://nginx.org/keys/nginx_signing.key state=present\n\n- name: Add NGINX Repository into /etc/apt/sources.list\n apt_repository: repo='deb http://ngi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 779, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-www/roles/php-fpm
170
[ "no_license" ]
[ { "path": "provision-server-www/roles/php-fpm/tasks/main.yml", "content": "---\n- name: Install PHP-FPM Package\n apt: pkg=php5-fpm state=latest force=yes\n\n- name: Install PHP-FPM CLI Package\n apt: pkg=php5-cli state=latest force=yes\n\n- name: Install PHP MySQL ND Package\n apt: pkg=php5-mysqlnd stat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 742, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-www/roles/redis
170
[ "no_license" ]
[ { "path": "provision-server-www/roles/redis/tasks/main.yml", "content": "---\n- name: Install Redis Server Package\n apt: name=redis-server\n state=present\n register: redis_changed\n\n- name: Install PHP Redis Package\n apt: name=php5-redis\n state=present\n register: redis_changed\n\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 862, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-server-www/roles/swap
170
[ "no_license" ]
[ { "path": "provision-server-www/roles/swap/tasks/main.yml", "content": "---\n- name: Write swapfile\n command: fallocate -l 1GB /swapfile creates=/swapfile\n register: write_swapfile\n\n- name: Set swapfile permissions\n file: path=/swapfile mode=600\n register: set_swappermissions\n when: write_swapfi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 972, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-site-wordpress/roles/mysql
170
[ "no_license" ]
[ { "path": "provision-site-wordpress/roles/mysql/tasks/main.yml", "content": "---\n- name: Install MYSQL Python Package\n apt: name=python-mysqldb\n update_cache=yes\n state=present\n\n- name: Create MYSQL Database - Production\n mysql_db: name=\"{{ mysql_database_prod.stdout }}\" state=present...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 932, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-site-wordpress/roles/nginx
170
[ "no_license" ]
[ { "path": "provision-site-wordpress/roles/nginx/templates/vhost.conf.j2", "content": "{% if rewrite_www != \"dev\" %}\nserver {\n {% if rewrite_www == \"www\" %}\n server_name {{ website_root }};\n return 301 $scheme://www.{{ website_root }}$request_uri;\n {% else %}\n server_name www.{{ website_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 5596, "all_permissive": false }
ansible_role
alistek/ansible
88f71c08c5223947f365bdabf4fbe15d3c435955
1
provision-site-wordpress/roles/wordpress
170
[ "no_license" ]
[ { "path": "provision-site-wordpress/roles/wordpress/tasks/main.yml", "content": "---\n- name: Download Wordpress\n get_url: url=http://wordpress.org/wordpress-latest.tar.gz\n dest=\"/srv/apps/{{ website_root }}/public/wordpress-latest.tar.gz\"\n\n- name: Extract archive\n command: \"tar xvfz wor...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 6499, "all_permissive": false }
ansible_role
Maxence-L/jupyter-deploy
2301726308f5877edaad473b85044ce8a45b5776
0
roles/create-user
170
[ "no_license" ]
[ { "path": "roles/create-user/tasks/main.yml", "content": "---\n# Playbook to setup a new user with a datascience working environment\n\n# 1. Create a new user\n\n- name: Create wheel group\n group:\n name: wheel\n state: present\n\n- name: \"Create a new user\"\n user: \n name: \"{{ inventory_hos...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1311, "all_permissive": false }
ansible_role
Maxence-L/jupyter-deploy
2301726308f5877edaad473b85044ce8a45b5776
0
roles/magic-conda
170
[ "no_license" ]
[ { "path": "roles/magic-conda/tasks/main.yml", "content": "---\n# tasks file for magic-conda\n\n- name: Download conda Package\n get_url:\n url: \"{{ conda_source_url }}\"\n dest: \"{{ conda_file_destination }}\"\n checksum: \"{{ conda_source_checksum}}\"\n mode: 0550\n\n- name: Create conda in...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 2142, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/brctl
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/brctl/tasks/main.yml", "content": "---\n#\n# Configures networking and Linux brdiges \n#\n- name: Creating ONOS bridge\n become: yes\n template:\n src: templates/create_bridge.j2\n dest: \"/etc/network/if-pre-up.d/create_bridge_{{ bridge.name }}\"\n owne...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2229, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/common
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/common/tasks/main.yml", "content": "---\n#\n# Performs basic tasks to prepare the dev environment, such as managing the default user\n# credentials, installing the basic packages, assigning host names.\n#\n- name: Setting password ubuntu and ssh key for user ubuntu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 601, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/gui
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/gui/tasks/main.yml", "content": "---\n#\n# Installs the Ubuntu GUI Unity and makes sure the machine doesn't start in text mode.\n# The machine is restarted at the end of the process.\n#\n- name: Installing GUI dependencies\n become: yes\n apt:\n name: lubuntu-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 643, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/gui-customization
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/gui-customization/tasks/main.yml", "content": "---\n#\n# Customizes the machine GUI\n#\n- name: Creating folder for background images\n become: yes\n file:\n path: /usr/share/backgrounds\n state: directory\n\n- name: Downloading ONOS background\n become: y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 545, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/intellij-install
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/intellij-install/tasks/main.yml", "content": "---\n#\n# Installs the IntelliJ IDE\n#\n- name: Making sure Application folder is present\n file:\n path: \"/home/ubuntu/{{ app_dir }}\"\n state: directory\n mode: 0777\n owner: ubuntu\n group: ubuntu\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 848, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/java8-oracle
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/java8-oracle/tasks/main.yml", "content": "---\n- name: Install add-apt-repostory\n become: yes\n apt: name=software-properties-common state=latest update_cache=yes\n\n- name: Add Oracle Java Repository\n become: yes\n apt_repository: repo='ppa:webupd8team/java'...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 826, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/lxc
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/lxc/tasks/main.yml", "content": "- name: Removing lxc default config\n become: yes\n file:\n path: /etc/lxc/default.conf\n state: absent\n\n- name: Copying default lxc file\n become: yes\n copy:\n src: files/default.conf\n dest: /etc/lxc/default.con...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1953, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/mininet
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/mininet/tasks/main.yml", "content": "---\n#\n# Clones the Mininet repository and does a full Mininet installation, including Wireshark\n#\n- name: Cloning the mininet repository\n git: repo=https://github.com/mininet/mininet.git dest=/home/ubuntu/mininet\n become...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 386, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/onos-install
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/onos-install/tasks/main.yml", "content": "---\n#\n# Installs ONOS and downloads the related dependencies.\n#\n- name: Cloning ONOS repository\n git:\n repo: \"{{ onos_repo_url }}\"\n dest: \"{{ onos_dir }}\"\n version: \"onos-{{ onos_version }}\"\n\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2286, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/tutorial-common
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/tutorial-common/templates/gui_custom.j2", "content": "[*]\nwallpaper_mode=center\nwallpaper_common=1\nwallpapers_configured=1\nwallpaper0=/usr/share/lubuntu/wallpapers/onos.png\nwallpaper=/usr/share/lubuntu/wallpapers/onos.png\ndesktop_bg=#ffffff\ndesktop_fg=#00000...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 8040, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/tutorial-distributed
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/tutorial-distributed/tasks/main.yml", "content": "---\n#\n# Adds distributed tutorial specific configurations\n#\n- name: Cloning byon app repo\n git:\n repo: \"{{ tutorials.distributed.byon_app_repo_url }}\"\n dest: \"/home/{{ tutorials.distributed.user }}/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 567, "all_permissive": false }
ansible_role
opennetworkinglab/onos
dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9
1,237
tools/dev/vagrant/ansible/roles/tutorial-optical
170
[ "no_license" ]
[ { "path": "tools/dev/vagrant/ansible/roles/tutorial-optical/tasks/main.yml", "content": "---\n#\n# Adds optical tutorial specific configurations\n#\n- name: Installing Prerequisites\n apt:\n name: \"{{ item }}\"\n force: yes\n update_cache: yes\n with_items: \"{{ tutorials.optical.packages }}\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3521, "all_permissive": false }