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 | seanjh/duplo | 504eb8a2da0bc4f612d5b5b0b045485617ec690e | 1 | roles/git | 4,477 | [
"no_license"
] | [
{
"path": "roles/git/tasks/main.yml",
"content": "---\n\n- name: create git config path\n file:\n path: ~/.config/git\n state: directory\n\n- name: git config\n template:\n src: gitconfig.j2\n dest: ~/.config/git/config\n mode: u=rwx,g=,o=\n\n- name: git ignore\n copy:\n src: gitignore.... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 511,
"all_permissive": false
} |
ansible_role | seanjh/duplo | 504eb8a2da0bc4f612d5b5b0b045485617ec690e | 1 | roles/go | 4,477 | [
"no_license"
] | [
{
"path": "roles/go/tasks/main.yml",
"content": "---\n\n- name: set golang paths\n set_fact:\n output_path: '/opt/go{{ golang_version }}'\n download_path: '/tmp/go{{ golang_version }}.tar.gz'\n\n- name: download golang distribution\n get_url:\n url: '{{ golang_url }}'\n dest: '/tmp/go{{ golang... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 262,
"all_permissive": false
} |
ansible_role | seanjh/duplo | 504eb8a2da0bc4f612d5b5b0b045485617ec690e | 1 | roles/java | 4,477 | [
"no_license"
] | [
{
"path": "roles/java/tasks/main.yml",
"content": "---\n\n- name: install java\n become: true\n apt:\n name: openjdk-8-jdk\n state: latest\n cache_valid_time: 3600\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 117
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 117,
"all_permissive": false
} |
ansible_role | seanjh/duplo | 504eb8a2da0bc4f612d5b5b0b045485617ec690e | 1 | roles/node | 4,477 | [
"no_license"
] | [
{
"path": "roles/node/defaults/main.yml",
"content": "node_version: 8.11.3\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 21
},
{
"path": "roles/node/tasks/main.yml",
"content": "---\n\n- name: install node requirements\n become: true\n apt:\n name: '{{... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2195,
"all_permissive": false
} |
ansible_role | seanjh/duplo | 504eb8a2da0bc4f612d5b5b0b045485617ec690e | 1 | roles/pyenv | 4,477 | [
"no_license"
] | [
{
"path": "roles/pyenv/tasks/main.yml",
"content": "---\n\n- name: install dependencies\n become: true\n apt:\n name: \"{{ packages }}\"\n cache_valid_time: 3600\n vars:\n packages:\n - make\n - build-essential\n - libssl-dev\n - libbz2-dev\n - zlibc\n - zlib1g-dev\n - libre... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 953,
"all_permissive": false
} |
ansible_role | seanjh/duplo | 504eb8a2da0bc4f612d5b5b0b045485617ec690e | 1 | roles/python | 4,477 | [
"no_license"
] | [
{
"path": "roles/python/files/python.sh",
"content": "export PATH=\"/opt/python3/current/bin:/opt/python/current/bin:$PATH\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 69
},
{
"path": "roles/python/tasks/install.yml",
"content": "---\n\n- name: set pytho... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2613,
"all_permissive": false
} |
ansible_role | seanjh/duplo | 504eb8a2da0bc4f612d5b5b0b045485617ec690e | 1 | roles/tmux | 4,477 | [
"no_license"
] | [
{
"path": "roles/tmux/tasks/main.yml",
"content": "---\n\n- name: install tmux\n become: true\n apt:\n name: tmux\n state: latest\n cache_valid_time: 3600 # 1 hour\n\n- name: clone dotfiles\n git:\n repo: 'https://github.com/seanjh/dotfiles.git'\n dest: ~/dotfiles\n\n- name: link tmux con... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 320,
"all_permissive": false
} |
ansible_role | seanjh/duplo | 504eb8a2da0bc4f612d5b5b0b045485617ec690e | 1 | roles/vim | 4,477 | [
"no_license"
] | [
{
"path": "roles/vim/tasks/main.yml",
"content": "---\n\n- name: install vim\n become: true\n apt:\n name: vim\n state: latest\n cache_valid_time: 3600\n\n- name: clone dotfiles\n git:\n repo: https://github.com/seanjh/dotfiles.git\n dest: ~/dotfiles\n\n- name: link vim config to dotfiles\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 559,
"all_permissive": false
} |
ansible_role | seanjh/duplo | 504eb8a2da0bc4f612d5b5b0b045485617ec690e | 1 | roles/zsh | 4,477 | [
"no_license"
] | [
{
"path": "roles/zsh/tasks/main.yml",
"content": "---\n\n- name: install zsh\n become: true\n apt:\n name: zsh\n cache_valid_time: 3600 # 1 hour\n state: latest\n\n- name: fetch oh-my-zsh\n git:\n repo: https://github.com/robbyrussell/oh-my-zsh.git\n dest: ~/.oh-my-zsh\n update: no\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 737,
"all_permissive": false
} |
ansible_role | picnics/IT385 | 7e476378272564dad23d093b71b1be531a29fc17 | 0 | Ansible/roles/cisco_default_route | 4,477 | [
"no_license"
] | [
{
"path": "Ansible/roles/cisco_default_route/tasks/main.yml",
"content": "---\n# configuring the default route\n- name: configuring default route \n ios_command:\n commands:\n - enable\n - conf t\n - ip route 0.0.0.0 0.0.0.0 192.168.0.250\n - exit",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 185,
"all_permissive": false
} |
ansible_role | picnics/IT385 | 7e476378272564dad23d093b71b1be531a29fc17 | 0 | Ansible/roles/config_NTP_cisco_router | 4,477 | [
"no_license"
] | [
{
"path": "Ansible/roles/config_NTP_cisco_router/tasks/main.yml",
"content": "---\n# configuring NTP client \n- name: configuring NTP\n ios_command:\n commands:\n - enable \n - conf t\n - ntp server 192.168.0.250\n - exit ",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 156,
"all_permissive": false
} |
ansible_role | picnics/IT385 | 7e476378272564dad23d093b71b1be531a29fc17 | 0 | Ansible/roles/config_consolePW | 4,477 | [
"no_license"
] | [
{
"path": "Ansible/roles/config_consolePW/tasks/main.yml",
"content": "---\n#login password config\n- name: setting local pw\n ios_command:\n commands:\n - enable \n - conf t\n - line console 0\n - password <PASSWORD>\n - local login\n - exit",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 189,
"all_permissive": false
} |
ansible_role | picnics/IT385 | 7e476378272564dad23d093b71b1be531a29fc17 | 0 | Ansible/roles/config_snmpv2_community_string | 4,477 | [
"no_license"
] | [
{
"path": "Ansible/roles/config_snmpv2_community_string/tasks/main.yml",
"content": "---\n#tasks for Configuring the community string for SNMPv2\n- name: set community string for SNMPv2\n ios_command:\n commands: \n - enable\n - conf t\n - snmp-server community GRCRocks! RW\n - exit"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 214,
"all_permissive": false
} |
ansible_role | ruk-na-Ziddi/basic-dynamic-inventory-ansible | 5d0259898d7b59790318d52da51ef5e467a214a1 | 0 | ansible-scripts/roles/commons | 4,437 | [
"no_license"
] | [
{
"path": "ansible-scripts/roles/commons/tasks/main.yml",
"content": "---\n- name: Create demo group\n become: yes\n become_user: root\n group: name=demo state=present\n\n- name: Create demo user\n become: yes\n become_user: root\n user: name=demo group=demo\n\n- name: Enabling nopassword for demo whe... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 393,
"all_permissive": false
} |
ansible_role | ruk-na-Ziddi/basic-dynamic-inventory-ansible | 5d0259898d7b59790318d52da51ef5e467a214a1 | 0 | ansible-scripts/roles/java | 4,437 | [
"no_license"
] | [
{
"path": "ansible-scripts/roles/java/vars/main.yml",
"content": "---\npackage_name: jdk-8u74-linux-x64\njdk_version: 1.8.0_74\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 59
},
{
"path": "ansible-scripts/roles/java/tasks/install.yml",
"content": "---\n- n... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 707,
"all_permissive": false
} |
ansible_role | ruk-na-Ziddi/basic-dynamic-inventory-ansible | 5d0259898d7b59790318d52da51ef5e467a214a1 | 0 | ansible-scripts/roles/service | 4,437 | [
"no_license"
] | [
{
"path": "ansible-scripts/roles/service/vars/main.yml",
"content": "---\napplication_source: /Users/AnkurKS/my-workspace/sample-springboot-rest\npackage_name: demo\napplication_dir: /opt/application\ndeploy_dir: \"{{application_dir}}/deployables\"\nlogs_dir: \"{{application_dir}}/logs\"\nconf_dir: \"{{appl... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2309,
"all_permissive": false
} |
ansible_role | ruk-na-Ziddi/basic-dynamic-inventory-ansible | 5d0259898d7b59790318d52da51ef5e467a214a1 | 0 | ansible-scripts/roles/ui | 4,437 | [
"no_license"
] | [
{
"path": "ansible-scripts/roles/ui/template/httpd.conf.j2",
"content": "ServerRoot \"/etc/httpd\"\nListen 8009 \nTraceEnable off\n\n<VirtualHost *:8009>\n ServerName localhost.demo\n LoadModule log_forensic_module modules/mod_log_forensic.so\n LoadModule unique_id_module modules/mod_unique_id.so\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 5434,
"all_permissive": false
} |
ansible_role | EricSchles/linuxpoetry | 47aedcc772bf1d27d7d8da794b55d938af0bff65 | 0 | deployment/roles/buildbot | 4,437 | [
"no_license"
] | [
{
"path": "deployment/roles/buildbot/handlers/main.yml",
"content": "---\n# handlers file for buildbot\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 33
},
{
"path": "deployment/roles/buildbot/templates/master.cfg.j2",
"content": "# -*- python -*-\n# ex: set... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 5091,
"all_permissive": false
} |
ansible_role | EricSchles/linuxpoetry | 47aedcc772bf1d27d7d8da794b55d938af0bff65 | 0 | deployment/roles/jenkins | 4,437 | [
"no_license"
] | [
{
"path": "deployment/roles/jenkins/meta/main.yml",
"content": "---\n\ndependencies: \n - avanov.jenkins\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 39
},
{
"path": "deployment/roles/jenkins/tasks/main.yml",
"content": "---\n\n- name: install jenkins-git... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 796,
"all_permissive": false
} |
ansible_role | EricSchles/linuxpoetry | 47aedcc772bf1d27d7d8da794b55d938af0bff65 | 0 | deployment/roles/webserver | 4,437 | [
"no_license"
] | [
{
"path": "deployment/roles/webserver/files/start.sh",
"content": "#!/usr/bin/env bash\n\nnginx;\nservice supervisor restart;\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 56
},
{
"path": "deployment/roles/webserver/files/kill_gunicorn.sh",
"content": "kill... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 3391,
"all_permissive": false
} |
ansible_role | mikewiebe/DCNM-Ansible-Pipline | 4be82b95a104f86538ce7f01fa9ece38f983b004 | 1 | roles/common | 4,437 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n- name: include fabric vrf config from files\n include_vars: vrf.yml\n\n- name: include fabric network from files\n include_vars: network.yml\n\n- name: include fabric interface config from files\n include_vars: interface.yml\n",
"license_type... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1643,
"all_permissive": false
} |
ansible_role | mikewiebe/DCNM-Ansible-Pipline | 4be82b95a104f86538ce7f01fa9ece38f983b004 | 1 | roles/fabric | 4,437 | [
"no_license"
] | [
{
"path": "roles/fabric/tasks/interface.yml",
"content": "---\n- name: interface | Create loopback interfaces\n cisco.dcnm.dcnm_interface:\n fabric: \"{{ fabric }}\"\n config: \"{{ interface.loopback }}\"\n state: merged\n when: interface.loopback != []\n tags:\n - interface\n\n- name: interf... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1828,
"all_permissive": false
} |
ansible_role | mikewiebe/DCNM-Ansible-Pipline | 4be82b95a104f86538ce7f01fa9ece38f983b004 | 1 | roles/reset | 4,437 | [
"no_license"
] | [
{
"path": "roles/reset/tasks/reset_interface.yml",
"content": "---\n- name: reset | delete loopback interfaces from {{ fabric }}\n cisco.dcnm.dcnm_interface:\n fabric: \"{{ fabric }}\"\n config: \"{{ interface.loopback }}\"\n state: deleted\n when: interface.loopback != []\n tags:\n - interfa... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1309,
"all_permissive": false
} |
ansible_role | mikewiebe/DCNM-Ansible-Pipline | 4be82b95a104f86538ce7f01fa9ece38f983b004 | 1 | roles/verify | 4,437 | [
"no_license"
] | [
{
"path": "roles/verify/tasks/main.yml",
"content": "---\n- name: verify | check if all VRFs are deployed\n block:\n - name: verify | query all VRFs from {{ fabric }}\n cisco.dcnm.dcnm_rest:\n path: \"/rest/top-down/fabrics/{{ fabric }}/vrfs\"\n method: GET\n register: result\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1082,
"all_permissive": false
} |
ansible_role | fghaiati/uda-fg-cicd | 61310a07d68dff433cc1250aa50d12a848067847 | 0 | .circleci/ansible/roles/configure-prometheus-node-exporter | 4,437 | [
"no_license"
] | [
{
"path": ".circleci/ansible/roles/configure-prometheus-node-exporter/tasks/main.yml",
"content": "\n- name: \"install node exporter.\"\n unarchive:\n # src: https://github.com/prometheus/node_exporter/releases/download/v0.17.0/node_exporter-0.17.0.linux-amd64.tar.gz\n src: https://github.com/prometh... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1037,
"all_permissive": false
} |
ansible_role | tgburrin/system_tools | 51e248cbf73ff0c7b31045b43c1d3c786fa5bb46 | 0 | vpn_build/roles/vpn | 4,437 | [
"no_license"
] | [
{
"path": "vpn_build/roles/vpn/templates/home.conf.j2",
"content": "connections {\n aws {\n version = 2\n mobike = no\n local_addrs = 172.30.0.5\n remote_addrs = %any\n proposals = aes256gcm16-sha512-modp4096\n\n local {\n \t id = ec2vpn.tgburrin.dynu.net\n auth... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 8532,
"all_permissive": false
} |
ansible_role | Nemental/ansible-collection-linux | 88280082b9d994d9fb1690067be4eb8da131c15a | 0 | roles/diskmgmt | 4,437 | [
"no_license"
] | [
{
"path": "roles/diskmgmt/tasks/disk.yml",
"content": "---\n- name: Ensure disk mount path exists\n ansible.builtin.file:\n path: \"{{ disk.path }}\"\n state: directory\n mode: '0755'\n recurse: true\n\n- name: Block device handling\n when: disk.fstype != 'nfs'\n block:\n - name: Check for... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2988,
"all_permissive": false
} |
ansible_role | Nemental/ansible-collection-linux | 88280082b9d994d9fb1690067be4eb8da131c15a | 0 | roles/packagemgmt | 4,437 | [
"no_license"
] | [
{
"path": "roles/packagemgmt/default/main.yml",
"content": "---\n\npackagemgmt_packages: []\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 30
},
{
"path": "roles/packagemgmt/tasks/main.yml",
"content": "---\n- name: Manage packages\n loop: \"{{ packagemgmt_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 303,
"all_permissive": false
} |
ansible_role | Nemental/ansible-collection-linux | 88280082b9d994d9fb1690067be4eb8da131c15a | 0 | roles/ufw | 4,437 | [
"no_license"
] | [
{
"path": "roles/ufw/defaults/main.yml",
"content": "---\n\nufw_rules: []\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 19
},
{
"path": "roles/ufw/tasks/main.yml",
"content": "---\n- name: Reset ufw\n tags: [never, reset]\n community.general.ufw:\n sta... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 590,
"all_permissive": false
} |
ansible_role | Nemental/ansible-collection-linux | 88280082b9d994d9fb1690067be4eb8da131c15a | 0 | roles/usermgmt | 4,437 | [
"no_license"
] | [
{
"path": "roles/usermgmt/tasks/main.yml",
"content": "---\n- name: Manage groups\n loop: \"{{ usermgmt_groups }}\"\n loop_control: {loop_var: group}\n ansible.builtin.group:\n name: \"{{ group.name }}\"\n gid: \"{{ group.gid | default(omit) }}\"\n state: \"{{ group.state | default(omit) }}\"\n\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 930,
"all_permissive": false
} |
ansible_role | mizzsig/ansible-sssignal2.2 | e097a3060a7e8b9cc86e45ec85690c9e84676b5e | 0 | provisioning/roles/nginx | 4,437 | [
"no_license"
] | [
{
"path": "provisioning/roles/nginx/tasks/main.yml",
"content": "---\n- name: create sssignal.conf\n template:\n src: templates/sssignal.conf\n dest: /etc/nginx/conf.d/sssignal.conf\n\n- name: remove default.conf\n file:\n path: /etc/nginx/conf.d/default.conf\n state: absent\n\n- name: create ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 553,
"all_permissive": false
} |
ansible_role | mizzsig/ansible-sssignal2.2 | e097a3060a7e8b9cc86e45ec85690c9e84676b5e | 0 | provisioning/roles/supervisor | 4,437 | [
"no_license"
] | [
{
"path": "provisioning/roles/supervisor/tasks/main.yml",
"content": "---\n- name: create sendCommentMail.conf\n template:\n src: templates/sendCommentMail.conf\n dest: /etc/supervisor/conf.d/sendCommentMail.conf",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 145
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 145,
"all_permissive": false
} |
ansible_role | anikhilchandra/ansible-roles-dev | 51ea0c4ed92923fc8f03267c5074930bfd5fcfad | 0 | roles/mongodb | 4,437 | [
"no_license"
] | [
{
"path": "roles/mongodb/tasks/main.yaml",
"content": " - name: copying mongodb repo to /etc/yum.repos.d/mongo.repo \n ansible.builtin.copy:\n src: mongodb.repo\n dest: /etc/yum.repos.d/mongo.repo\n\n - name: copy catalogue js\n ansible.builtin.copy:\n src: catalogue.js\n dest:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 861,
"all_permissive": false
} |
ansible_role | gejames/Linux-Webserver-Tower-Lab | 7d2bf7fc9a9e0e0ab0062f1da827973009b1d71e | 0 | roles/report | 4,437 | [
"no_license"
] | [
{
"path": "roles/report/tasks/main.yml",
"content": "---\n- name: Send Email with Report\n mail:\n host: smtp.gmail.com\n port: 587\n username: \"{{ gmail_account }}\"\n password: \"{{ <PASSWORD> }}\"\n to: \"{{ gmail_account }}\"\n subject: New Server Enabled {{ tower_inventory }}\n b... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 521,
"all_permissive": false
} |
ansible_role | TechDufus/FluxTools | ca10eff24af00bcb98f08f91c44beb5225d3a1dd | 2 | ansible/roles/common | 4,437 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/main.yaml",
"content": "---\n- name: Update APT packages\n apt:\n update_cache: yes\n\n- name: Upgrade APT packages\n apt:\n upgrade: 'yes' # <-- This expects a STRING for some reason...\n \n- name: Install APT packages\n apt:\n name: \"{{ item }}\"\n st... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1888,
"all_permissive": false
} |
ansible_role | TechDufus/FluxTools | ca10eff24af00bcb98f08f91c44beb5225d3a1dd | 2 | ansible/roles/node | 4,437 | [
"no_license"
] | [
{
"path": "ansible/roles/node/templates/update_flux.j2",
"content": "#!/bin/bash\n\nalias update='sudo apt-get update -y && sudo apt-get --with-new-pkgs upgrade -y && sudo apt autoremove -y'\nalias update-flux='pushd /home/{{ ansible_user }}/zelflux && git checkout . && git checkout master && git reset && g... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1524,
"all_permissive": false
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/R | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/R/tasks/main.yml",
"content": "---\n\n- name: Enable EPEL repo\n dnf:\n name: epel-release\n state: present\n\n- name: Test if PowerTools repository is enabled\n shell: \"dnf repolist | grep PowerTools\"\n args:\n warn: false\n ignore_errors: true... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 569,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/angular-cli | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/angular-cli/meta/main.yml",
"content": "---\ndependencies:\n - nodejs",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 28
},
{
"path": "vagrant/centos8-devbox/ansible/roles/angular-cli/defaults... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 175,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/cntlm | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/cntlm/tasks/cntlm_config.yml",
"content": "---\n\n- name: Hash proxy password\n shell: \"echo '{{ cntlm_config.password }}' | cntlm -H -d {{ cntlm_config.domain }} -u {{ cntlm_config.username }}\"\n register: cntlm_hash_cmd\n\n- set_fact:\n cntlm_pass_ntl... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1765,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/docker | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/docker/templates/daemon.json.j2",
"content": "{{ daemon | to_json }}\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 23
},
{
"path": "vagrant/centos8-devbox/ansible/roles/docker/files/docker-... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 3242,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/docker-images | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/docker-images/defaults/main.yml",
"content": "---\n\ndocker_images:\n - cassandra\n - confluentinc/cp-kafka\n - confluentinc/cp-zookeeper\n - docker.elastic.co/elasticsearch/elasticsearch:7.9.1\n - docker.elastic.co/logstash/logstash:7.9.1\n - docker.ela... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 591,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/docker-minio | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/docker-minio/defaults/main.yml",
"content": "---\n\nminio_access_key: \"minio\"\nminio_secret_key: \"changeit\"",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 59
},
{
"path": "vagrant/centos8-... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 489,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/docker-oracle | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/docker-oracle/files/docker-oracle-example/docker/startup/01_set_password.sh",
"content": "#!/bin.sh\n\nif [ ! -z \"${ORACLE_PWD}\" ]; then\n echo \"Setting database password...\"\n /opt/oracle/setPassword.sh \"${ORACLE_PWD}\"\nelse\n echo \"Database p... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 5026,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/dvc | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/dvc/tasks/dvc_config.yml",
"content": "---\n\n- name: Configure Vim to recognize DVC files as YAML\n blockinfile:\n create: true\n path: \"~{{ user }}/.vim\"\n owner: \"{{ user }}\"\n group: \"{{ user }}\"\n block: |\n \" DVC\n autocm... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 3528,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/gnome | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/gnome/tasks/main.yml",
"content": "---\n\n- name: Install the 'Server with GUI' environment group\n package:\n name: \"@Server with GUI\"\n state: present\n\n- name: Get default runlevel\n command: systemctl get-default\n register: default_runlevel\n\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 660,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/haskell | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/haskell/tasks/main.yml",
"content": "---\n\n- name: Install Haskell\n package:\n name: \"{{ item }}\"\n state: present\n with_items:\n - ghc\n - ghc-Cabal",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 121,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/instantclient | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/instantclient/templates/instantclient.sh.j2",
"content": "# /etc/profile.d/instantclient.sh - Managed by Ansible - do not change\nORACLE_SID={{ oracle_sid }}\nPATH={{ instantclient_dir }}/client64/bin:$PATH\nLD_LIBRARY_PATH={{ instantclient_dir }}/client64/lib... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1867,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/local_certs | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/local_certs/tasks/main.yml",
"content": "---\n\n- name: Add local Java trust store\n copy:\n src: jssecacerts\n dest: /etc/pki/java\n\n- name: Find Java JRE location\n shell: type -p java | xargs readlink -f | xargs dirname | xargs dirname\n register:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1299,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/maven | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/maven/templates/maven.sh.j2",
"content": "# /etc/profile.d/maven.sh - Managed by Ansible - do not change\nMAVEN_OPTS=-Xmx512m\nM2_HOME={{ m2_home }}\nPATH=$PATH:$M2_HOME/bin\nexport MAVEN_OPTS PATH",
"license_type": "permissive",
"detected_licenses": [... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 7794,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/minikube | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/minikube/defaults/main.yml",
"content": "---\n\nminikube_user: vagrant\nminikube_bin_url: https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64\nminikube_bin: /usr/local/bin/minikube\nkubectl_proxy_port: 8001\nminikube_create_cluster: fa... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2387,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/minio-client | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/minio-client/tasks/main.yml",
"content": "---\n\n- name: Install Minio Client (mc)\n get_url:\n url: \"{{ mc_bin_url }}\"\n dest: \"{{ mc_bin }}\"\n mode: '0755'\n\n- name: Configure MC settings\n include: mc_config.yml\n with_items: \"{{ mc_users ... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 834,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/nginx | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/nginx/tasks/main.yml",
"content": "---\n\n- name: Install Nginx\n package:\n name: nginx\n state: present\n\n- name: Ensure Nginx is started at boot and running\n service:\n name: nginx\n state: started\n enabled: yes\n\n- name: Configure SE L... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 317,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/nodejs | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/nodejs/tasks/main.yml",
"content": "---\n\n- name: Install Node.js 12\n package:\n name: '@nodejs:12'\n state: present\n\n- name: Create NPM settings\n include: npm_config.yml\n with_items: \"{{ (npm_config | default({})) | dict2items }}\"",
"lice... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 310,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/openjdk | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/openjdk/files/java.sh",
"content": "# /etc/profile.d/java.sh - Managed by Ansible - do not change\nexport JAVA_HOME=$(type -p java | xargs readlink -f | xargs dirname | xargs dirname)",
"license_type": "permissive",
"detected_licenses": [
"Apache... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 535,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/python3 | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/python3/tasks/python_config.yml",
"content": "---\n\n- name: Create Python environments directory\n file:\n path: \"~{{ user }}/{{venv_dir}}\"\n owner: \"{{ user }}\"\n group: \"{{ user }}\"\n state: directory\n mode: 0755\n\n- name: Create vir... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 710,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/scala | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/scala/tasks/sbt_config.yml",
"content": "---\n\n- name: Create .sbt directory\n file:\n path: \"~{{ user }}/.sbt\"\n owner: \"{{ user }}\"\n group: \"{{ user }}\"\n state: directory\n mode: 0755\n\n- name: Create repositories config\n template... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 991,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/sdkman | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/sdkman/defaults/main.yml",
"content": "---\n\nsdkman_users:\n - vagrant\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 31
},
{
"path": "vagrant/centos8-devbox/ansible/roles/sdkman/tasks/sdk... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 350,
"all_permissive": true
} |
ansible_role | casparderksen/packer-kickstart-vagrant | e06b8604df25f0208587d8882696ec2f8f342f4c | 8 | vagrant/centos8-devbox/ansible/roles/tools | 4,437 | [
"permissive"
] | [
{
"path": "vagrant/centos8-devbox/ansible/roles/tools/meta/main.yml",
"content": "---\ndependencies:\n - python3",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 29
},
{
"path": "vagrant/centos8-devbox/ansible/roles/tools/tasks/main.yml",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 667,
"all_permissive": true
} |
ansible_role | rodjstewart/adv_ansible | 0902e123e1a413c7d556704c7c0b68599ff8b512 | 0 | good-ansible/roles/OSPInventory | 4,437 | [
"no_license"
] | [
{
"path": "good-ansible/roles/OSPInventory/tasks/main.yml",
"content": "---\n# Load in memory inventory from OSP\n\n- name: Create in-memory inventory\n add_host:\n name: \"{{ public_v4 }}\"\n groups: osp_instances\n foo: 42",
"license_type": "no_license",
"detected_licenses": [],
"siz... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 153,
"all_permissive": false
} |
ansible_role | rodjstewart/adv_ansible | 0902e123e1a413c7d556704c7c0b68599ff8b512 | 0 | good-ansible/roles/common | 4,437 | [
"no_license"
] | [
{
"path": "good-ansible/roles/common/tasks/main.yml",
"content": "---\n# tasks file for common\n\n- name: Copy Repository\n copy:\n content: \"{{ CONTENT_FOR_REPO_FILE }}\"\n dest: /etc/yum.repos.d/open_three-tier-app.repo\n owner: root\n group: root\n mode: '0644'",
"license_type": "no_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 204,
"all_permissive": false
} |
ansible_role | rodjstewart/adv_ansible | 0902e123e1a413c7d556704c7c0b68599ff8b512 | 0 | good-ansible/roles/db-tier | 4,437 | [
"no_license"
] | [
{
"path": "good-ansible/roles/db-tier/tasks/main.yml",
"content": "---\n# tasks file for db-tier\n\n- name: install PostgreSQL\n package: \n name: postgresql-server\n state: latest\n\n- name: enable postgresql at boot\n service:\n name: postgresql\n enabled: yes\n notify: start postgres\n\n- ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 721,
"all_permissive": false
} |
ansible_role | rodjstewart/adv_ansible | 0902e123e1a413c7d556704c7c0b68599ff8b512 | 0 | good-ansible/roles/lb-tier | 4,437 | [
"no_license"
] | [
{
"path": "good-ansible/roles/lb-tier/tasks/main.yml",
"content": "---\n# tasks file for lb-tier\n\n- name: http\n package:\n name: '{{ item }}'\n state: latest\n with_items:\n - httpie\n - haproxy\n\n- name: enable HAProxy\n service:\n name: haproxy\n state: started\n\n- name: configur... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 380,
"all_permissive": false
} |
ansible_role | rodjstewart/adv_ansible | 0902e123e1a413c7d556704c7c0b68599ff8b512 | 0 | good-ansible/roles/tests | 4,437 | [
"no_license"
] | [
{
"path": "good-ansible/roles/tests/tasks/main.yml",
"content": "---\n\n# tests for the 3 tier app deployment\n\n- name: test http connection\n uri:\n url: \"http://{{ hostvars[item].inventory_hostname }}\"\n loop: \"{{ groups['frontends'] }}\"\n",
"license_type": "no_license",
"detected_licens... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 174,
"all_permissive": false
} |
ansible_role | ggermashev/sf-ansible | 2d0b36f60067b4e1666eade2109b27b116e57f69 | 0 | ansible/src/roles/apache | 4,437 | [
"no_license"
] | [
{
"path": "ansible/src/roles/apache/vars/main.yml",
"content": "---\napp_user: \"root\"\nhttp_host: \"192.168.3.11\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 47
},
{
"path": "ansible/src/roles/apache/tasks/main.yml",
"content": "---\n- name: Install Ap... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 264,
"all_permissive": false
} |
ansible_role | ggermashev/sf-ansible | 2d0b36f60067b4e1666eade2109b27b116e57f69 | 0 | ansible/src/roles/nginx | 4,437 | [
"no_license"
] | [
{
"path": "ansible/src/roles/nginx/tasks/main.yml",
"content": "---\n- name: Install Nginx\n apt:\n name=nginx\n state=latest\n notify:\n - nginx systemd\n\n- name: Replace nginx.conf\n template:\n src=templates/nginx.conf.j2\n dest=/etc/nginx/nginx.conf",
"license_type": "no_license",... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 197,
"all_permissive": false
} |
ansible_role | xadlien/rpi-prometheus | 39bcee90d8d9f10aae43a6977bd1febc8ee0da3e | 0 | playbooks/roles/node_exporter | 4,437 | [
"no_license"
] | [
{
"path": "playbooks/roles/node_exporter/tasks/main.yml",
"content": "- name: Download node exporter\n get_url:\n url: \"https://github.com/prometheus/node_exporter/releases/download/v{{ ne_version }}/node_exporter-{{ ne_version }}.linux-{{ arch }}.tar.gz\"\n dest: \"/tmp/node_exporter-{{ ne_version ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1207,
"all_permissive": false
} |
ansible_role | xadlien/rpi-prometheus | 39bcee90d8d9f10aae43a6977bd1febc8ee0da3e | 0 | playbooks/roles/prometheus_server | 4,437 | [
"no_license"
] | [
{
"path": "playbooks/roles/prometheus_server/tasks/main.yml",
"content": "- name: Download Prometheus\n get_url:\n url: \"https://github.com/prometheus/prometheus/releases/download/v{{ prom_version }}/prometheus-{{ prom_version }}.linux-{{ arch }}.tar.gz\"\n dest: \"/tmp/prometheus-{{ prom_version }}... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1297,
"all_permissive": false
} |
ansible_role | mruzmatova/projectservers | cab76137f182d98ecac96693e6e48dc3f6a66d8c | 0 | nfs-project/roles/nfs-client8 | 4,437 | [
"no_license"
] | [
{
"path": "nfs-project/roles/nfs-client8/tasks/main.yml",
"content": "---\n - name: install nfs-utils\n become: true\n yum: \n name: \n - nfs-utils \n - nfs4-acl-tools\n state: latest\n\n - name: Restart NFS services in a loop\n service:\n name: \"{{ item }}\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1026,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/ansible-prereq | 4,437 | [
"no_license"
] | [
{
"path": "roles/ansible-prereq/tasks/main.yml",
"content": "---\n# This playbook deploys basic packages required by ansible\n- name: -> install_ansible_prereq\n action: apt pkg=${item} state=installed\n with_items:\n - python-apt\n - python-simplejson \n tags: install_ansible_prereq\n",
"lic... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 228,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/apache2 | 4,437 | [
"no_license"
] | [
{
"path": "roles/apache2/handlers/main.yml",
"content": "---\n# Handlers for iptables-persistent\n- name: reload iptables-persistent\n service: name=iptables-persistent state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 126
},
{
"path": "roles/apach... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2365,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/apt | 4,437 | [
"no_license"
] | [
{
"path": "roles/apt/tasks/main.yml",
"content": "---\n- name: apt_install\n action: apt pkg={{ item }} state=installed\n with_items: \"{{ pkg_list }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 101
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 101,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/booktype | 4,437 | [
"no_license"
] | [
{
"path": "roles/booktype/meta/main.yml",
"content": "---\ndependencies:\n- { role: apt, pkg_list: ['git-core', 'python', 'python-dev', 'sqlite3', 'python-pip', 'python-virtualenv', 'redis-server', 'libxml2-dev', 'libxslt1-dev', 'libxslt1.1'] }\n- { role: supervisor } \n- { role: nginx }\n",
"license_ty... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1072,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/check_mk-agent | 4,437 | [
"no_license"
] | [
{
"path": "roles/check_mk-agent/handlers/main.yml",
"content": "- name: reload iptables-persistent\n service: name=iptables-persistent state=reloaded\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 86
},
{
"path": "roles/check_mk-agent/tasks/main.yml",
"cont... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3043,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/check_mk-server | 4,437 | [
"no_license"
] | [
{
"path": "roles/check_mk-server/handlers/main.yml",
"content": "---\n- name: reload check_mk\n action: shell /usr/bin/check_mk -O\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
},
{
"path": "roles/check_mk-server/templates/etc/check_mk/main.mk.j2",
"con... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 8006,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/collectd | 4,437 | [
"no_license"
] | [
{
"path": "roles/collectd/tasks/main.yml",
"content": "# ansible-playbook main.yml -vvv --tags=\"fetch_collectd_deb,install_collectd_deb,collectd_init_script,setup_collectd_config\" --extra-vars=\"host=all\"\n---\n- name: fetch_collectd_deb\n# action: shell wget http://apt.okserver.org/{{ arch }}/collectd-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3431,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/cron | 4,437 | [
"no_license"
] | [
{
"path": "roles/cron/tasks/main.yml",
"content": "---\n# This play sets up cronjobs\n- name: add_pgbackup_cron\n action: copy src=etc/cron.daily/pg_backup dest=/etc/cron.daily/pg_backup\n when: backup_postgres is defined and inventory_hostname in groups['dbservers']\n tags: add_pgbackup_cron\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 754,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/etherpad-lite | 4,437 | [
"no_license"
] | [
{
"path": "roles/etherpad-lite/tasks/main.yml",
"content": "---\n- name: add nodejs ppa repo\n action: apt_repository repo=ppa:chris-lea/node.js\n\n- name: install nodejs\n action: apt pkg=nodejs state=installed update_cache=yes\n\n- name: create etherpad-lite database\n action: mysql_db name=etherpad-li... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1790,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/graphite | 4,437 | [
"no_license"
] | [
{
"path": "roles/graphite/files/dashboard_json_files/mail-metrics.json",
"content": "[\n {\n \"bgcolor\": \"000000\",\n \"target\": [\n \"aliasByNode(mail_metrics.exim.to_*, 2)\"\n ],\n \"fgcolor\": \"FFFFFF\",\n \"title\": \"mails in queue\"\n },\n {\n \"bgcolor\": \"000000\",\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 13277,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/iptables-persistent | 4,437 | [
"no_license"
] | [
{
"path": "roles/iptables-persistent/tasks/main.yml",
"content": "---\n# This playbook installs the iptables-persistant package\n- name: install_iptables_persistent\n environment:\n DEBIAN_FRONTEND: noninteractive\n action: apt pkg=iptables-persistent state=present\n notify: restart iptables-persiste... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 617,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/motd | 4,437 | [
"no_license"
] | [
{
"path": "roles/motd/tasks/main.yml",
"content": "#motd fun - adds the ansible motd the first time, and updates it on each ansible run.\n#motd is defined as a var in inventory/group_vars/\n- name: check_motd_tail_supported\n action: shell test -f /etc/update-motd.d/99-footer\n ignore_errors: True\n regi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1190,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/munin-node | 4,437 | [
"no_license"
] | [
{
"path": "roles/munin-node/tasks/main.yml",
"content": "---\n# This playbook installs the munin-node client package\n- name: -> install_munin-node\n action: apt pkg=munin-node state=latest\n tags: install_munin-node\n\n- name: -> add_munin_user\n action: user name=munin group=munin state=present shell=/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1750,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/munin-server | 4,437 | [
"no_license"
] | [
{
"path": "roles/munin-server/templates/munin.conf.j2",
"content": "# Example configuration file for Munin, generated by 'make build'\n\n# The next three variables specifies where the location of the RRD\n# databases, the HTML output, and the logs, severally. They all\n# must be writable by the user runnin... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 4113,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/mysql | 4,437 | [
"no_license"
] | [
{
"path": "roles/mysql/meta/main.yml",
"content": "---\ndependencies:\n- { role: apt, pkg_list: ['python-mysqldb', 'python-apt', 'python-pycurl'] }\n- { role: scripts } #adds backup script\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 135
},
{
"path": "roles/my... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2753,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/nagios-client | 4,437 | [
"no_license"
] | [
{
"path": "roles/nagios-client/tasks/main.yml",
"content": "---\n# This playbook deploys nagios plugins for monitoring purposes.\n- name: -> install_nagios_plugins\n action: apt pkg=${item} state=installed\n with_items:\n - nagios-plugins\n - nagios-plugins-standard\n - nagios-plugins-basic\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 572,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/nagios-server | 4,437 | [
"no_license"
] | [
{
"path": "roles/nagios-server/tasks/main.yml",
"content": "---\n- name: nagios_config\n action: copy src={{ item }} dest=/etc/nagios3/\n notify: reload nagios\n with_fileglob: \n - etc/nagios3/*\n tags: nagios_config\n\n- name: nagios_config_confd\n action: copy src={{ item }} dest=/etc/nagios3/co... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 484,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/nginx | 4,437 | [
"no_license"
] | [
{
"path": "roles/nginx/handlers/main.yml",
"content": "---\n- name: reload nginx\n action: shell /etc/init.d/nginx configtest && /etc/init.d/nginx reload\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 98
},
{
"path": "roles/nginx/files/etc/nginx/s095.okserver.o... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 15,
"total_bytes": 15817,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/nodejs | 4,437 | [
"no_license"
] | [
{
"path": "roles/nodejs/meta/main.yml",
"content": "---\ndependencies:\n- { role: apt, pkg_list: [ 'python-pycurl' ] }\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 66
},
{
"path": "roles/nodejs/tasks/main.yml",
"content": "---\n- name: add nodejs ppa rep... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 284,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/ntpd | 4,437 | [
"no_license"
] | [
{
"path": "roles/ntpd/tasks/main.yml",
"content": "#depends on timezone = being defined under inventory/host_vars or inventory/group_vars \n---\n\n- name: setup_timezone\n file: src=/usr/share/zoneinfo/{{ timezone }} dest=/etc/timezone state=link owner=root group=root force=yes\n when: timezone is defined... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1584,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/php-fpm | 4,437 | [
"no_license"
] | [
{
"path": "roles/php-fpm/handlers/main.yml",
"content": "---\n# Handlers \n- name: restart php5-fpm\n service: name=php5-fpm state=restart\n\n- name: reload php5-fpm\n service: name=php5-fpm state=reload\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 143
},
{
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 703,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/role.skel | 4,437 | [
"no_license"
] | [
{
"path": "roles/role.skel/tasks/main.yml",
"content": "---\n# This playbook deploys nagios plugins for monitoring purposes.\n- name: -> install_nagios_plugins\n action: apt pkg=nagios-plugins state=installed\n tags: install_nagios_plugins\n\n- name: -> add_monitoring_group\n action: group name=${item} s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 470,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/rsnapshot | 4,437 | [
"no_license"
] | [
{
"path": "roles/rsnapshot/tasks/main.yml",
"content": "#meta/main.yml installs the rsnapshot package.\n---\n- name: create_backup_directory\n action: file path={{ snapshot_root }} owner=root group=root state=directory\n tags: create_backup_directory \n\n- name: rsnapshot_config\n action: template src=et... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 290,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/scripts | 4,437 | [
"no_license"
] | [
{
"path": "roles/scripts/files/opt/scripts/check_mk/check_rackspace_snapshots",
"content": "#!/usr/bin/python2.7\n\n#import Imagemanager from openstack.compute\nimport time\nimport re\nfrom openstack.compute import Compute\nimport configparser\n\nconfig = configparser.RawConfigParser()\nconfig.read('/opt/sc... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 35373,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/squid3 | 4,437 | [
"no_license"
] | [
{
"path": "roles/squid3/handlers/main.yml",
"content": "- name: reload squid3\n service: name=squid3 state=reloaded\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 60
},
{
"path": "roles/squid3/files/etc/squid3/Makefile",
"content": "install:\n\tsquid3 -k pa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 514,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/statsd | 4,437 | [
"no_license"
] | [
{
"path": "roles/statsd/tasks/main.yml",
"content": "---\n- name: fetch_statsd_deb\n action: get_url url=http://apt.okserver.org/x86_64/statsd_0.6.0-ppa2~precise_amd64.deb dest=/opt/statsd_0.6.0-ppa2~precise_amd64.deb force=yes\n tags: \n - fetch_statsd_deb\n - statsd\n\n- name: install_statsd_deb... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1169,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/supervisor | 4,437 | [
"no_license"
] | [
{
"path": "roles/supervisor/handlers/main.yml",
"content": "---\n- name: restart supervisor\n service: name=supervisor state=restarted\n\n- name: reread supervisor_confd\n action: shell supervisorctl reread && supervisorctl update\n",
"license_type": "no_license",
"detected_licenses": [],
"siz... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 809,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/sysstat | 4,437 | [
"no_license"
] | [
{
"path": "roles/sysstat/tasks/main.yml",
"content": "---\n# This playbook deploys nagios plugins for monitoring purposes.\n- name: -> install_sysstat\n action: apt pkg=sysstat state=installed\n tags: install_sysstat\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 161
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 161,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/update-notifier | 4,437 | [
"no_license"
] | [
{
"path": "roles/update-notifier/tasks/main.yml",
"content": "---\n# This playbook installs the update-notifier-common client package\n- name: -> install_update-notifier-common\n action: apt pkg=update-notifier-common state=latest\n tags: install_update-notifier-common\n",
"license_type": "no_license"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 206,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/users | 4,437 | [
"no_license"
] | [
{
"path": "roles/users/tasks/main.yml",
"content": "---\n#adds sysadmin users\n- name: -> add_group\n action: group name=${item} state=present\n with_items:\n - sysadmin\n - monitoring\n tags: add_group\n\n\n- name: -> add_user\n action: user name=${item.name} group=${item.group} state=present she... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1784,
"all_permissive": false
} |
ansible_role | ravibhure/sysconfig-ansible | 34049030b41e9f7af3700d4a691844c9c2143e2e | 1 | roles/varnish | 4,437 | [
"no_license"
] | [
{
"path": "roles/varnish/templates/secret.j2",
"content": "{{ hostvars[inventory_hostname]_varnish_secret }}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 50
},
{
"path": "roles/varnish/tasks/main.yml",
"content": "---\n- name: install_varnish\n action: ap... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 685,
"all_permissive": false
} |
ansible_role | okko123/ansible-playbook-role | 796f496ec3024928413afffe86962eca18036eee | 0 | roles/common | 4,437 | [
"no_license"
] | [
{
"path": "roles/common/templates/applogs.j2",
"content": "/data/logs/erc/*.log /data/logs/php/*.log {\n daily\n dateext\n copytruncate\n notifempty\n compress\n rotate 7\n missingok\n}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 140
},
{
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2578,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.