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
Misk77/Automatisering-vagrant_ansible
8fe73054234c71ed8910947a13e128a38a5b94c0
0
roles/dbserver
287
[ "no_license" ]
[ { "path": "roles/dbserver/templates/webappdb.sql.j2", "content": "use \"{{ webapp_db_dbname }}\";\nCREATE TABLE IF NOT EXISTS \"{{ webapp_db_tablename }}\" (\n ip varchar(255) NOT NULL,\n visit_time datetime NOT NULL\n) DEFAULT CHARSET=utf8;\n", "license_type": "no_license", "detected_licenses": [...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1175, "all_permissive": false }
ansible_role
Misk77/Automatisering-vagrant_ansible
8fe73054234c71ed8910947a13e128a38a5b94c0
0
roles/webapp
287
[ "no_license" ]
[ { "path": "roles/webapp/tasks/main.yml", "content": "---\n\n- git:\n repo: \"https://github.com/initab/demoapp\"\n dest: /var/www/demo\n\n- name: install req package for EPEL\n yum: \n name: \"{{ item }}\"\n state: present\n loop:\n - \"@Development tools\"\n - \"perl\"\n - \"perl-App*\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 519, "all_permissive": false }
ansible_role
Misk77/Automatisering-vagrant_ansible
8fe73054234c71ed8910947a13e128a38a5b94c0
0
roles/webbserver
287
[ "no_license" ]
[ { "path": "roles/webbserver/templates/min_vhost.conf.j2", "content": "\n<VirtualHost {{ servernameip }}:80>\n ServerName {{ servername }}\n DocumentRoot {{ documentroot }}\n</VirtualHost>\n\n\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { "pat...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1465, "all_permissive": false }
ansible_role
Zjq-k/Ansible
59eb9e8c34b4616ff340fa0b3ac4e22c205added
0
ansible/roles/init_chpasswd
287
[ "no_license" ]
[ { "path": "ansible/roles/init_chpasswd/tasks/main.yml", "content": "- name: change passwd\n shell: echo \"root:<PASSWORD>\" |chpasswd\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 64, "all_permissive": false }
ansible_role
Zjq-k/Ansible
59eb9e8c34b4616ff340fa0b3ac4e22c205added
0
ansible/roles/init_jdk
287
[ "no_license" ]
[ { "path": "ansible/roles/init_jdk/tasks/main.yml", "content": "- name: copy1\n copy: src=/data/soft/ansible/software/jdk-8u161-linux-x64.tar.gz dest=/root\n\n- name: mkdir\n command: mkdir -p /data/soft\n\n- name: copy2\n command: cp /root/jdk-8u161-linux-x64.tar.gz /data/soft/\n\n- name: tar\n command:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 570, "all_permissive": false }
ansible_role
Zjq-k/Ansible
59eb9e8c34b4616ff340fa0b3ac4e22c205added
0
ansible/roles/init_kernel
287
[ "no_license" ]
[ { "path": "ansible/roles/init_kernel/tasks/main.yml", "content": "- name: echo\n shell: echo {{item}} >> /etc/sysctl.conf && sysctl -p\n with_items: \n - net.ipv4.tcp_fin_timeout=2\n - net.ipv4.tcp_tw_reuse=1\n - net.ivp4.tcp_tw_recycle=1\n - net.ivp4.tcp_syncookies=1\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 617, "all_permissive": false }
ansible_role
Zjq-k/Ansible
59eb9e8c34b4616ff340fa0b3ac4e22c205added
0
ansible/roles/init_limit
287
[ "no_license" ]
[ { "path": "ansible/roles/init_limit/tasks/main.yml", "content": "- name: limit\n shell: echo {{item}} >> /etc/security/limits.conf\n with_items:\n - \\* soft nofile 655350\n - \\* hard nofile 655350\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 146 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 146, "all_permissive": false }
ansible_role
Zjq-k/Ansible
59eb9e8c34b4616ff340fa0b3ac4e22c205added
0
ansible/roles/init_py3
287
[ "no_license" ]
[ { "path": "ansible/roles/init_py3/tasks/main.yml", "content": "- name: copy\n copy: src=/data/soft/ansible/software/Python-3.7.6.tgz dest=/root/\n\n- name: env\n shell: yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make\n\n- name: mkdir\n comma...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 703, "all_permissive": false }
ansible_role
Zjq-k/Ansible
59eb9e8c34b4616ff340fa0b3ac4e22c205added
0
ansible/roles/init_ssh
287
[ "no_license" ]
[ { "path": "ansible/roles/init_ssh/tasks/main.yml", "content": "- name: useradd\n command: useradd work\n\n#- name: sudoers\n# command: echo {{item}} >> /etc/sudoers\n# with_items:\n# - work ALL=(ALL) NOPASSWD:ALL\n\n- name: sudoers-copy\n copy: src=/data/soft/ansible/roles/init_ssh/files...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 435, "all_permissive": false }
ansible_role
Zjq-k/Ansible
59eb9e8c34b4616ff340fa0b3ac4e22c205added
0
ansible/roles/init_supervisor
287
[ "no_license" ]
[ { "path": "ansible/roles/init_supervisor/tasks/main.yml", "content": "- name: epel\n command: yum install -y epel-release\n\n- name: yum\n command: yum install -y python-setuptools && easy_install supervisor\n\n- name: mkdir1\n command: mkdir -p /data/soft/supervisor\n\n- name: cp\n copy: src=/data/soft...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 587, "all_permissive": false }
ansible_role
Zjq-k/Ansible
59eb9e8c34b4616ff340fa0b3ac4e22c205added
0
ansible/roles/init_zabbix-agent
287
[ "no_license" ]
[ { "path": "ansible/roles/init_zabbix-agent/tasks/main.yml", "content": "- name: check zabbix agent\n shell: \"ps -ef|grep zabbix|grep -v grep|wc -l\"\n register: zbx_agent\n\n- include_tasks: zabbix_agent.yml\n when: zbx_agent.stdout == '0'\n\n- name: install nfs utils\n shell: \"yum install nfs-utils -...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1012, "all_permissive": false }
ansible_role
schickm/workstation-setup
eae55f4fcf0b0fc6401b5df9d0553127fd773e4f
0
roles/docker
287
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: Install/upgrade required Apt packages\n become: true\n ansible.builtin.apt:\n name: \"python3-pip\"\n update_cache: true\n force_apt_get: true\n state: latest\n\n- name: Install requirements for Ansible to use docker\n ansible....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 273, "all_permissive": false }
ansible_role
schickm/workstation-setup
eae55f4fcf0b0fc6401b5df9d0553127fd773e4f
0
roles/dotfiles
287
[ "no_license" ]
[ { "path": "roles/dotfiles/files/fish/functions/n.fish", "content": "function n --wraps nnn --description 'my custom launcher for nnn'\n set --export EDITOR kak\n set --export NNN_PLUG 'p:preview-tui'\n set --export NNN_FIFO \"/tmp/nnn.fifo\"\n\n nnn\nend\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 18, "total_bytes": 15353, "all_permissive": false }
ansible_role
schickm/workstation-setup
eae55f4fcf0b0fc6401b5df9d0553127fd773e4f
0
roles/dotfiles_macos
287
[ "no_license" ]
[ { "path": "roles/dotfiles_macos/tasks/main.yml", "content": "---\n- name: Ensure standard dirs exist\n ansible.builtin.file:\n path: \"{{ item }}\"\n state: directory\n with_items:\n - ~/.config/skhd\n - ~/.config/yabai\n tags: symlink\n\n- name: Symlink files\n file: path={{ item.path }} sr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 444, "all_permissive": false }
ansible_role
schickm/workstation-setup
eae55f4fcf0b0fc6401b5df9d0553127fd773e4f
0
roles/kakoune
287
[ "no_license" ]
[ { "path": "roles/kakoune/tasks/main.yml", "content": "---\n- name: clone kakoune repo\n ansible.builtin.git:\n repo: \"https://github.com/mawww/kakoune.git\"\n dest: \"~/vc/kakoune\"\n update: no\n\n- name: build kakoune\n ansible.builtin.command: make\n args:\n chdir: \"~/vc/kakoune\"\n c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1256, "all_permissive": false }
ansible_role
schickm/workstation-setup
eae55f4fcf0b0fc6401b5df9d0553127fd773e4f
0
roles/macos
287
[ "no_license" ]
[ { "path": "roles/macos/tasks/main.yml", "content": "---\n- name: Add Homebrew taps\n community.general.homebrew_tap:\n name: \"{{ item }}\"\n with_items:\n - koekeishiya/formulae\n - kakoune-lsp/kakoune-lsp\n - FelixKratz/formulae\n\n- name: Install Homebrew formulae\n community.general.homeb...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1198, "all_permissive": false }
ansible_role
schickm/workstation-setup
eae55f4fcf0b0fc6401b5df9d0553127fd773e4f
0
roles/ubersicht
287
[ "no_license" ]
[ { "path": "roles/ubersicht/tasks/main.yml", "content": "---\n- name: Clone widgets repo\n ansible.builtin.git:\n repo: <EMAIL>:schickm/ubersicht-widgets.git\n dest: ~/vc/ubersicht-widgets\n\n- name: Ensure Übersicht widgets dir exists\n ansible.builtin.file:\n path: \"~/Library/Application\\ Supp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 631, "all_permissive": false }
ansible_role
soon0009/playbooks
3af7d7f9dcf4b7685be84631b96bd3ace4c9b551
0
roles/common
287
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: update apt\n apt: update_cache=yes\n- name: install git\n apt: name=git state=latest\n- name: install screen\n apt: name=screen state=latest\n- name: install vim\n apt: name=vim state=latest\n- name: install Ag\n apt: name=silversearcher-ag s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 309, "all_permissive": false }
ansible_role
soon0009/playbooks
3af7d7f9dcf4b7685be84631b96bd3ace4c9b551
0
roles/nigel
287
[ "no_license" ]
[ { "path": "roles/nigel/tasks/main.yml", "content": "- name: write .bash_profile\n template: src=bash_profile.j2 dest=/home/nigelks/.bash_profile\n- name: set git config\n shell: git config --global user.email {{git.email}}\n shell: git config --global user.name {{git.name}}\n- name: get dotfiles\n git: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 540, "all_permissive": false }
ansible_role
soon0009/playbooks
3af7d7f9dcf4b7685be84631b96bd3ace4c9b551
0
roles/postgresql
287
[ "no_license" ]
[ { "path": "roles/postgresql/tasks/main.yml", "content": "- apt: name=libpq-dev state=latest\n- apt: name=python-psycopg2 state=latest\n- apt: name=postgresql state=latest\n- apt: name=postgresql-contrib state=latest\n- apt: name=postgresql-client state=latest\n- postgresql_user: db=postgres name={{username}...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 418, "all_permissive": false }
ansible_role
pstauffer/kubernetes-setup
0b5ebb28dffa30aaa2448c333e64c3249f0af210
13
roles/kubebase
287
[ "no_license" ]
[ { "path": "roles/kubebase/tasks/centos.yml", "content": "---\n- name: add kubernetes repo\n yum_repository:\n name: Kubernetes\n description: Kubernetes YUM repo\n file: kubernetes_repo\n baseurl: http://yum.kubernetes.io/repos/kubernetes-el7-x86_64\n gpgkey: https://packages.cloud.google.co...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2256, "all_permissive": false }
ansible_role
pstauffer/kubernetes-setup
0b5ebb28dffa30aaa2448c333e64c3249f0af210
13
roles/kubemaster
287
[ "no_license" ]
[ { "path": "roles/kubemaster/tasks/kubemaster_and_minion.yml", "content": "---\n- name: master can also be a minion\n command: kubectl taint nodes --all dedicated-\n when: kubemaster_and_minion\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 118 }, { "path": "ro...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1038, "all_permissive": false }
ansible_role
pstauffer/kubernetes-setup
0b5ebb28dffa30aaa2448c333e64c3249f0af210
13
roles/kubeminion
287
[ "no_license" ]
[ { "path": "roles/kubeminion/tasks/join.yml", "content": "---\n- name: join kubemaster\n command: 'kubeadm join --token={{ kubemaster_token }} {{ kubemaster_ip }}'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 }, { "path": "roles/kubeminion/tasks/main.yml",...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 398, "all_permissive": false }
ansible_role
m-ahmedy/cicd-pipeline-cdond
2811849b198c27157b421124c839956f14f0d7c5
0
.circleci/ansible/roles/configure-server
287
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/configure-server/tasks/main.yml", "content": "---\n- name: \"Update apt packages\"\n become: yes\n apt:\n update_cache: yes\n\n- name: \"Upgrade packages\"\n become: yes\n apt:\n upgrade: yes\n\n- name: \"Remove packages that are no longer used\"\n become: yes\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 639, "all_permissive": false }
ansible_role
m-ahmedy/cicd-pipeline-cdond
2811849b198c27157b421124c839956f14f0d7c5
0
.circleci/ansible/roles/deploy-backend
287
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy-backend/tasks/main.yml", "content": "---\n- name: \"Creates backend app directory\"\n file:\n path: ~/backend-app\n state: directory\n\n- name: \"Copy compiled backend app\"\n copy:\n src: dist.zip\n dest: \"~/backend-app/dist.zip\"\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 782, "all_permissive": false }
ansible_role
bennythejudge/cc-test
e8165b7f25ab0b7ed0cc5029b8ff44384fedd5be
0
ansible/roles/common
292
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n\n- name: COMMON | update APT cache\n apt: update_cache=yes\n\n- name: COMMON | Install basic packages\n package: name={{ item }} state=present\n with_items:\n - vim\n - curl\n - python-apt\n - drush\n\n- name: COMMON | Remove ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 322, "all_permissive": false }
ansible_role
bennythejudge/cc-test
e8165b7f25ab0b7ed0cc5029b8ff44384fedd5be
0
ansible/roles/database
292
[ "no_license" ]
[ { "path": "ansible/roles/database/tasks/main.yml", "content": "---\n- name: SYSTEM | Install basic database packages\n package: name={{ item }} state=present\n with_items:\n - mysql-common\n - mysql-server\n - python-mysqldb\n\n- name: Copy .my.cnf file with root password credentials.\n template...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1406, "all_permissive": false }
ansible_role
bennythejudge/cc-test
e8165b7f25ab0b7ed0cc5029b8ff44384fedd5be
0
ansible/roles/drupal
292
[ "no_license" ]
[ { "path": "ansible/roles/drupal/tasks/main.yml", "content": "# Application Install\n# - name: SYSTEM | Create drupal system user\n# user: name=\"{{ drupal_sysuser }}\" comment=\"drupal\"\n\n- name: PRE INSTALL | check if drupal installed\n stat:\n path: \"{{ www_doc_root }}/drupal\"\n register: drupa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2755, "all_permissive": false }
ansible_role
bennythejudge/cc-test
e8165b7f25ab0b7ed0cc5029b8ff44384fedd5be
0
ansible/roles/web
292
[ "no_license" ]
[ { "path": "ansible/roles/web/templates/vhosts.conf.j2", "content": "server {\n server_name Drupal7;\n root {{ drupal_docroot }};\n \n access_log /var/log/nginx/access.log;\n error_log /var/log/nginx/error.log info;\n \n index index.php;\n \n location = /favicon.ico...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2781, "all_permissive": false }
ansible_role
belzerus/esci-proxy
1935f46854261a33427f99474b6014894100b0de
1
roles/common
292
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Configure sshd\n lineinfile:\n path: \"/etc/ssh/sshd_config\"\n regex: \"^(#)?{{ item.key }}\"\n line: \"{{ item.key }} {{ item.value }}\"\n state: present\n loop:\n - {key: \"PermitRootLogin\", value: \"no\"}\n - {key: \"...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 621, "all_permissive": false }
ansible_role
belzerus/esci-proxy
1935f46854261a33427f99474b6014894100b0de
1
roles/mdns
292
[ "no_license" ]
[ { "path": "roles/mdns/tasks/main.yml", "content": "---\n- name: Set Hostname\n command: hostnamectl set-hostname '{{ hostname }}'\n when: hostname is defined\n become_method: sudo\n become: true\n\n- name: Update /etc/hosts\n lineinfile:\n path: \"/etc/hosts\"\n regex: \"^(#)?{{ item.key }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 635, "all_permissive": false }
ansible_role
belzerus/esci-proxy
1935f46854261a33427f99474b6014894100b0de
1
roles/serialcom
292
[ "no_license" ]
[ { "path": "roles/serialcom/tasks/main.yml", "content": "---\n- name: Add '{{ ansible_user_id }}' to required groups\n user:\n name: '{{ ansible_user_id }}'\n groups: dialout\n append: true\n\n- name: Install serialcom packages\n ansible.builtin.apt:\n name:\n - picocom\n state: present...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 303, "all_permissive": false }
ansible_role
colin-mccarthy/netdevops
eebfc8ff7483c95b91756e13250cd9959c7a98d8
0
roles/cisco_base
292
[ "no_license" ]
[ { "path": "roles/cisco_base/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/cisco_base", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 }, { "path": "roles/cisco_base/vars/main.yml", "content": "---\n# vars fil...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 3002, "all_permissive": false }
ansible_role
colin-mccarthy/netdevops
eebfc8ff7483c95b91756e13250cd9959c7a98d8
0
roles/config_bgp
292
[ "no_license" ]
[ { "path": "roles/config_bgp/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/config_bgp", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 }, { "path": "roles/config_bgp/defaults/main.yml", "content": "---\n# defa...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1173, "all_permissive": false }
ansible_role
tank-bohr/nomad_cluster
213d2707b248f7050d9a648837d30fd0f97b9d6b
0
ansible/roles/common
292
[ "no_license" ]
[ { "path": "ansible/roles/common/templates/rules.v4.j2", "content": "*filter\n:INPUT DROP\n:FORWARD ACCEPT\n:OUTPUT ACCEPT\n\n# localhost\n-A INPUT -i lo -j ACCEPT\n\n# Allows all incoming established\n-A INPUT -m state --state ESTABLISHED -j ACCEPT\n\n# icmp\n-A INPUT -p icmp -j ACCEPT\n-A OUTPUT -p icmp -...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2468, "all_permissive": false }
ansible_role
tank-bohr/nomad_cluster
213d2707b248f7050d9a648837d30fd0f97b9d6b
0
ansible/roles/dynamic_inventory
292
[ "no_license" ]
[ { "path": "ansible/roles/dynamic_inventory/tasks/main.yml", "content": "---\n- name: Retrieve info\n os_server_info:\n auth:\n auth_url: \"{{ os_auth_url }}\"\n username: \"{{ os_username }}\"\n password: \"{{ <PASSWORD> }}\"\n tenant_name: \"{{ os_tenant_name }}\"\n server: \"wk-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1752, "all_permissive": false }
ansible_role
tank-bohr/nomad_cluster
213d2707b248f7050d9a648837d30fd0f97b9d6b
0
ansible/roles/nomad
292
[ "no_license" ]
[ { "path": "ansible/roles/nomad/templates/consul-agent.service.j2", "content": "[Unit]\nDescription=Consul agent\nRequires=network-online.target\nAfter=network-online.target\nConditionPathExistsGlob={{ consul_config }}\n\n[Service]\n{# Type=notify #}\nUser=consul\nGroup=consul\nExecStart={{ consul_bin }} age...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 6671, "all_permissive": false }
ansible_role
sanakess/ansible-zabbix
bf0be13eff7a8bce203da541f8f67fbc8e844474
0
roles/zabbix_agent
292
[ "no_license" ]
[ { "path": "roles/zabbix_agent/tasks/install_zabbix_agent_common_passive.yml", "content": "- name: change EnableRemoteCommands\n lineinfile:\n path: /etc/zabbix/zabbix_agentd.conf\n regexp: '^EnableRemoteCommands=*'\n line: 'EnableRemoteCommands=0'\n\n- name: change server\n lineinfile:\n path:...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 5598, "all_permissive": false }
ansible_role
sanakess/ansible-zabbix
bf0be13eff7a8bce203da541f8f67fbc8e844474
0
roles/zabbix_agent_systemd
292
[ "no_license" ]
[ { "path": "roles/zabbix_agent_systemd/tasks/install_zabbix_agent_systemd.yml", "content": "- name: install libglib2.0-bin\n apt:\n name: libglib2.0-bin\n state: latest\n when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'\n\n- name: copy systemd.so file\n copy:\n src: cent...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1753, "all_permissive": false }
ansible_role
aloross/dotfiles-new
8516070be330e1b6e58e1948eaeea2b8c1c9aa60
0
roles/apps
292
[ "no_license" ]
[ { "path": "roles/apps/tasks/main.yml", "content": "---\n- name: Install things\n sudo: yes\n pacman: name={{ item }} state=present\n with_items:\n - vim\n - i3\n - i3status\n - xterm\n - git\n - openssh\n - xf86-input-synaptics\n - xf86-video-intel\n - zsh\n - rxvt-unicode\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 4246, "all_permissive": false }
ansible_role
aloross/dotfiles-new
8516070be330e1b6e58e1948eaeea2b8c1c9aa60
0
roles/configs
292
[ "no_license" ]
[ { "path": "roles/configs/tasks/main.yml", "content": "- name: Set zsh as default shell\n shell: '[ \"$SHELL\" != \"$(which zsh)\" ] && chsh -s $(which zsh) || true'\n\n- name: Install OhMyZSH\n git: repo=https://github.com/robbyrussell/oh-my-zsh.git dest=~/.oh-my-zsh update=no\n\n- name: Install syntax hi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3750, "all_permissive": false }
ansible_role
aloross/dotfiles-new
8516070be330e1b6e58e1948eaeea2b8c1c9aa60
0
roles/xorg
292
[ "no_license" ]
[ { "path": "roles/xorg/tasks/main.yml", "content": "---\n- name: Install xorg\n sudo: yes\n pacman: name={{ item }} state=present\n with_items:\n - xorg-server\n - xorg-xprop\n - xorg-xmodmap\n - xorg-xrandr\n - xorg-xinit\n - xorg-xev\n - xorg-xset\n - xorg-xrdb\n - xorg-xbackl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 249, "all_permissive": false }
ansible_role
milanbella/uans
d91829ae903433825d502620628f7bb54051f189
0
roles/common
292
[ "no_license" ]
[ { "path": "roles/common/tasks/vim.yml", "content": "---\n- name: Install vimrc\n ansible.builtin.copy:\n src: ../files/vim/.vimrc\n dest: \"{{ ansible_env.HOME }}/.vimrc\"\n- name: Install vim files\n ansible.builtin.unarchive:\n src: ../files/vim/.vim.tar.gz\n dest: \"{{ ansible_env.HOME }}\"...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3260, "all_permissive": false }
ansible_role
milanbella/uans
d91829ae903433825d502620628f7bb54051f189
0
roles/git
292
[ "no_license" ]
[ { "path": "roles/git/tasks/init_repo.yml", "content": "---\n# Note: exampole git origin (path segment 'repos/' is be relative to git user home folder) : git@192.168.159.46:repos/{{ repo_name }}.git\n- name: Init repo {{ repo_name }}\n ansible.builtin.shell: |\n set -xe\n cd /home/git/repos\n if [...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2691, "all_permissive": false }
ansible_role
nikitsrj/K8S-Node-Ansible
42fecd2aeb3f63f2764e22e3737c3fecb08b454a
0
ansible/roles/kube-master
292
[ "no_license" ]
[ { "path": "ansible/roles/kube-master/tasks/main.yml", "content": "---\n# tasks file for kube-master\n- name: upgrade all packages\n yum:\n name: '*'\n state: latest\n\n- name: install epel release for centos7\n yum: pkg=epel-release state=installed\n\n- name: install required packages\n yum: pkg={{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1842, "all_permissive": false }
ansible_role
nikitsrj/K8S-Node-Ansible
42fecd2aeb3f63f2764e22e3737c3fecb08b454a
0
ansible/roles/kube-node
292
[ "no_license" ]
[ { "path": "ansible/roles/kube-node/tasks/main.yml", "content": "---\n# tasks file for kube-node\n- name: upgrade all packages\n yum:\n name: '*'\n state: latest\n\n- name: Install epel-release for centos7\n yum: name=epel-release state=present\n\n- name: Install packages\n yum: name={{ item }} stat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2744, "all_permissive": false }
ansible_role
cedlecomte/ansible-designate
f9c9a02c0e362bfec79ee67e0fd3ab58523818c3
1
roles/common
292
[ "permissive" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n\n- name: Install EPEL Repository\n yum: name=epel-release state=present\n\n- name: Install RDO Repository\n yum: name=https://rdoproject.org/repos/rdo-release.rpm state=present\n\n- name: Update all package\n yum: name=* state=latest\n\n- name: P...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 405, "all_permissive": true }
ansible_role
cedlecomte/ansible-designate
f9c9a02c0e362bfec79ee67e0fd3ab58523818c3
1
roles/designate
292
[ "permissive" ]
[ { "path": "roles/designate/tasks/main.yml", "content": "---\n\n- name: Create Designate Service User in Keystone\n environment: keystone_env\n shell: openstack user create --password designate designate\n ignore_errors: true\n\n- name: Assign Designate Keystone User to Service Tenant\n environment: keys...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4461, "all_permissive": true }
ansible_role
cedlecomte/ansible-designate
f9c9a02c0e362bfec79ee67e0fd3ab58523818c3
1
roles/keystone
292
[ "permissive" ]
[ { "path": "roles/keystone/tasks/main.yml", "content": "---\n\n- name: Install Keystone\n yum: pkg=openstack-keystone state=present\n\n- name: Install OpenStack CLI\n yum: pkg=python-openstackclient state=present\n\n- name: Install Apache\n yum: pkg=httpd state=present\n\n- name: Install WSGI\n yum: pkg=...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2519, "all_permissive": true }
ansible_role
cedlecomte/ansible-designate
f9c9a02c0e362bfec79ee67e0fd3ab58523818c3
1
roles/mariadb
292
[ "permissive" ]
[ { "path": "roles/mariadb/tasks/main.yml", "content": "---\n- name: Install MariaDB\n yum: name={{ item }} state=present\n with_items:\n - mariadb-server\n - MySQL-python\n\n- name: Start MariaDB\n service: name=mariadb state=started enabled=yes\n\n- name: Set Password for root user\n mysql_user: n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 407, "all_permissive": true }
ansible_role
cedlecomte/ansible-designate
f9c9a02c0e362bfec79ee67e0fd3ab58523818c3
1
roles/pdns
292
[ "permissive" ]
[ { "path": "roles/pdns/templates/pdns.conf.j2", "content": "setuid=pdns\nsetgid=pdns\nlaunch=gmysql\ngmysql-host=127.0.0.1\ngmysql-port=3306\ngmysql-dbname={{ pdns_mysql_db }}\ngmysql-user={{ pdns_mysql_user }}\ngmysql-password={{ pdns_mysql_passwd }}\ngmysql-dnssec=yes\nmaster=no\nslave=yes\ncache-ttl=0\nqu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1207, "all_permissive": true }
ansible_role
cedlecomte/ansible-designate
f9c9a02c0e362bfec79ee67e0fd3ab58523818c3
1
roles/rabbitmq
292
[ "permissive" ]
[ { "path": "roles/rabbitmq/tasks/main.yml", "content": "---\n\n- name: Install RabbitMQ\n yum: name=rabbitmq-server state=present\n\n- name: Ensure RabbitMQ is started\n service: name=rabbitmq-server state=started enabled=yes\n", "license_type": "permissive", "detected_licenses": [ "Apache-2....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 166, "all_permissive": true }
ansible_role
vthdo108/1913020015
31b770dc6f6596531c2f1aca5de1d41a21004877
0
ansible/roles/copy
292
[ "no_license" ]
[ { "path": "ansible/roles/copy/tasks/default.yml", "content": "---\n- name: Setting up variables\n set_fact:\n mysql_rds: ${db_RDS} \n mysql_db: ${db_name}\n mysql_user: ${db_username}\n mysql_password: ${<PASSWORD>}\n my_domain: ${my_domain}\n- name: Copy wp-config to host webserver\n ansi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 513, "all_permissive": false }
ansible_role
vthdo108/1913020015
31b770dc6f6596531c2f1aca5de1d41a21004877
0
ansible/roles/http
292
[ "no_license" ]
[ { "path": "ansible/roles/http/handlers/main.yml", "content": "---\n- name: restart httpd service\n service: \n name: httpd\n state: restarted\n- name: Enabling httpd service and start the service\n service: \n name: httpd\n enabled: yes\n state: started\n", "license_type": "no_license",...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 547, "all_permissive": false }
ansible_role
vthdo108/1913020015
31b770dc6f6596531c2f1aca5de1d41a21004877
0
ansible/roles/mount_efs
292
[ "no_license" ]
[ { "path": "ansible/roles/mount_efs/tasks/default.yml", "content": "---\n- name: Mount efs with /var/www/html\n command: \"sudo mount -t nfs -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=3600,retrans=2,noresvport ${aws_efs_dns}:/ /var/www/html\"\n- name: add efs to fstab\n command: \"echo ${aws_ef...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 378, "all_permissive": false }
ansible_role
justuswilhelm/kerneladmin
ea78d4f923b550b0962cbf3908ae70a8aafe81bf
0
roles/common
292
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Clone dotfiles\n git:\n repo: \"{{ dotfiles_repository }}\"\n dest: \"{{ dotfiles }}\"\n accept_hostkey: true\n version: master\n ignore_errors: True\n\n- name: Ensure dotfiles exist\n shell: \"test -d {{ dotfiles }}\"\n\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3003, "all_permissive": false }
ansible_role
justuswilhelm/kerneladmin
ea78d4f923b550b0962cbf3908ae70a8aafe81bf
0
roles/darwin
292
[ "no_license" ]
[ { "path": "roles/darwin/tasks/main.yml", "content": "---\n- name: Ensure Brew\n homebrew:\n update_homebrew: yes\n upgrade_all: yes\n register: brew_installed\n ignore_errors: True\n\n- name: Install Homebrew\n shell: 'yes \"\" | /usr/bin/ruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Ho...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1285, "all_permissive": false }
ansible_role
justuswilhelm/kerneladmin
ea78d4f923b550b0962cbf3908ae70a8aafe81bf
0
roles/debian
292
[ "no_license" ]
[ { "path": "roles/debian/vars/main.yml", "content": "apt_packages:\n - golang\n - pv\n - python-pip\n - python3-pip\n - python3-venv\n - silversearcher-ag\n - xclip\nfavorite_apps:\n - 'firefox-esr.desktop'\n - 'org.gnome.Nautilus.desktop'\n", "license_type": "no_license", "detected_licenses...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 804, "all_permissive": false }
ansible_role
justuswilhelm/kerneladmin
ea78d4f923b550b0962cbf3908ae70a8aafe81bf
0
roles/ubuntu
292
[ "no_license" ]
[ { "path": "roles/ubuntu/tasks/main.yml", "content": "- name: Perform dist upgrade\n apt:\n upgrade: dist\n update_cache: yes\n become: true\n\n- name: Install apt packages\n apt:\n pkg: \"{{ item }}\"\n state: installed\n become: true\n with_items: \"{{ packages + apt_packages }}\"\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 232, "all_permissive": false }
ansible_role
tsdicloud/cce-opentelekom-kube
2a772639184e5817542ec2fe4c0f6aee6d05f0f2
1
css-logstash-demo/services/roles/cce
292
[ "permissive" ]
[ { "path": "css-logstash-demo/services/roles/cce/vpc/tasks/apply.yml", "content": "--- \n - name: VPC network\n otc_vpc:\n state: \"present\"\n auth_type: password\n auth:\n \"{{ otc_os_auth }}\"\n cacert: \"{{ otc_cert_file }}\"\n validate_certs: \"yes\"\n name: \"{...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4954, "all_permissive": true }
ansible_role
tsdicloud/cce-opentelekom-kube
2a772639184e5817542ec2fe4c0f6aee6d05f0f2
1
css-logstash-demo/services/roles/css
292
[ "permissive" ]
[ { "path": "css-logstash-demo/services/roles/css/tasks/destroy.yml", "content": "---\n - name: Cleanup CSS service\n otc_css:\n state: \"absent\"\n auth_type: password\n auth:\n \"{{ otc_os_auth }}\"\n cacert: \"{{ otc_cert_file }}\"\n validate_certs: \"yes\"\n name: ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2500, "all_permissive": true }
ansible_role
tsdicloud/cce-opentelekom-kube
2a772639184e5817542ec2fe4c0f6aee6d05f0f2
1
css-logstash-demo/services/roles/vpc
292
[ "permissive" ]
[ { "path": "css-logstash-demo/services/roles/vpc/tasks/destroy.yml", "content": "---\n - name: \"Cleanup backend subnet {{ net.subnets.backend.name }}\"\n otc_subnet:\n state: \"absent\"\n auth_type: password\n auth:\n \"{{ otc_os_auth }}\"\n cacert: \"{{ otc_cert_file }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 956, "all_permissive": true }
ansible_role
nzwulfin/iac-ci
f61a83426cd7683b3205bbe8346ce2b362ec4752
6
ansible/roles/webserver
292
[ "no_license" ]
[ { "path": "ansible/roles/webserver/vars/main.yml", "content": "---\n# vars file for webserver\napacheMaxRequestsPerChild: 3000\napacheMaxClients: 900\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 84 }, { "path": "ansible/roles/webserver/molecule/default/tests/t...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 1550, "all_permissive": false }
ansible_role
PraveenKandregula/cassandra-installation
bb459c982416bc868e8ba0f6fbe401901be79750
0
roles/cassandra-install
292
[ "no_license" ]
[ { "path": "roles/cassandra-install/tasks/main.yml", "content": "- name: Check if {{cassandra_tar}} is available at /tmp\n stat:\n path: \"/tmp/{{cassandra_tar}}\"\n register: cassandratar\n\n- name: Download cassandra tar\n get_url:\n url: \"{{cassandra_tar_url}}\"\n dest: /tmp\n mode: 0755\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1558, "all_permissive": false }
ansible_role
PraveenKandregula/cassandra-installation
bb459c982416bc868e8ba0f6fbe401901be79750
0
roles/linux-user-check
292
[ "no_license" ]
[ { "path": "roles/linux-user-check/tasks/main.yml", "content": "- name: \"check if user:{{user}} exist\"\n shell: id {{user}}\n ignore_errors: true\n register: userstatus\n\n- name: \"Create group {{group}} if it doesn't exist\"\n group:\n name: \"{{group}}\"\n gid: \"{{gid}}\"\n state: present\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 598, "all_permissive": false }
ansible_role
PraveenKandregula/cassandra-installation
bb459c982416bc868e8ba0f6fbe401901be79750
0
roles/validate-jdk
292
[ "no_license" ]
[ { "path": "roles/validate-jdk/tasks/main.yml", "content": "- name: Validate if java version is {{java_version}}\n shell: java -version\n register: javaversion\n ignore_errors: true\n\n- name: Validate if java rpm is available at /tmp location if java version is not {{java_version}}\n stat: \n path: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1542, "all_permissive": false }
ansible_role
lazarm28/FintechX-feladat
6817f50ce90cdf83c2c0f954eebc644d603baceb
0
roles/kong
292
[ "no_license" ]
[ { "path": "roles/kong/tasks/main.yml", "content": "- name: Connect to cluster\n shell: gcloud container clusters get-credentials cluster-nodepool --zone us-central1-a --project fintechx-feladat\n\n- name: Setting up Kong API Gateway\n shell: kubectl apply -f https://bit.ly/k4k8s\n\n- name: sleep for 30 se...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 962, "all_permissive": false }
ansible_role
lazarm28/FintechX-feladat
6817f50ce90cdf83c2c0f954eebc644d603baceb
0
roles/mongodb
292
[ "no_license" ]
[ { "path": "roles/mongodb/tasks/main.yml", "content": "#git clone https://github.com/thesandlord/mongo-k8s-sidecar.git\n\n- name: Connect to cluster\n shell: gcloud container clusters get-credentials cluster-nodepool --zone us-central1-a --project fintechx-feladat\n\n- name: Setting up MongoDB Storage Class...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 863, "all_permissive": false }
ansible_role
linusheck/sog-ansible
42e886e484c32cc928cbaef5f309779406010530
0
roles/acme-nginx
292
[ "no_license" ]
[ { "path": "roles/acme-nginx/tasks/acme.yml", "content": "- name: Prepare Let's Encrypt challenge (if needed)\n letsencrypt:\n acme_directory: \"https://acme-v01.api.letsencrypt.org/directory\"\n account_key: \"{{ acme_ssl_base_folder }}/account.key\"\n csr: \"{{ current_domain_folder }}/domain.csr...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 4886, "all_permissive": false }
ansible_role
linusheck/sog-ansible
42e886e484c32cc928cbaef5f309779406010530
0
roles/nextcloud
292
[ "no_license" ]
[ { "path": "roles/nextcloud/tasks/main.yml", "content": "---\n\n# Workaround to fix docker installation as per\n# https://github.com/geerlingguy/ansible-role-docker/issues/56\n- name: Enable RHEL extras repository\n shell: yum-config-manager --enable rhel-7-server-extras-rpms\n\n- import_role:\n name: ge...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2239, "all_permissive": false }
ansible_role
barracudanetworks/ngf-azure-templates
b5178748aa16dc4ff3c7f634ad2e2982989bc0b8
11
contrib/CGF-Quickstart-VNET-Peering/ansible/roles/cgf-bootstrap
292
[ "no_license" ]
[ { "path": "contrib/CGF-Quickstart-VNET-Peering/ansible/roles/cgf-bootstrap/tasks/cgf-create-user.yml", "content": "### Create new user ###\n\n- name: \"CGF - Check existance user {{ request_new_user }}\"\n uri:\n url: \"{{ request_url }}/rest/config/v1/box/admins/{{ request_new_user }}\"\n method: GE...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3115, "all_permissive": false }
ansible_role
barracudanetworks/ngf-azure-templates
b5178748aa16dc4ff3c7f634ad2e2982989bc0b8
11
contrib/CGF-Quickstart-VNET-Peering/ansible/roles/cgf-config
292
[ "no_license" ]
[ { "path": "contrib/CGF-Quickstart-VNET-Peering/ansible/roles/cgf-config/tasks/network_objects.json", "content": "{\n \"objects\": [\n {\n \"included\": [\n {\n \"entry\": {\n \"ip\": \"172.16.31.10\"\n }\n }\n ],\n \"excluded\":...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 12, "total_bytes": 25036, "all_permissive": false }
ansible_role
MihaiTabara/aboutme
2ea22aca352eaaaf7ca1bd2ff457b05984bc75cd
0
devops/roles/nginx
292
[ "no_license" ]
[ { "path": "devops/roles/nginx/tasks/main.yml", "content": "---\n# Tasks to install nginx web server\n\n- name: install nginx\n apt: name=nginx state=present\n\n- name: remove default nginx site\n file: path=/etc/nginx/sites-enabled/default state=absent\n\n- name: write nginx.conf\n template: src=nginx.co...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 399, "all_permissive": false }
ansible_role
MihaiTabara/aboutme
2ea22aca352eaaaf7ca1bd2ff457b05984bc75cd
0
devops/roles/pythondevtools
292
[ "no_license" ]
[ { "path": "devops/roles/pythondevtools/tasks/main.yml", "content": "---\n# Tasks to install basic python dev modules\n# Expects Debian >= 7\n\n- name: install common packages for python app development\n apt: name={{ item }} state=present\n with_items:\n - libpq-dev\n - libmysqlclient-dev\n - lib...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1123, "all_permissive": false }
ansible_role
MihaiTabara/aboutme
2ea22aca352eaaaf7ca1bd2ff457b05984bc75cd
0
devops/roles/supervisor-uwsgi
292
[ "no_license" ]
[ { "path": "devops/roles/supervisor-uwsgi/tasks/main.yml", "content": "---\n# Tasks to install supervisor and uWSGI server to run future apps\n\n- name: install supervisor and uWSGI\n pip: name={{ item }} state=present\n with_items:\n - supervisor\n - uwsgi\n\n- name: create supervisord config folder...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 624, "all_permissive": false }
ansible_role
MihaiTabara/aboutme
2ea22aca352eaaaf7ca1bd2ff457b05984bc75cd
0
devops/roles/webapp
292
[ "no_license" ]
[ { "path": "devops/roles/webapp/handlers/main.yml", "content": "---\n# Handlers to handle the app deploy handlers\n\n- name: restart app\n supervisorctl: name={{ app_name }} state=restarted\n\n- name: restart nginx\n service: name=nginx state=restarted\n", "license_type": "no_license", "detected_li...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 2642, "all_permissive": false }
ansible_role
rm-tic/provision-mint-work
5d99a67e2d44f5c63b7348df78c0b52eda9bfa2b
0
roles/install
296
[ "no_license" ]
[ { "path": "roles/install/tasks/url_deb_latest.yml", "content": "---\n\n- name: Get Autokey Package Latest Version URL\n shell: >-\n curl -s \"https://api.github.com/repos/autokey/autokey/releases/latest\" | egrep -o 'https.*(common|gtk).*all.deb'\n register: url_deb_autokey\n args:\n warn: false\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2647, "all_permissive": false }
ansible_role
Riteshraut0116/ansible_amazon_automation
fcf900e003c01a2c7f7ae659af1b20536d67fdc8
0
roles/fetch_dell_laptops
296
[ "no_license" ]
[ { "path": "roles/fetch_dell_laptops/files/send_email.py", "content": "import smtplib\r\nimport sys\r\nfrom email.mime.multipart import MIMEMultipart\r\nfrom email.mime.base import MIMEBase\r\nfrom email import encoders\r\n\r\ndef send_email(email, file_path):\r\n from_email = \"<EMAIL>\"\r\n from_pass...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3008, "all_permissive": false }
ansible_role
ConorGrocock/self-hosted-ansible
8384dd8953c64fa646efc6f27ef99c63dcb19cae
0
roles/cicd
296
[ "no_license" ]
[ { "path": "roles/cicd/tasks/install_jenkins.yml", "content": "---\n\n- name: install java\n apt:\n name: openjdk-11-jdk\n state: present\n update_cache: true\n\n\n- name: Add Jenkins GPG key\n apt_key:\n url: https://pkg.jenkins.io/debian-stable/jenkins.io.key\n\n- name: Add Docker APT reposit...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3306, "all_permissive": false }
ansible_role
ConorGrocock/self-hosted-ansible
8384dd8953c64fa646efc6f27ef99c63dcb19cae
0
roles/common
296
[ "no_license" ]
[ { "path": "roles/common/tasks/setup_monitoring.yml", "content": "---\n\n- name: Download and unarchive Node Exporter\n ansible.builtin.unarchive:\n src: \"{{ node_exporter_url }}\"\n dest: /tmp/\n remote_src: yes\n\n\n- name: Create Node Exporter user\n become: true\n ansible.builtin.user:\n ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 3341, "all_permissive": false }
ansible_role
ConorGrocock/self-hosted-ansible
8384dd8953c64fa646efc6f27ef99c63dcb19cae
0
roles/docker
296
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n\n- name: Install docker dependencies\n become: true\n apt:\n name: \"{{ item }}\"\n state: present\n update_cache: true\n loop:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg\n - lsb-release\n - python3-...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1239, "all_permissive": false }
ansible_role
ConorGrocock/self-hosted-ansible
8384dd8953c64fa646efc6f27ef99c63dcb19cae
0
roles/pihole
296
[ "no_license" ]
[ { "path": "roles/pihole/tasks/main.yml", "content": "---\n\n- name: ensure custom facts directory exists\n file: >\n path=/home/{{ ansible_user_id }}/pihole/\n recurse=yes\n state=directory\n\n- name: Copy Docker compose file\n copy:\n src: pihole.yml\n dest: /home/{{ ansible_user_id }}/pih...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1850, "all_permissive": false }
ansible_role
ConorGrocock/self-hosted-ansible
8384dd8953c64fa646efc6f27ef99c63dcb19cae
0
roles/prometheus
296
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yml", "content": "--- \n\n- name: Delete existing node_exporter_prometheus.json file\n ignore_errors: yes\n shell: rm node_exporter_prometheus.json\n\n- name: Display all variables/facts known for a host\n local_action:\n module: copy \n content: \"{{ hostvars...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 860, "all_permissive": false }
ansible_role
FieldTracks/ansible-envs
ddef9907fb181a11906b98153ea8154fcd64e22f
0
roles/common
296
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: install common packages\n apt:\n state: present\n update_cache: yes\n name:\n - aptitude\n - rsyslog\n - dbus\n - sudo\n - etckeeper\n - git\n - htop\n - vim\n - tmux\n - mosh\n - needrestart\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2302, "all_permissive": false }
ansible_role
FieldTracks/ansible-envs
ddef9907fb181a11906b98153ea8154fcd64e22f
0
roles/fieldtracks
296
[ "no_license" ]
[ { "path": "roles/fieldtracks/tasks/main.yml", "content": "---\n- name: \"Create Unix group fieldtracks\"\n group:\n system: yes\n name: fieldtracks\n state: present\n\n- name: Create user fieldtracks\n user:\n create_home: yes\n name: fieldtracks\n comment: \"Created by Ansible\"\n gr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 616, "all_permissive": false }
ansible_role
FieldTracks/ansible-envs
ddef9907fb181a11906b98153ea8154fcd64e22f
0
roles/influxdb
296
[ "no_license" ]
[ { "path": "roles/influxdb/handlers/main.yml", "content": "- name: Restart InfluxDB\n service: name=influxdb state=restarted\n\n- name: Restart grafana\n service: name=grafana-server state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 138 }, { "path"...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 3729, "all_permissive": false }
ansible_role
FieldTracks/ansible-envs
ddef9907fb181a11906b98153ea8154fcd64e22f
0
roles/mqtt
296
[ "no_license" ]
[ { "path": "roles/mqtt/tasks/main.yml", "content": "- name: install mosquito\n apt: name=mosquitto state=present update_cache=yes\n\n- name: Copy mqtt password file\n notify:\n - restart_mosquitto\n copy: >\n src=mosquitto_passwd\n dest=/etc/mosquitto/mosquitto_passwd\n mode='0700'\n owner=ro...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1627, "all_permissive": false }
ansible_role
FieldTracks/ansible-envs
ddef9907fb181a11906b98153ea8154fcd64e22f
0
roles/nginx-env
296
[ "no_license" ]
[ { "path": "roles/nginx-env/templates/nginx-tls.conf.j2", "content": "#\n# Ansible managed configuration - do not edit\n#\nserver {\n # SSL configuration\n #\n client_max_body_size 2M;\n listen [::]:443 ssl;\n listen 443 ssl;\n\n ssl_prefer_server_ciphers on;\n\n gzip off;\n ssl_protocols TLSv1 TLSv1.1 TLSv1...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 7845, "all_permissive": false }
ansible_role
FieldTracks/ansible-envs
ddef9907fb181a11906b98153ea8154fcd64e22f
0
roles/telegraf-ft
296
[ "no_license" ]
[ { "path": "roles/telegraf-ft/templates/telegraf.conf.j2", "content": "# Telegraf configuration\n\n# Telegraf is entirely plugin driven. All metrics are gathered from the\n# declared plugins.\n\n# Even if a plugin has no configuration, it must be declared in here\n# to be active. Declaring a plugin means jus...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 6746, "all_permissive": false }
ansible_role
FieldTracks/ansible-envs
ddef9907fb181a11906b98153ea8154fcd64e22f
0
roles/wireguard
296
[ "no_license" ]
[ { "path": "roles/wireguard/templates/wireguard.interface.j2", "content": "auto wg-kibana\niface wg-kibana inet static\n address {{ wireguard.ipv4 }}\n netmask 255.255.255.0\n pre-up ip link add $IFACE type wireguard\n pre-up wg setconf $IFACE /etc/wireguard/$IFACE.conf\n p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1171, "all_permissive": false }
ansible_role
databrad/Devops_brade_project
43b0e85768f7c6a385ad7a1864c430a4ae0b6642
0
provisioning/roles/backend
296
[ "no_license" ]
[ { "path": "provisioning/roles/backend/tasks/main.yml", "content": "- name: Install backend dependencies\n ansible.builtin.pip:\n requirements: /vagrant/app/requirements.txt\n # shell: |\n # pip3 install -r /vagrant/app/requirements.txt\n # args:\n # executable: /bin/bash\n\n\n- name: Set PYTHONP...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 534, "all_permissive": false }
ansible_role
databrad/Devops_brade_project
43b0e85768f7c6a385ad7a1864c430a4ae0b6642
0
provisioning/roles/common
296
[ "no_license" ]
[ { "path": "provisioning/roles/common/tasks/main.yml", "content": "- name: Update apt cache\n apt:\n update_cache: yes\n\n- name: Add deadsnakes PPA for Python versions\n apt_repository:\n repo: ppa:deadsnakes/ppa\n state: present\n\n- name: Install essential packages\n apt:\n name:\n - c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 350, "all_permissive": false }
ansible_role
databrad/Devops_brade_project
43b0e85768f7c6a385ad7a1864c430a4ae0b6642
0
provisioning/roles/database
296
[ "no_license" ]
[ { "path": "provisioning/roles/database/tasks/main.yml", "content": "- name: Load database variables\n include_vars: vars.yml\n\n- name: Install MySQL server\n apt:\n name: mysql-server\n state: present\n\n- name: Start MySQL service\n service:\n name: mysql\n state: started\n enabled: true...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 654, "all_permissive": false }
ansible_role
rianorie/phalcon-development-environment
d889b276ff275394ebc9cb359e7fa869f89c8c6c
0
ansible/roles/php-phalcon2
296
[ "no_license" ]
[ { "path": "ansible/roles/php-phalcon2/tasks/main.yml", "content": "---\r\n- name: checkout phalcon repository\r\n git: repo=https://github.com/phalcon/cphalcon.git version=master dest=/vagrant/cphalcon accept_hostkey=yes force=yes\r\n\r\n- name: build phalcon\r\n action: command {{ item }} chdir=/vagrant/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 556, "all_permissive": false }
ansible_role
averell23/plex_server
af17ca4eba7254e2e0871bca3d60c9b5d6ac04c3
0
roles/datadog
288
[ "permissive" ]
[ { "path": "roles/datadog/tasks/main.yml", "content": "---\n- name: Add apt key for datadog\n apt_key:\n keyserver: keyserver.ubuntu.com\n id: C7A7DA52\n\n- name: Add apt repo for datadog\n apt_repository:\n repo: deb https://apt.datadoghq.com/ stable main\n state: present\n\n- name: Install da...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 695, "all_permissive": true }
ansible_role
averell23/plex_server
af17ca4eba7254e2e0871bca3d60c9b5d6ac04c3
0
roles/harden
288
[ "permissive" ]
[ { "path": "roles/harden/tasks/main.yml", "content": "---\n- name: Update system\n apt:\n update_cache: yes\n upgrade: yes\n\n- hostname:\n name: \"{{harden_hostname}}\"\n\n- name: Install hostname file\n copy:\n dest: /etc/hostname\n content: \"{{harden_hostname}}\"\n owner: root\n gr...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3290, "all_permissive": true }
ansible_role
averell23/plex_server
af17ca4eba7254e2e0871bca3d60c9b5d6ac04c3
0
roles/plex
288
[ "permissive" ]
[ { "path": "roles/plex/tasks/main.yml", "content": "---\n- name: Install Plex Media Server\n apt:\n deb: https://downloads.plex.tv/plex-media-server/1.13.0.5023-31d3c0c65/plexmediaserver_1.13.0.5023-31d3c0c65_amd64.deb\n\n# Plex does not allow changing it's listening port.\n# Only way to change it would ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1111, "all_permissive": true }
ansible_role
averell23/plex_server
af17ca4eba7254e2e0871bca3d60c9b5d6ac04c3
0
roles/postfix_relay
288
[ "permissive" ]
[ { "path": "roles/postfix_relay/tasks/main.yml", "content": "---\n- name: Install postfix\n apt:\n name: postfix\n state: present\n notify: restart postfix\n\n- name: Install main.cf\n template:\n src: main.cf.j2\n dest: /etc/postfix/main.cf\n owner: root\n group: root\n mode: 0644\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 758, "all_permissive": true }
ansible_role
thataustin/ansible-wordpress
63abc1ee016c8b92b3b526954366c6180a7da4be
13
roles/nginx
288
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n\n- name: Install nginx - forcing download of packages WITHOUT authentication\n apt: name=nginx state=present force=yes\n\n- name: Copy nginx configuration for wordpress\n template: src=default.conf dest=/etc/nginx/conf.d/default.conf\n notify: res...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 259, "all_permissive": false }
ansible_role
thataustin/ansible-wordpress
63abc1ee016c8b92b3b526954366c6180a7da4be
13
roles/wordpress
288
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "---\n\n- name: install php\n sudo: yes\n apt: name={{item}} state=present\n with_items:\n - curl\n - libcurl3\n - libcurl3-dev\n - php5-curl\n - php5-common\n - php5-cli\n\n- name: download wp-cli\n sudo: yes\n get_url: url=https...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 995, "all_permissive": false }