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 | calvin-li-developer/ansible | 177c7c590eca2e71b8602b31ef818473407a09e2 | 0 | playbooks/roles/update | 7,515 | [
"no_license"
] | [
{
"path": "playbooks/roles/update/README.md",
"content": "# Role Name: update\n\n## Description\n\nThis role updates all packages on a server. For Debian-based systems, it is equivalent to running `apt update` and `apt dist-upgrade`.\n\n## Requirements\n\nThis role is currently implemented for Debian-based ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 746,
"all_permissive": false
} |
ansible_role | NARKOZ/ansible-rails | a6fd3a2e5a6e00c60f1e7fc0cdab5916c0e48789 | 3 | roles/app | 7,515 | [
"no_license"
] | [
{
"path": "roles/app/tasks/main.yml",
"content": "---\n- name: create app user\n user:\n name: \"{{ app.user.username }}\"\n password: \"{{ app.user.password | password_hash('<PASSWORD>', '<PASSWORD>') }}\"\n groups: wheel\n append: yes\n generate_ssh_key: yes\n\n- name: set public key for a... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1919,
"all_permissive": false
} |
ansible_role | NARKOZ/ansible-rails | a6fd3a2e5a6e00c60f1e7fc0cdab5916c0e48789 | 3 | roles/common | 7,515 | [
"no_license"
] | [
{
"path": "roles/common/tasks/redis.yml",
"content": "---\n- name: change redis config\n lineinfile:\n path: /etc/redis.conf\n line: \"{{ item }}\"\n with_items:\n - maxmemory 512mb\n - maxmemory-policy allkeys-lfu\n - maxclients 20000\n register: redis_config\n\n- name: change redis tcp-b... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 5312,
"all_permissive": false
} |
ansible_role | NARKOZ/ansible-rails | a6fd3a2e5a6e00c60f1e7fc0cdab5916c0e48789 | 3 | roles/nginx | 7,515 | [
"no_license"
] | [
{
"path": "roles/nginx/files/nginx.conf",
"content": "user nginx;\nworker_processes auto;\n\nerror_log /var/log/nginx/error.log warn;\npid /var/run/nginx.pid;\n\nworker_rlimit_nofile 16384;\n\nevents {\n worker_connections 8192;\n multi_accept on;\n use epoll;\n}\n\nhttp {\n charset ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 8058,
"all_permissive": false
} |
ansible_role | NARKOZ/ansible-rails | a6fd3a2e5a6e00c60f1e7fc0cdab5916c0e48789 | 3 | roles/postgres | 7,515 | [
"no_license"
] | [
{
"path": "roles/postgres/tasks/main.yml",
"content": "---\n- name: install postgresql repo\n yum:\n name: \"{{ rpm.postgresql }}\"\n state: present\n\n- name: install postgresql-11\n yum:\n name: \"{{ packages }}\"\n state: present\n vars:\n packages:\n - postgresql11-server\n -... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1042,
"all_permissive": false
} |
ansible_role | NARKOZ/ansible-rails | a6fd3a2e5a6e00c60f1e7fc0cdab5916c0e48789 | 3 | roles/ruby | 7,515 | [
"no_license"
] | [
{
"path": "roles/ruby/tasks/main.yml",
"content": "---\n- name: install ruby deps\n yum:\n name: \"{{ packages }}\"\n state: present\n vars:\n packages:\n - gcc\n - gcc-c++\n - gdbm-devel\n - glibc-devel\n - libffi-devel\n - libxml2-devel # nokogiri gem\n - lib... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 880,
"all_permissive": false
} |
ansible_role | bseelam-hub/roles | ded6998393c94f807cb18f8906a0638f1328b8fc | 0 | ansible/roles/jenkins | 7,515 | [
"no_license"
] | [
{
"path": "ansible/roles/jenkins/tasks/main.yml",
"content": "---\n# tasks file for jenkins\n#- name: Ensure jenkins home dir is created\n# become_user: root\n# file:\n# path: \"{{ jenkins_home }}\"\n# mode: 0777\n# owner: \"{{ jenkins_user }}\"_\n# group: \"{{ jenkins_group }}\"\n# state: ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2332,
"all_permissive": false
} |
ansible_role | DIPSAS/AnsibleCourse | e7bf7a4f9b9c8fd0ea0a4f6b5aac23d3ed83ee64 | 8 | src/roles/Stratos | 7,515 | [
"no_license"
] | [
{
"path": "src/roles/Stratos/tasks/main.yaml",
"content": "- name: Install Stratos Chocolatey service\n win_chocolatey: \n name: stratos \n state: latest\n register: stratos\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 119
},
{
"path": "src/roles/Strat... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 190,
"all_permissive": false
} |
ansible_role | DIPSAS/AnsibleCourse | e7bf7a4f9b9c8fd0ea0a4f6b5aac23d3ed83ee64 | 8 | src/roles/Zookeeper | 7,515 | [
"no_license"
] | [
{
"path": "src/roles/Zookeeper/tasks/firewalld.yml",
"content": "---\r\n- name: Register port 2181 in firewalld\r\n firewalld:\r\n port: 2181/tcp\r\n permanent: true\r\n state: enabled\r\n register: mainport\r\n\r\n- name: Register port 2888 in firewalld\r\n firewalld:\r\n port: 2888/tcp\r\n ... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 6575,
"all_permissive": false
} |
ansible_role | dincrash/ansibleaws | 785b8472bf24bef593107b1ed01de598b0d388d8 | 0 | roles/common | 7,515 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n\n- name: Check if root login is enabled\n command: /usr/bin/diff .ssh/authorized_keys /root/.ssh/authorized_keys\n ignore_errors: yes\n register: result\n changed_when: result.stdout != \"\"\n \n- name: Enable root login\n command: /bin/cp .ss... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 317,
"all_permissive": false
} |
ansible_role | dincrash/ansibleaws | 785b8472bf24bef593107b1ed01de598b0d388d8 | 0 | roles/ec2 | 7,515 | [
"no_license"
] | [
{
"path": "roles/ec2/vars/proxy.yml",
"content": "---\n\nservice_name: proxy\nservice_port:\n - 22\n - 8080\n - 80\n - 5666\nsecurity_rules:\n - proto: tcp\n from_port: 22\n to_port: 22\n cidr_ip: 0.0.0.0/0\n - proto: tcp\n from_port: 8080\n to_port: 8080\n cidr_ip: 0.0.0.0/0\n - pr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2588,
"all_permissive": false
} |
ansible_role | dincrash/ansibleaws | 785b8472bf24bef593107b1ed01de598b0d388d8 | 0 | roles/mysql | 7,515 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yml",
"content": "---\n- name: Installing Mysql and dependencies\n package:\n name: \"{{item}}\"\n state: present\n update_cache: yes\n loop:\n - mysql-server\n - mysql-client\n - python3-mysqldb\n - libmysqlclient-dev\n become: yes\n\n- name: Copy ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 995,
"all_permissive": false
} |
ansible_role | dincrash/ansibleaws | 785b8472bf24bef593107b1ed01de598b0d388d8 | 0 | roles/proxy | 7,515 | [
"no_license"
] | [
{
"path": "roles/proxy/tasks/main.yml",
"content": "---\n- name: install apache2\n apt: name=apache2 update_cache=yes state=latest\n\n- name: enabled proxy\n apache2_module: name=proxy state=present\n\n- name: enabled proxy_http\n apache2_module: name=proxy_http state=present\n\n- name: enabled proxy_bal... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 562,
"all_permissive": false
} |
ansible_role | dincrash/ansibleaws | 785b8472bf24bef593107b1ed01de598b0d388d8 | 0 | roles/tomcat | 7,515 | [
"no_license"
] | [
{
"path": "roles/tomcat/tasks/main.yml",
"content": "---\n- name: Install Tomcat9\n apt: name=tomcat9 update_cache=yes\n\n- name: Install Tomcat9 Admin\n apt: name=tomcat9-admin update_cache=yes\n\n- name: Configure Tomcat users\n template: src=tomcat-users.xml dest=/etc/tomcat9/\n notify: restart tomca... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1265,
"all_permissive": false
} |
ansible_role | codygarver/ansible-mining-farm | 68d656be72669bb66f5eff2c8e9a7c7a83ae4ef1 | 0 | roles/miner | 7,515 | [
"no_license"
] | [
{
"path": "roles/miner/handlers/main.yml",
"content": "---\n\n- name: enable miner\n service: name=miner.timer enabled=yes state=started\n\n- name: restart miner\n service: name=miner.service state=restarted\n\n- name: reload sysctl\n command: sysctl -p\n",
"license_type": "no_license",
"detected... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 5274,
"all_permissive": false
} |
ansible_role | dgsponer/ansible-collection-vmware_vcda | 9a0c7bf1299211178fe7b07ad1fb8ab9f15641e0 | 0 | roles/vcda_deploy | 7,515 | [
"no_license"
] | [
{
"path": "roles/vcda_deploy/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - vcda_deploy\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 70
},
{
"path": "roles/vcda_deploy/defaults/main.yml",
"content": "---\n# defau... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 2051,
"all_permissive": false
} |
ansible_role | mmcfarland/model-my-watershed-1 | a6bd72e39e6fe3a2f20d192ff04a721d1eac7613 | 1 | deployment/ansible/roles/model-my-watershed.app | 7,515 | [
"no_license"
] | [
{
"path": "deployment/ansible/roles/model-my-watershed.app/meta/main.yml",
"content": "---\ndependencies:\n - { role: \"azavea.python\", python_development: True }\n - { role: \"azavea.pip\" }\n - { role: \"azavea.postgresql-support\" }\n - { role: \"azavea.phantomjs\" }\n - { role: \"model-my-watershe... | {
"task_files": 6,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 8197,
"all_permissive": false
} |
ansible_role | mmcfarland/model-my-watershed-1 | a6bd72e39e6fe3a2f20d192ff04a721d1eac7613 | 1 | deployment/ansible/roles/model-my-watershed.beaver | 7,515 | [
"no_license"
] | [
{
"path": "deployment/ansible/roles/model-my-watershed.beaver/tasks/main.yml",
"content": "---\n- name: Configure Beaver to ship logs\n template: src=\"{{ item }}.conf.j2\"\n dest=\"{{ beaver_conf_dir }}/conf.d/{{ item }}\"\n with_items:\n - nginx\n - django\n - gunicorn\n - windsha... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 871,
"all_permissive": false
} |
ansible_role | mmcfarland/model-my-watershed-1 | a6bd72e39e6fe3a2f20d192ff04a721d1eac7613 | 1 | deployment/ansible/roles/model-my-watershed.celery-worker | 7,515 | [
"no_license"
] | [
{
"path": "deployment/ansible/roles/model-my-watershed.celery-worker/meta/main.yml",
"content": "---\ndependencies:\n - { role: \"azavea.python\", python_development: True }\n - { role: \"azavea.pip\" }\n - { role: \"azavea.postgresql-support\" }\n - { role: \"model-my-watershed.monitoring\", collectd_p... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 4790,
"all_permissive": false
} |
ansible_role | mmcfarland/model-my-watershed-1 | a6bd72e39e6fe3a2f20d192ff04a721d1eac7613 | 1 | deployment/ansible/roles/model-my-watershed.pgweb | 7,515 | [
"no_license"
] | [
{
"path": "deployment/ansible/roles/model-my-watershed.pgweb/templates/logrotate_pgweb.j2",
"content": "{{ pgweb_log }} {\n rotate {{ pgweb_log_rotate_count }}\n {{ pgweb_log_rotate_interval }}\n compress\n missingok\n notifempty\n}\n",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 1330,
"all_permissive": false
} |
ansible_role | mmcfarland/model-my-watershed-1 | a6bd72e39e6fe3a2f20d192ff04a721d1eac7613 | 1 | deployment/ansible/roles/model-my-watershed.postgresql | 7,515 | [
"no_license"
] | [
{
"path": "deployment/ansible/roles/model-my-watershed.postgresql/tasks/main.yml",
"content": "---\n- name: Configure PostgreSQL service definition\n template: src=postgresql.j2\n dest=/etc/init.d/postgresql\n mode=0755\n notify:\n - Restart PostgreSQL\n\n- name: Create PostgreSQL... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 852,
"all_permissive": false
} |
ansible_role | mmcfarland/model-my-watershed-1 | a6bd72e39e6fe3a2f20d192ff04a721d1eac7613 | 1 | deployment/ansible/roles/model-my-watershed.tiler | 7,515 | [
"no_license"
] | [
{
"path": "deployment/ansible/roles/model-my-watershed.tiler/tasks/dependencies.yml",
"content": "---\n- name: Install canvas rendering dependencies\n apt: pkg={{ item }} state=present\n with_items:\n - \"libcairo2-dev=1.13.*\"\n - \"libpango1.0-dev=1.36.*\"\n - \"libjpeg8-dev=8c*\"\n - \"libg... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 4292,
"all_permissive": false
} |
ansible_role | fiercebrake/ttr-comm-k8s | b62256e2a79f883d3939d4a0ddc6c7c2dd24d426 | 0 | ansible/roles/aws | 7,515 | [
"no_license"
] | [
{
"path": "ansible/roles/aws/vars/main.yml",
"content": "---\ncustenvi: \"{{ lookup('ansible.builtin.env', 'TF_VAR_customer_envi') }}\"\ncustname: \"{{ lookup('ansible.builtin.env', 'TF_VAR_customer_name') }}\"\ndokuser: \"{{ lookup('ansible.builtin.env', 'TF_VAR_dok_user') }}\"\ndokpass: \"{{ lookup('ansib... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1181,
"all_permissive": false
} |
ansible_role | fiercebrake/ttr-comm-k8s | b62256e2a79f883d3939d4a0ddc6c7c2dd24d426 | 0 | ansible/roles/crio | 7,515 | [
"no_license"
] | [
{
"path": "ansible/roles/crio/tasks/main.yml",
"content": "---\n- name: 'install cri-o'\n ansible.builtin.yum:\n lock_timeout: 90\n name: \"{{ item }}\"\n state: latest\n with_items:\n - 'cri-tools'\n - 'cri-o'\n\n- name: 'start cri-o service'\n ansible.builtin.service:\n name: 'crio'\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 695,
"all_permissive": false
} |
ansible_role | fiercebrake/ttr-comm-k8s | b62256e2a79f883d3939d4a0ddc6c7c2dd24d426 | 0 | ansible/roles/k8s | 7,515 | [
"no_license"
] | [
{
"path": "ansible/roles/k8s/tasks/main.yml",
"content": "---\n- name: 'install k8s'\n ansible.builtin.yum:\n lock_timeout: 90\n name: \"{{ item }}\"\n state: latest\n with_items:\n - 'kubelet'\n - 'kubeadm'\n - 'kubectl'\n\n- name: 'start kubelet service'\n ansible.builtin.service:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 288,
"all_permissive": false
} |
ansible_role | fiercebrake/ttr-comm-k8s | b62256e2a79f883d3939d4a0ddc6c7c2dd24d426 | 0 | ansible/roles/master | 7,515 | [
"no_license"
] | [
{
"path": "ansible/roles/master/files/java-hw.yml",
"content": "apiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: hello-world\n labels:\n app: hello-world\nspec:\n replicas: 3\n selector:\n matchLabels:\n app: hello-world\n template:\n metadata:\n labels:\n app: hello-w... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 3246,
"all_permissive": false
} |
ansible_role | fiercebrake/ttr-comm-k8s | b62256e2a79f883d3939d4a0ddc6c7c2dd24d426 | 0 | ansible/roles/nodes | 7,515 | [
"no_license"
] | [
{
"path": "ansible/roles/nodes/vars/main.yml",
"content": "---\njoincommand: \"{{ hostvars[hostvars['localhost']['lst_ips'][0]]['joinmaster']}}\"\njoinnode: \"{{ joincommand|replace('kubeadm', '/usr/bin/kubeadm') }}\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 152
}... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 903,
"all_permissive": false
} |
ansible_role | fiercebrake/ttr-comm-k8s | b62256e2a79f883d3939d4a0ddc6c7c2dd24d426 | 0 | ansible/roles/os | 7,515 | [
"no_license"
] | [
{
"path": "ansible/roles/os/handlers/main.yml",
"content": "---\n- name: 'iptables restart'\n ansible.builtin.service:\n name: iptables.service\n state: restarted\n\n- name: 'containerd restart'\n ansible.builtin.service:\n name: containerd.service\n state: restarted",
"license_type": "no_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2220,
"all_permissive": false
} |
ansible_role | fiercebrake/ttr-comm-k8s | b62256e2a79f883d3939d4a0ddc6c7c2dd24d426 | 0 | ansible/roles/restart | 7,515 | [
"no_license"
] | [
{
"path": "ansible/roles/restart/tasks/main.yml",
"content": "---\n- name: 'reboot all instances'\n ansible.builtin.reboot:\n\n- name: 'wait for all nodes to become available'\n ansible.builtin.wait_for:\n port: 45100\n host: \"{{ item }}\"\n search_regex: OpenSSH\n delay: 10\n with_items:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 330,
"all_permissive": false
} |
ansible_role | andrewduke51/kubernetes-cluster | 53e58b7e6319d51b39b6d423747d8eef829e5da2 | 0 | ansible/playbooks/roles/circleci-runner | 7,515 | [
"no_license"
] | [
{
"path": "ansible/playbooks/roles/circleci-runner/files/circleci-runner.sh",
"content": "#!/usr/bin/env bash\n\nid -u circleci &>/dev/null || sudo adduser -c GECOS circleci",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 81
},
{
"path": "ansible/playbooks/roles/ci... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2086,
"all_permissive": false
} |
ansible_role | andrewduke51/kubernetes-cluster | 53e58b7e6319d51b39b6d423747d8eef829e5da2 | 0 | ansible/playbooks/roles/common-ubuntu | 7,515 | [
"no_license"
] | [
{
"path": "ansible/playbooks/roles/common-ubuntu/tasks/switch-python.yml",
"content": "- name: link /usr/bin/python\n ansible.builtin.file:\n src: /virtual-python/shims/python\n dest: \"/usr/bin/python\"\n state: link\n force: yes\n\n- name: link updated pip\n file:\n src: \"{{ pip }}\"\n ... | {
"task_files": 7,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 8422,
"all_permissive": false
} |
ansible_role | andrewduke51/kubernetes-cluster | 53e58b7e6319d51b39b6d423747d8eef829e5da2 | 0 | ansible/playbooks/roles/install-containerd | 7,515 | [
"no_license"
] | [
{
"path": "ansible/playbooks/roles/install-containerd/tasks/install-containerd.yml",
"content": "- name: containerd.conf\r\n copy:\r\n src: \"containerd.conf\"\r\n dest: \"/etc/modules-load.d/containerd.conf\"\r\n\r\n- name: modprobe\r\n command: \"{{ item }}\"\r\n with_items:\r\n - sudo modprob... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1234,
"all_permissive": false
} |
ansible_role | andrewduke51/kubernetes-cluster | 53e58b7e6319d51b39b6d423747d8eef829e5da2 | 0 | ansible/playbooks/roles/install-kubernetes | 7,515 | [
"no_license"
] | [
{
"path": "ansible/playbooks/roles/install-kubernetes/tasks/main.yml",
"content": "- name: install-kubelet.yml\r\n include_tasks: install-kubelet.yml\r\n\r\n- name: master-configs.yml\r\n include_tasks: master-configs.yml\r\n when: master == \"yes\"\r\n\r\n- name: copy weave-net.yaml\r\n copy:\r\n sr... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 4134,
"all_permissive": false
} |
ansible_role | andrewduke51/kubernetes-cluster | 53e58b7e6319d51b39b6d423747d8eef829e5da2 | 0 | ansible/playbooks/roles/nginx | 7,515 | [
"no_license"
] | [
{
"path": "ansible/playbooks/roles/nginx/tasks/main.yml",
"content": "## NGINX ##\n- name: Include nginx-config.yml\n include_tasks: nginx-config.yml",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 78
},
{
"path": "ansible/playbooks/roles/nginx/files/cloudflare_ip... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1425,
"all_permissive": false
} |
ansible_role | andrewduke51/kubernetes-cluster | 53e58b7e6319d51b39b6d423747d8eef829e5da2 | 0 | ansible/playbooks/roles/ping_role | 7,515 | [
"no_license"
] | [
{
"path": "ansible/playbooks/roles/ping_role/tasks/main.yml",
"content": "# Test connectivity\r\n- name: Wait for ssh\r\n wait_for_connection:\r\n delay: 1\r\n timeout: 3\r\n\r\n- name: Test from Ansible Playbook\r\n ping:\r\n\r\n- name: shutdown\r\n community.general.shutdown:\r\n when: SHUTDOWN ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 220,
"all_permissive": false
} |
ansible_role | andrewduke51/kubernetes-cluster | 53e58b7e6319d51b39b6d423747d8eef829e5da2 | 0 | ansible/playbooks/roles/pub-key | 7,515 | [
"no_license"
] | [
{
"path": "ansible/playbooks/roles/pub-key/tasks/main.yml",
"content": "- name: make direcotry\r\n file:\r\n path: \"/home/vagrant/.ssh\"\r\n state: directory\r\n\r\n- name: Set authorized key taken from file\r\n ansible.posix.authorized_key:\r\n user: vagrant\r\n state: present\r\n key: \"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 745,
"all_permissive": false
} |
ansible_role | andrewduke51/kubernetes-cluster | 53e58b7e6319d51b39b6d423747d8eef829e5da2 | 0 | ansible/playbooks/roles/update-linux | 7,515 | [
"no_license"
] | [
{
"path": "ansible/playbooks/roles/update-linux/tasks/main.yml",
"content": "- name: Install packages that allow apt to be used over HTTPS\r\n apt:\r\n name: \"{{ packages }}\"\r\n state: present\r\n update_cache: yes\r\n\r\n\r\n- name: Upgrade the OS (apt-get dist-upgrade)\r\n apt:\r\n upgrad... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 787,
"all_permissive": false
} |
ansible_role | mancubus77/acm-ansible-secrets-demo | 8f88de81b47c44688dd4f9c93006d67d34157de0 | 0 | roles/apply-policy | 7,513 | [
"no_license"
] | [
{
"path": "roles/apply-policy/templates/breaking-glass.j2",
"content": "---\napiVersion: policy.open-cluster-management.io/v1\nkind: Policy\nmetadata:\n name: pl-sk-secret\n namespace: skozlov\nspec:\n disabled: false\n policy-templates:\n - objectDefinition:\n apiVersion: policy.open-cluster-... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 4523,
"all_permissive": false
} |
ansible_role | mancubus77/acm-ansible-secrets-demo | 8f88de81b47c44688dd4f9c93006d67d34157de0 | 0 | roles/encrypt-vars | 7,513 | [
"no_license"
] | [
{
"path": "roles/encrypt-vars/handlers/main.yml",
"content": "---\n# handlers file for apply-policy\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 37
},
{
"path": "roles/encrypt-vars/vars/vars.yaml",
"content": "set1: \n config1: value1-1-1\n config2: valu... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2386,
"all_permissive": false
} |
ansible_role | mancubus77/acm-ansible-secrets-demo | 8f88de81b47c44688dd4f9c93006d67d34157de0 | 0 | roles/gitworks | 7,513 | [
"no_license"
] | [
{
"path": "roles/gitworks/defaults/main.yml",
"content": "---\n# defaults file for apply-policy\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 37
},
{
"path": "roles/gitworks/tasks/iter-vars.yaml",
"content": "- set_fact: \n config_level: \"{{ item.key }}... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1517,
"all_permissive": false
} |
ansible_role | mikeferguson/stuff | 1f4119902fcd6d63e770b923a757d616f8addb5e | 2 | botfarm/roles/install_couchdb | 7,513 | [
"no_license"
] | [
{
"path": "botfarm/roles/install_couchdb/tasks/main.yml",
"content": "---\n# Install couchdb (v3)\n- name: Install couchdb prereqs\n become: yes\n apt:\n pkg:\n - apt-transport-https\n - gnupg\n - ca-certificates\n- name: Configure apt key for couchdb\n become: yes\n apt_key:\n keys... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 656,
"all_permissive": false
} |
ansible_role | mikeferguson/stuff | 1f4119902fcd6d63e770b923a757d616f8addb5e | 2 | botfarm/roles/install_eetools | 7,513 | [
"no_license"
] | [
{
"path": "botfarm/roles/install_eetools/tasks/main.yml",
"content": "---\n# Setup EE tools\n- name: Install pulseview for logic analyzer\n become: yes\n apt:\n pkg:\n - pulseview\n - sigrok\n# ARM compiler\n- name: Install prereqs for ARM compiler\n become: yes\n apt:\n pkg:\n - gc... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1082,
"all_permissive": false
} |
ansible_role | mikeferguson/stuff | 1f4119902fcd6d63e770b923a757d616f8addb5e | 2 | botfarm/roles/install_ros | 7,513 | [
"no_license"
] | [
{
"path": "botfarm/roles/install_ros/tasks/main.yml",
"content": "---\n# Install ROS1 Packages\n- name: Configure apt key for ROS\n become: yes\n apt_key:\n keyserver: keyserver.ubuntu.com\n id: C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654\n- name: Configure apt sources for ROS\n become: yes\n apt_rep... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 575,
"all_permissive": false
} |
ansible_role | adriamontoto/make-my-server | d2029d9f874c5fe943632423414fbc2bf6fb00e7 | 2 | ansible/roles/dns_configuration | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/dns_configuration/tasks/main.yaml",
"content": "---\n- name: Configure Main DNS Server\n become: true\n community.general.ini_file:\n section: Resolve\n option: DNS\n value: '{{ primary_dns_servers | join(\" \") }}'\n mode: '0644'\n path: /etc/systemd/resolved.conf\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 5395,
"all_permissive": false
} |
ansible_role | adriamontoto/make-my-server | d2029d9f874c5fe943632423414fbc2bf6fb00e7 | 2 | ansible/roles/docker_configuration | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/docker_configuration/tasks/main.yaml",
"content": "---\n- name: Install Required Packages\n become: true\n apt:\n name: '{{ item }}'\n state: present\n loop:\n - curl\n - ca-certificates\n\n- name: Add Docker GPG Key\n become: true\n apt_key:\n url: https://downl... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1091,
"all_permissive": false
} |
ansible_role | adriamontoto/make-my-server | d2029d9f874c5fe943632423414fbc2bf6fb00e7 | 2 | ansible/roles/firewall_configuration | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/firewall_configuration/handlers/main.yaml",
"content": "---\n- name: Restart UFW Service\n become: true\n ansible.builtin.systemd:\n name: ufw\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 109
},
{
"path": "an... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3755,
"all_permissive": false
} |
ansible_role | adriamontoto/make-my-server | d2029d9f874c5fe943632423414fbc2bf6fb00e7 | 2 | ansible/roles/password_policy_configuration | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/password_policy_configuration/tasks/main.yaml",
"content": "---\n- name: Install Required Packages\n become: true\n apt:\n name: '{{ item }}'\n state: present\n loop:\n - libpam-pwquality\n\n- name: Configure PAM Password Policy\n become: true\n lineinfile:\n create... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2459,
"all_permissive": false
} |
ansible_role | adriamontoto/make-my-server | d2029d9f874c5fe943632423414fbc2bf6fb00e7 | 2 | ansible/roles/sshd_configuration | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/sshd_configuration/tasks/main.yaml",
"content": "---\n- name: Filter Out Small Primes\n command: \"awk '$5 >= 3071' {{ ssh_configuration_folder }}/moduli\"\n register: filtered_moduli\n changed_when: false\n\n- name: Update Moduli if Needed\n become: true\n copy:\n content: ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 15983,
"all_permissive": false
} |
ansible_role | adriamontoto/make-my-server | d2029d9f874c5fe943632423414fbc2bf6fb00e7 | 2 | ansible/roles/system_update | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/system_update/tasks/main.yaml",
"content": "---\n- name: Update APT Cache\n become: true\n apt:\n update_cache: yes\n cache_valid_time: 3600\n\n- name: Upgrade System Packages\n become: true\n apt:\n upgrade: dist\n autoclean: yes\n autoremove: yes\n dpkg_optio... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 434,
"all_permissive": false
} |
ansible_role | wftech/prometheus-workshop | 2e590ab374d15933815422f4ca8e7b79307fd4c4 | 1 | roles/local.grafana | 7,513 | [
"no_license"
] | [
{
"path": "roles/local.grafana/templates/datasource.yml",
"content": "apiVersion: 1\ndatasources:\n - access: proxy\n isDefault: false\n name: prometheus\n type: prometheus\n url: http://{{ visible_hostname }}:9090\n version: 1\n",
"license_type": "no_license",
"detected_licenses": [... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1493,
"all_permissive": false
} |
ansible_role | wftech/prometheus-workshop | 2e590ab374d15933815422f4ca8e7b79307fd4c4 | 1 | roles/local.prometheus | 7,513 | [
"no_license"
] | [
{
"path": "roles/local.prometheus/files/rules/alerts-prometheus.yml",
"content": "groups:\n- name: \"prometheus\"\n rules:\n - alert: PrometheusConfigurationReload\n expr: prometheus_config_last_reload_successful != 1\n for: 5m\n labels:\n severity: error\n annotations:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4679,
"all_permissive": false
} |
ansible_role | wftech/prometheus-workshop | 2e590ab374d15933815422f4ca8e7b79307fd4c4 | 1 | roles/local.prometheus-apache | 7,513 | [
"no_license"
] | [
{
"path": "roles/local.prometheus-apache/tasks/main.yml",
"content": "\n- name: Install apache and utils\n yum:\n name:\n - httpd\n - apache_exporter\n state: present\n\n- name: Enable server-status\n copy:\n dest: /etc/httpd/conf.d/server-status.conf\n content: |\n <Location \"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3648,
"all_permissive": false
} |
ansible_role | wftech/prometheus-workshop | 2e590ab374d15933815422f4ca8e7b79307fd4c4 | 1 | roles/local.prometheus-node-exporter | 7,513 | [
"no_license"
] | [
{
"path": "roles/local.prometheus-node-exporter/templates/node-exporter.yml",
"content": "- targets:\n - '{{ visible_hostname }}:9100'\n labels:\n environment: 'workshop'\n# job: node\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 104
},
{
"path": ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 403,
"all_permissive": false
} |
ansible_role | wftech/prometheus-workshop | 2e590ab374d15933815422f4ca8e7b79307fd4c4 | 1 | roles/local.workshop-setup | 7,513 | [
"no_license"
] | [
{
"path": "roles/local.workshop-setup/defaults/main.yml",
"content": "\nworkshop_user: workshop\nworkshop_password: <PASSWORD>\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 55
},
{
"path": "roles/local.workshop-setup/tasks/main.yml",
"content": "- name: Ins... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1118,
"all_permissive": false
} |
ansible_role | AmanPathak-DevOps/Ansible--Playbooks | 1394b6abb2fa0b4163b15ca0409a194b20deac57 | 7 | lamp-server/roles/apache2 | 7,513 | [
"no_license"
] | [
{
"path": "lamp-server/roles/apache2/tasks/main.yaml",
"content": "---\n- name: Install apache2 web server\n become: true\n apt: pkg={{ item }} state=present update_cache=true\n with_items:\n - apache2\n\n- name: Enable apache2 modules\n become: yes\n ignore_errors: yes\n command: a2enmod rewrite act... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 558,
"all_permissive": false
} |
ansible_role | AmanPathak-DevOps/Ansible--Playbooks | 1394b6abb2fa0b4163b15ca0409a194b20deac57 | 7 | lamp-server/roles/mysql | 7,513 | [
"no_license"
] | [
{
"path": "lamp-server/roles/mysql/tasks/main.yaml",
"content": "- name: Add the repo for Mysql 5.6\n become: yes\n command: add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty universe'\n\n- name: Update\n become: true\n command: apt update\n\n- name: Install mysql\n apt: pkg={{ item }} st... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 719,
"all_permissive": false
} |
ansible_role | AmanPathak-DevOps/Ansible--Playbooks | 1394b6abb2fa0b4163b15ca0409a194b20deac57 | 7 | lamp-server/roles/php | 7,513 | [
"no_license"
] | [
{
"path": "lamp-server/roles/php/tasks/main.yaml",
"content": "- name: Install php-fpm & php extensions\n become: true\n apt: pkg={{ item }} state=present update_cache=true\n with_items:\n - php-fpm\n - libapache2-mod-php\n - php-gd\n - php-curl\n - php-mysql\n - php-dom\n - php-xml\n\n- name: Con... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 415,
"all_permissive": false
} |
ansible_role | AmanPathak-DevOps/Ansible--Playbooks | 1394b6abb2fa0b4163b15ca0409a194b20deac57 | 7 | playbook/roles/webserver | 7,513 | [
"no_license"
] | [
{
"path": "playbook/roles/webserver/tasks/main.yaml",
"content": "- name: install tree on Debian\n apt: pkg=tree state=present\n when: ansible_os_family == \"Debian\"\n- name: installing tree on RedHat\n yum: pkg=tree state=present\n when: ansible_os_family == \"RedHat\"\n\n",
"license_type": "no_li... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 202,
"all_permissive": false
} |
ansible_role | TWChennai/ansible-ruby-stack | 41d832193b8d0e26f53b76d2e386a4275dbc5a64 | 0 | roles/rvm | 7,513 | [
"no_license"
] | [
{
"path": "roles/rvm/tasks/main.yml",
"content": "---\n- name: Install curl\n apt: name=curl update_cache=yes\n become: yes\n\n- name: Adding GPG key\n shell: 'curl -sSL https://rvm.io/mpapis.asc | gpg --import -'\n\n- name: Install RVM\n shell: 'curl -L https://get.rvm.io | `which bash` -s -- --version... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 536,
"all_permissive": false
} |
ansible_role | mvvbapiraju/ansible-aws-app-stack | 0c2448f2d7d03a1d30294acd7e2834bbf3ca359e | 1 | roles/app_tier | 7,513 | [
"no_license"
] | [
{
"path": "roles/app_tier/handlers/main.yml",
"content": "---\n# handlers file for app_tier\n- name: restart_tomcat\n service:\n name: tomcat.service\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 113
},
{
"path": "roles/app_tier/templa... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 1456,
"all_permissive": false
} |
ansible_role | mvvbapiraju/ansible-aws-app-stack | 0c2448f2d7d03a1d30294acd7e2834bbf3ca359e | 1 | roles/base_config | 7,513 | [
"no_license"
] | [
{
"path": "roles/base_config/handlers/main.yml",
"content": "---\n# handlers file for base_config",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 35
},
{
"path": "roles/base_config/vars/main.yml",
"content": "---\ndocker_compose_version: docker-compose-Linux-x8... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 791,
"all_permissive": false
} |
ansible_role | mvvbapiraju/ansible-aws-app-stack | 0c2448f2d7d03a1d30294acd7e2834bbf3ca359e | 1 | roles/lb_tier | 7,513 | [
"no_license"
] | [
{
"path": "roles/lb_tier/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - lb_tier",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
},
{
"path": "roles/lb_tier/handlers/main.yml",
"content": "---\n# handlers file for l... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 629,
"all_permissive": false
} |
ansible_role | mvvbapiraju/ansible-aws-app-stack | 0c2448f2d7d03a1d30294acd7e2834bbf3ca359e | 1 | roles/provision_aws | 7,513 | [
"no_license"
] | [
{
"path": "roles/provision_aws/tasks/main.yml",
"content": "---\n- name: Create EC2 SSH Key Pair\n include: tasks/create-ec2-ssh-key.yml\n\n- name: Create VPC and Subnets\n include: tasks/create-vpc.yml\n\n- name: Provision EC2 Instances\n ec2:\n key_name : ansible_keypair\n instance_type: \"{{ ite... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 8246,
"all_permissive": false
} |
ansible_role | mvvbapiraju/ansible-aws-app-stack | 0c2448f2d7d03a1d30294acd7e2834bbf3ca359e | 1 | roles/web_tier | 7,513 | [
"no_license"
] | [
{
"path": "roles/web_tier/handlers/main.yml",
"content": "---\n# handlers file for lb-tier-httpd\n- name: restart_httpd\n service:\n name: httpd.service\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 116
},
{
"path": "roles/web_tier/tes... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 947,
"all_permissive": false
} |
ansible_role | DevOpswithYan/Yan_Ansible-Tutorial | defada4853b08c2789bf98b41b72d8aaf36ca223 | 0 | roles/base | 7,513 | [
"no_license"
] | [
{
"path": "roles/base/tasks/main.yml",
"content": "- name: Add ssh key for divail\n ansible.builtin.lineinfile:\n path: /home/divail/.ssh/authorized_keys\n create: yes\n line: \"ssh-ed25519 <KEY>\"\n owner: divail\n group: divail\n mode: '0600'\n\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 205,
"all_permissive": false
} |
ansible_role | DevOpswithYan/Yan_Ansible-Tutorial | defada4853b08c2789bf98b41b72d8aaf36ca223 | 0 | roles/container_servers | 7,513 | [
"no_license"
] | [
{
"path": "roles/container_servers/tasks/main.yml",
"content": "- name: Install httpd and php on docker servers\n tags: apache, apache2, ubuntu\n apt:\n name:\n - apache2\n - libapache2-mod-php\n state: present\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 160,
"all_permissive": false
} |
ansible_role | DevOpswithYan/Yan_Ansible-Tutorial | defada4853b08c2789bf98b41b72d8aaf36ca223 | 0 | roles/linode_servers | 7,513 | [
"no_license"
] | [
{
"path": "roles/linode_servers/tasks/main.yml",
"content": "# roles/linode_servers/tasks/main.yml\n- name: Install httpd and php on docker servers\n tags: apache, apache2, ubuntu\n apt:\n name:\n - apache2\n - libapache2-mod-php\n state: present\n when: ansible_os_family == 'Debian'\n\n-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 435,
"all_permissive": false
} |
ansible_role | zadewu/workspace-setup | 1811cdfaf54c28a1df1b985b12168aac34d2cf10 | 0 | roles/github | 7,513 | [
"no_license"
] | [
{
"path": "roles/github/defaults/main.yaml",
"content": "github_cli_version: v2.48.0\ngithub_cli_file_type: gh_2.48.0_linux_amd64.deb\ngithub_cli_checksum_filename: gh_2.48.0_checksums.txt\ngithub_cli_ssh_key_title: ssh_key_added_via_ansible\ngithub_cli_ssh_repo: zadewu/os-notes\n# github_cli_ssh_repo: meso... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 4231,
"all_permissive": false
} |
ansible_role | willdafoe/pulumi.proxmox.lxc-container | 65af5df8d335eb993aaae3118e1a590e7b6595c8 | 0 | ansible/roles/unifi.controller | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/unifi.controller/defaults/main.yml",
"content": "#SPDX-License-Identifier: MIT-0\n---\n# defaults file for unifi.controller\nunifi_version: latest\nunifi_codename: bookworm\nunifi_repo_url: https://www.ui.com/downloads/unifi/debian\nunifi_gpg_key_url: https://dl.ui.com/unifi/unifi-r... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 2605,
"all_permissive": false
} |
ansible_role | zam-zam/vault-init | 52dc7dcdbd45f1bd7a0e03628423823496f4ff0d | 0 | roles/init-vault | 7,513 | [
"no_license"
] | [
{
"path": "roles/init-vault/tasks/init.yml",
"content": "- name: Initialize Vault operator\n shell: vault operator init -key-shares=1 -key-threshold=1 -format json\n environment:\n VAULT_ADDR: \"{{ vault_addr }}\"\n register: vault_init_results\n no_log: true\n\n- name: Parse output of vault init\n ... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 6063,
"all_permissive": false
} |
ansible_role | zam-zam/vault-init | 52dc7dcdbd45f1bd7a0e03628423823496f4ff0d | 0 | roles/vault | 7,513 | [
"no_license"
] | [
{
"path": "roles/vault/handlers/main.yml",
"content": "---\n# handlers file for vault\n\n- name: Restart vault\n become: true\n systemd:\n name: vault\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 116
},
{
"path": "roles/vault/tasks/m... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 12718,
"all_permissive": false
} |
ansible_role | pcnoic/dotfiles | 8ffc6005c24f249ed6fc09d355285863e0bbbd7d | 0 | ansible/roles/common | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/main.yml",
"content": "---\n- name: Install tfenv\n git:\n repo: https://github.com/tfutils/tfenv.git\n dest: \"{{ ansible_env.HOME }}/.tfenv\"\n become: no\n\n- name: Add tfenv to PATH (macOS)\n lineinfile:\n path: \"{{ ansible_env.HOME }}/.zshrc\"\n lin... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 4820,
"all_permissive": false
} |
ansible_role | pcnoic/dotfiles | 8ffc6005c24f249ed6fc09d355285863e0bbbd7d | 0 | ansible/roles/linux | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/linux/tasks/main.yml",
"content": "---\n- name: Update package database\n pacman:\n update_cache: yes\n become: yes\n when: is_linux == 'true'\n\n- name: Update mirrorlist\n lineinfile:\n path: /etc/pacman.d/mirrorlist\n line: \"Server = http://mirror.rackspace.com/arch... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1255,
"all_permissive": false
} |
ansible_role | pcnoic/dotfiles | 8ffc6005c24f249ed6fc09d355285863e0bbbd7d | 0 | ansible/roles/macos | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/macos/tasks/main.yml",
"content": "---\n- name: Install macOS-specific tools with Homebrew\n homebrew:\n name:\n - kubectx\n - awscli\n - google-cloud-sdk\n - tree\n - watch\n - jq\n - kubectl\n - k9s\n - lazygit\n - gcc\n -... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 588,
"all_permissive": false
} |
ansible_role | itao/wnw | 42f7a5ef04cc01715abc08e5cc5af6ae149b6159 | 0 | ansible/roles/bootstrap | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/bootstrap/tasks/main.yml",
"content": "- name: Create goma user\n user: name=goma state=present\n- name: Make goma a sudoer\n copy: src=90_goma dest=/etc/sudoers.d/90_goma owner=root group=root mode=440\n- include: authorized_keys.yml\n- name: Include known hosts\n copy: src=ssh_... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 603,
"all_permissive": false
} |
ansible_role | itao/wnw | 42f7a5ef04cc01715abc08e5cc5af6ae149b6159 | 0 | ansible/roles/db | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/db/tasks/ansible_postgres_dependencies.yml",
"content": "- name: Install ansible postgres dependencies\n apt: pkg=python-psycopg2 state=present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 87
},
{
"path": "ansible/roles/db/tasks/main.... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1120,
"all_permissive": false
} |
ansible_role | itao/wnw | 42f7a5ef04cc01715abc08e5cc5af6ae149b6159 | 0 | ansible/roles/nginx | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx/files/nginx.conf",
"content": "user goma goma;\n\nworker_processes 2;\npid /var/run/nginx.pid;\n\nevents {\n\tworker_connections 768;\n}\n\nhttp {\n\tsendfile on;\n\ttcp_nopush on;\n\ttcp_nodelay on;\n\tkeepalive_timeout 65;\n\ttypes_hash_max_size 2048;\n\n\tinclude /etc/nginx... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1600,
"all_permissive": false
} |
ansible_role | itao/wnw | 42f7a5ef04cc01715abc08e5cc5af6ae149b6159 | 0 | ansible/roles/python | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/python/tasks/main.yml",
"content": "- name: Install python packages via apt\n apt: pkg={{item}} state=present\n with_items:\n - python\n - python-pip\n- name: Install pip and virtualenv through pip\n pip: name={{item}} state=present\n with_items:\n - pip\n - virtuale... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 364,
"all_permissive": false
} |
ansible_role | itao/wnw | 42f7a5ef04cc01715abc08e5cc5af6ae149b6159 | 0 | ansible/roles/python_web | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/python_web/meta/main.yml",
"content": "dependencies:\n - {role: server}\n - {role: python}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 52
},
{
"path": "ansible/roles/python_web/tasks/main.yml",
"content": "- name: Install psycop... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 421,
"all_permissive": false
} |
ansible_role | itao/wnw | 42f7a5ef04cc01715abc08e5cc5af6ae149b6159 | 0 | ansible/roles/repo | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/repo/tasks/main.yml",
"content": "- name: Clone goma from github\n git: dest=/goma/deploy repo=<EMAIL>:gomaio/goma.git\n when: deployed and not fake\n sudo: yes\n sudo_user: goma\n- name: Symlink /goma/deploy -> /vagrant\n file: src=/vagrant dest=/goma/deploy owner=goma group=g... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 350,
"all_permissive": false
} |
ansible_role | itao/wnw | 42f7a5ef04cc01715abc08e5cc5af6ae149b6159 | 0 | ansible/roles/server | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/server/files/zshrc",
"content": "ZSH=$HOME/.oh-my-zsh\nZSH_THEME=robbyrussell\nDISABLE_AUTO_UPDATE='true'\nDISABLE_CORRECTION='true'\n\nplugins=(\n autojump,\n command_not_found,\n django,\n)\n\nsource $ZSH/oh-my-zsh.sh\n\nunsetopt share_history\nunsetopt correct_all\n\nexport ED... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1540,
"all_permissive": false
} |
ansible_role | itao/wnw | 42f7a5ef04cc01715abc08e5cc5af6ae149b6159 | 0 | ansible/roles/web | 7,513 | [
"no_license"
] | [
{
"path": "ansible/roles/web/tasks/ruby_dependencies.yml",
"content": "# - name: Install ruby\n# apt: pkg=ruby1.9.1 state=present\n# - name: Install sass\n# gem: name={{item}} user_install=no state=present\n# with_items:\n# - sass\n",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 8,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 13,
"total_bytes": 4305,
"all_permissive": false
} |
ansible_role | t-kawatsu/packer.eventmap | a7774a3b7214c678223a60d74152a7b18120271c | 0 | playbook/roles/common | 7,513 | [
"no_license"
] | [
{
"path": "playbook/roles/common/tasks/main.yml",
"content": "---\n- name: パッケージを最新に更新\n yum: name=* state=latest exclude=\"kernel* centos*\"\n become: yes\n tags: [os-setup]\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 110
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 110,
"all_permissive": false
} |
ansible_role | t-kawatsu/packer.eventmap | a7774a3b7214c678223a60d74152a7b18120271c | 0 | playbook/roles/nodejs | 7,513 | [
"no_license"
] | [
{
"path": "playbook/roles/nodejs/tasks/main.yml",
"content": "---\n- import_tasks: nvm.yml\n tags: [nvm]\n\n- import_tasks: nodejs.yml\n tags: [nodejs]\n\n- import_tasks: yarn.yml\n tags: [yarn]\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 128
},
{
"path": ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1838,
"all_permissive": false
} |
ansible_role | t-kawatsu/packer.eventmap | a7774a3b7214c678223a60d74152a7b18120271c | 0 | playbook/roles/postgresql | 7,513 | [
"no_license"
] | [
{
"path": "playbook/roles/postgresql/templates/etc/profile.d/postgresql.sh.j2",
"content": "PATH=$PATH:{{ postgresql_bin_directory }}\nexport PATH\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 54
},
{
"path": "playbook/roles/postgresql/tasks/install.yml",
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 781,
"all_permissive": false
} |
ansible_role | t-kawatsu/packer.eventmap | a7774a3b7214c678223a60d74152a7b18120271c | 0 | playbook/roles/rails | 7,513 | [
"no_license"
] | [
{
"path": "playbook/roles/rails/tasks/main.yml",
"content": "---\n- import_tasks: rails.yml\n tags: [rails]\n\n- import_tasks: project.yml\n tags: [app]\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 89
},
{
"path": "playbook/roles/rails/defaults/main.yml",
... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 737,
"all_permissive": false
} |
ansible_role | t-kawatsu/packer.eventmap | a7774a3b7214c678223a60d74152a7b18120271c | 0 | playbook/roles/ruby | 7,513 | [
"no_license"
] | [
{
"path": "playbook/roles/ruby/tasks/bundler.yml",
"content": "---\n- name: bundler インストール\n shell: /bin/bash -lc \"rbenv exec gem install bundler && rbenv rehash\"\n when:\n - ruby_selected.rc != 0\n become: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 149
... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3432,
"all_permissive": false
} |
ansible_role | russmckendrick/learn-ansible-fundamentals-of-ansible-2x | dc632dbe7559189aaf5321038bdc1a05476bb1b5 | 7 | chapter12/cloud/roles/user | 7,513 | [
"no_license"
] | [
{
"path": "chapter12/cloud/roles/user/tasks/main.yml",
"content": "---\n# tasks file for roles/user\n\n- name: ensure that the ansiable created users are present\n win_user:\n name: \"{{ ansible.username }}\"\n fullname: \"{{ ansible.username | capitalize }}\"\n password: \"{{ <PASSWORD> }}\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 279,
"all_permissive": false
} |
ansible_role | hanhwanglim/ansible | c6e2522f74e52163745071a054482b1f4903e2bb | 0 | roles/aws | 7,510 | [
"no_license"
] | [
{
"path": "roles/aws/vars/main.yml",
"content": "user: hh\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 9
},
{
"path": "roles/aws/tasks/main.yml",
"content": "- name: Download package\n ansible.builtin.get_url:\n url: \"https://awscli.amazonaws.com/awsc... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 543,
"all_permissive": false
} |
ansible_role | hanhwanglim/ansible | c6e2522f74e52163745071a054482b1f4903e2bb | 0 | roles/docker | 7,510 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "- name: Install Docker (Ubuntu)\n ansible.builtin.include_tasks: ubuntu.yml\n when: ansible_facts[\"distribution\"] == \"Ubuntu\"\n\n- name: Install Docker (Fedora)\n ansible.builtin.include_tasks: fedora.yml\n when: ansible_facts[\"distribution\"] ==... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2017,
"all_permissive": false
} |
ansible_role | hanhwanglim/ansible | c6e2522f74e52163745071a054482b1f4903e2bb | 0 | roles/node | 7,510 | [
"no_license"
] | [
{
"path": "roles/node/vars/main.yml",
"content": "nvm_version: \"0.39.4\"\nnode_version: \"20.5.1\"\nuser: hh\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 54
},
{
"path": "roles/node/tasks/main.yml",
"content": "- name: Install nvm\n ansible.builtin.shell... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 595,
"all_permissive": false
} |
ansible_role | hanhwanglim/ansible | c6e2522f74e52163745071a054482b1f4903e2bb | 0 | roles/postgresql | 7,510 | [
"no_license"
] | [
{
"path": "roles/postgresql/tasks/main.yml",
"content": "- name: Install PostgreSQL (Ubuntu)\n ansible.builtin.include_tasks: ubuntu.yml\n when: ansible_facts[\"distribution\"] == \"Ubuntu\"\n\n- name: Install PostgreSQL (Fedora)\n ansible.builtin.include_tasks: fedora.yml\n when: ansible_facts[\"distri... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 863,
"all_permissive": false
} |
ansible_role | hanhwanglim/ansible | c6e2522f74e52163745071a054482b1f4903e2bb | 0 | roles/python | 7,510 | [
"no_license"
] | [
{
"path": "roles/python/vars/main.yml",
"content": "user: hh\npython_version: \"3.11.4\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 34
},
{
"path": "roles/python/tasks/main.yml",
"content": "- name: Install Python dependencies (Debian base)\n when: ansi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2264,
"all_permissive": false
} |
ansible_role | hanhwanglim/ansible | c6e2522f74e52163745071a054482b1f4903e2bb | 0 | roles/rabbitmq | 7,510 | [
"no_license"
] | [
{
"path": "roles/rabbitmq/templates/rabbitmq.list.j2",
"content": "## Provides modern Erlang/OTP releases from a Cloudsmith mirror\n##\ndeb [signed-by=/usr/share/keyrings/rabbitmq.E495BB49CC4BBE5B.gpg] https://ppa1.novemberain.com/rabbitmq/rabbitmq-erlang/deb/ubuntu {{ ansible_distribution_release }} main\n... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3331,
"all_permissive": false
} |
ansible_role | hanhwanglim/ansible | c6e2522f74e52163745071a054482b1f4903e2bb | 0 | roles/redis | 7,510 | [
"no_license"
] | [
{
"path": "roles/redis/tasks/main.yml",
"content": "- name: Install Redis (Ubuntu)\n ansible.builtin.include_tasks: ubuntu.yml\n when: ansible_facts[\"distribution\"] == \"Ubuntu\"\n\n- name: Install Redis (Fedora)\n ansible.builtin.include_tasks: fedora.yml\n when: ansible_facts[\"distribution\"] == \"... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 782,
"all_permissive": false
} |
ansible_role | hanhwanglim/ansible | c6e2522f74e52163745071a054482b1f4903e2bb | 0 | roles/zsh | 7,510 | [
"no_license"
] | [
{
"path": "roles/zsh/tasks/main.yml",
"content": "- name: Install zsh\n ansible.builtin.apt:\n name: zsh\n state: present\n when: ansible_facts[\"distribution\"] == \"Ubuntu\"\n\n- name: Install zsh\n ansible.builtin.dnf:\n name: zsh\n state: present\n when: ansible_facts[\"distribution\"] =... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2309,
"all_permissive": false
} |
ansible_role | ThomasMiz/ansible-demo | e9c7df02474726a7b1344abc0aee7a4637341b0c | 0 | roles/nginx | 7,510 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n# tasks file for nginx\n\n- name: install web service\n ansible.builtin.package:\n name: nginx\n state: present\n update_cache: yes\n notify: start nginx\n\n- name: delete default config\n ansible.builtin.file:\n path: /etc/nginx/sites-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1354,
"all_permissive": false
} |
ansible_role | ThomasMiz/ansible-demo | e9c7df02474726a7b1344abc0aee7a4637341b0c | 0 | roles/nginx-firewall | 7,510 | [
"no_license"
] | [
{
"path": "roles/nginx-firewall/defaults/main.yml",
"content": "---\n# ansible-container and semaphore-container ips\nallowed_ssh_ips:\n - 172.16.238.240\n - 172.16.238.241\n\nallowed_http_ports:\n - http\n - https\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 147
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 892,
"all_permissive": false
} |
ansible_role | ThomasMiz/ansible-demo | e9c7df02474726a7b1344abc0aee7a4637341b0c | 0 | roles/rediservers | 7,510 | [
"no_license"
] | [
{
"path": "roles/rediservers/vars/main.yml",
"content": "---\n# vars file for rediservers\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 32
},
{
"path": "roles/rediservers/tasks/main.yml",
"content": "---\n# tasks file for rediservers\n\n- name: Ensure redis... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 637,
"all_permissive": false
} |
ansible_role | ThomasMiz/ansible-demo | e9c7df02474726a7b1344abc0aee7a4637341b0c | 0 | roles/webserver | 7,510 | [
"no_license"
] | [
{
"path": "roles/webserver/templates/env.j2",
"content": "LISTEN_AT=0.0.0.0:8080\nINSTANCE_NAME={{ inventory_hostname }}\nREDIS_HOSTS={{ groups['rediservers'] | map('regex_replace', '^(.*)$', 'redis://\\\\1:6379/') | join(';') }}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_b... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1583,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.