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 | okko123/ansible-playbook-role | 796f496ec3024928413afffe86962eca18036eee | 0 | roles/user | 4,437 | [
"no_license"
] | [
{
"path": "roles/user/tasks/main.yml",
"content": "---\n- name: \"create user groups\"\n group: \"name={{ item.gname }} gid={{ item.gid }} state=present\" \n with_items: \n - { gname: 'www', gid: '500' }\n - { gname: 'mongod', gid: '510' }\n - { gname: 'sudo', gid: '520' }\n\n- name: \"create users... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 453,
"all_permissive": false
} |
ansible_role | szymon-planeta/workstation-setup | 58c026aad4a214d0b66bac639e852c479547c6fe | 0 | roles/apps | 4,417 | [
"no_license"
] | [
{
"path": "roles/apps/tasks/ripgrep.yml",
"content": "- name: Check if ripgrep is installed\n shell: command -v ripgrep >/dev/null 2>&1\n register: ripgrep_check\n changed_when: false\n failed_when: false\n\n- name: Install ripgrep\n become: yes\n apt:\n deb: https://github.com/BurntSushi/ripgrep/r... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1651,
"all_permissive": false
} |
ansible_role | szymon-planeta/workstation-setup | 58c026aad4a214d0b66bac639e852c479547c6fe | 0 | roles/apt-packages | 4,417 | [
"no_license"
] | [
{
"path": "roles/apt-packages/tasks/main.yml",
"content": "- name: Add apt repositories\n become: yes\n apt_repository:\n repo: \"{{ item }}\"\n state: present\n with_items:\n - ppa:tista/adapta\n - ppa:papirus/papirus\n - ppa:lazygit-team/release\n - ppa:unity7maintainers/unity7-deskto... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1229,
"all_permissive": false
} |
ansible_role | szymon-planeta/workstation-setup | 58c026aad4a214d0b66bac639e852c479547c6fe | 0 | roles/configs | 4,417 | [
"no_license"
] | [
{
"path": "roles/configs/files/.tmux.conf",
"content": "# Remap Prefix\nunbind C-b\nset-option -g prefix C-s\nbind-key C-s send-prefix\n\n# Split panes using | and -\nunbind '\"'\nunbind %\nbind | split-window -h\nbind - split-window -v\n\n# History limit\nset-option -g history-limit 10000\n\n# Vi\nset-wind... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 7356,
"all_permissive": false
} |
ansible_role | szymon-planeta/workstation-setup | 58c026aad4a214d0b66bac639e852c479547c6fe | 0 | roles/dconf | 4,417 | [
"no_license"
] | [
{
"path": "roles/dconf/tasks/settings.yml",
"content": "- name: Set xsettings\n dconf:\n key: \"/org/gnome/settings-daemon/plugins/xsettings/overrides\"\n value: \"{'Gtk/ShellShowsAppMenu': <0>, 'Gtk/DecorationLayout': <'menu: minimize,maximize,close'>}\"\n\n- name: Numlock on\n dconf:\n key: \... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 18104,
"all_permissive": false
} |
ansible_role | szymon-planeta/workstation-setup | 58c026aad4a214d0b66bac639e852c479547c6fe | 0 | roles/desktop-env | 4,417 | [
"no_license"
] | [
{
"path": "roles/desktop-env/tasks/files.yml",
"content": "- name: Copy 50-budgie.conf\n become: yes\n copy:\n src: 50-budgie.conf\n dest: /etc/lightdm/lightdm.conf.d/50-budgie.conf\n owner: root\n group: root\n mode: u=rw,g=r,o=r\n\n- name: Copy lightdm.conf\n become: yes\n copy:\n sr... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1749,
"all_permissive": false
} |
ansible_role | szymon-planeta/workstation-setup | 58c026aad4a214d0b66bac639e852c479547c6fe | 0 | roles/user | 4,417 | [
"no_license"
] | [
{
"path": "roles/user/tasks/main.yml",
"content": "- name: Create user {{ user }}\n become: yes\n user:\n name: \"{{ user }}\"\n groups: \"{{ user }},adm,cdrom,sudo,dip,plugdev\"\n shell: /usr/bin/zsh\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 152
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 152,
"all_permissive": false
} |
ansible_role | skoval67/infra_ac4 | 13e0a72b8bc34b18890cad07801d5cf96c4e7a7e | 0 | ansible/roles/docker | 4,417 | [
"no_license"
] | [
{
"path": "ansible/roles/docker/handlers/main.yml",
"content": "---\n# handlers file for skill\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 30
},
{
"path": "ansible/roles/docker/files/test.py",
"content": "import testinfra\n\ndef test_package(host):\n p... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1987,
"all_permissive": false
} |
ansible_role | skoval67/infra_ac4 | 13e0a72b8bc34b18890cad07801d5cf96c4e7a7e | 0 | ansible/roles/osupgrade | 4,417 | [
"no_license"
] | [
{
"path": "ansible/roles/osupgrade/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - osupgrade\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 68
},
{
"path": "ansible/roles/osupgrade/defaults/main.yml",
"content": "--... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1724,
"all_permissive": false
} |
ansible_role | skoval67/infra_ac4 | 13e0a72b8bc34b18890cad07801d5cf96c4e7a7e | 0 | ansible/roles/setup-app | 4,417 | [
"no_license"
] | [
{
"path": "ansible/roles/setup-app/templates/default.conf.j2",
"content": "server {\n listen 80;\n server_name localhost;\n\n location / {\n{% for upstream in [upstreams[inventory_hostname]] %}\n proxy_pass http://{{ upstream }};\n{% endfor %}\n }\n\n # redirect server error pag... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1204,
"all_permissive": false
} |
ansible_role | skoval67/infra_ac4 | 13e0a72b8bc34b18890cad07801d5cf96c4e7a7e | 0 | ansible/roles/setup-db | 4,417 | [
"no_license"
] | [
{
"path": "ansible/roles/setup-db/templates/docker-compose.yaml.j2",
"content": "services:\n db:\n build: app\n container_name: db\n environment:\n KEY_NAME: {{ ansible_hostname }}\n restart: always\n ports:\n - '80:8888'\n",
"license_type": "no_license",
"detected_licenses... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 1272,
"all_permissive": false
} |
ansible_role | skoval67/infra_ac4 | 13e0a72b8bc34b18890cad07801d5cf96c4e7a7e | 0 | ansible/roles/traefik | 4,417 | [
"no_license"
] | [
{
"path": "ansible/roles/traefik/vars/main.yml",
"content": "---\n# vars file for traefik\nwork_dir: /opt/traefic\nconfig_files:\n - { src: docker-compose.yaml.j2, dest: \"{{ work_dir }}/docker-compose.yaml\" }\n - { src: config.yaml.j2, dest: \"{{ work_dir }}/config/config.yaml\" }\n",
"license_type"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1331,
"all_permissive": false
} |
ansible_role | hnbnh/dotfiles | 31b3bdccfcfef13fbf25cda8bedd5a09927b7a05 | 31 | ansible/roles/bin | 4,417 | [
"no_license"
] | [
{
"path": "ansible/roles/bin/tasks/main.yml",
"content": "- name: Chmod bin\n file:\n path: ~/dotfiles/bin/\n recurse: yes\n mode: 0755\n\n- name: Create ~/.local/bin\n file:\n path: ~/.local/bin\n state: directory\n\n- name: Find bin files\n find:\n paths: ~/dotfiles/bin/\n recurse:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 489,
"all_permissive": false
} |
ansible_role | hnbnh/dotfiles | 31b3bdccfcfef13fbf25cda8bedd5a09927b7a05 | 31 | ansible/roles/dotfiles | 4,417 | [
"no_license"
] | [
{
"path": "ansible/roles/dotfiles/tasks/main.yml",
"content": "- name: Create ~/.config\n file:\n path: ~/.config\n state: directory\n\n- name: Find .config files\n find:\n paths: ~/dotfiles/config/\n recurse: no\n file_type: any\n hidden: yes\n register: dot_config\n\n- name: ~/.config... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1361,
"all_permissive": false
} |
ansible_role | hnbnh/dotfiles | 31b3bdccfcfef13fbf25cda8bedd5a09927b7a05 | 31 | ansible/roles/fonts | 4,417 | [
"no_license"
] | [
{
"path": "ansible/roles/fonts/tasks/main.yml",
"content": "- name: Download Nerd Fonts\n include_tasks: download.yml\n loop:\n - FiraCode\n - DejaVuSansMono\n - JetBrainsMono\n - VictorMono\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 139
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 139,
"all_permissive": false
} |
ansible_role | hnbnh/dotfiles | 31b3bdccfcfef13fbf25cda8bedd5a09927b7a05 | 31 | ansible/roles/packages | 4,417 | [
"no_license"
] | [
{
"path": "ansible/roles/packages/tasks/post-install.yml",
"content": "- name: Create docker group\n become: true\n group:\n name: docker\n state: present\n\n- name: Add user to some groups\n become: true\n user:\n name: \"{{ lookup('env', 'USER') }}\"\n groups: \"{{ item.groups }}\"\n ap... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 3578,
"all_permissive": false
} |
ansible_role | hnbnh/dotfiles | 31b3bdccfcfef13fbf25cda8bedd5a09927b7a05 | 31 | ansible/roles/system | 4,417 | [
"no_license"
] | [
{
"path": "ansible/roles/system/tasks/main.yml",
"content": "- name: Customize /etc/environment\n become: true\n lineinfile:\n dest: \"/etc/environment\"\n state: present\n regexp: \"^{{ item.key }}=\"\n line: \"{{ item.key }}={{ item.value }}\"\n loop:\n - key: EDITOR\n value: nvim\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1594,
"all_permissive": false
} |
ansible_role | dariko/heat-monitoring | a8fd5a18965f1d505c0f8e368e41eb00960eebf7 | 0 | roles/grafana | 4,417 | [
"no_license"
] | [
{
"path": "roles/grafana/templates/grafana_default_config.yml",
"content": "{% if grafana_ldap_config is defined %}\n[auth.ldap]\nenabled = True\nconfig_file = /etc/grafana/ldap.toml\n{% endif %}\n\n[server]\nhttp_port = 80\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes":... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 3994,
"all_permissive": false
} |
ansible_role | dariko/heat-monitoring | a8fd5a18965f1d505c0f8e368e41eb00960eebf7 | 0 | roles/prometheus | 4,417 | [
"no_license"
] | [
{
"path": "roles/prometheus/tasks/rolling_restart_node.yml",
"content": "- service:\n name: prometheus\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 63
},
{
"path": "roles/prometheus/tasks/main.yml",
"content": "- name: ... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2665,
"all_permissive": false
} |
ansible_role | ansible/awx-resource-operator | b4c2f12c18925688f1e5e9f8d0aef853ddc5001a | 50 | roles/credential | 4,417 | [
"no_license"
] | [
{
"path": "roles/credential/handlers/main.yml",
"content": "---\n# handlers file for AnsibleCredential\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "roles/credential/tasks/main.yml",
"content": "---\n- name: Read AnsibleCredentials info\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 7232,
"all_permissive": false
} |
ansible_role | ansible/awx-resource-operator | b4c2f12c18925688f1e5e9f8d0aef853ddc5001a | 50 | roles/instancegroup | 4,417 | [
"no_license"
] | [
{
"path": "roles/instancegroup/defaults/main.yml",
"content": "---\n# defaults file for AnsibleInstanceGroup\njob_ttl: 3600\nbackoff_limit: 1\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 76
},
{
"path": "roles/instancegroup/vars/main.yml",
"content": "---\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 7135,
"all_permissive": false
} |
ansible_role | ansible/awx-resource-operator | b4c2f12c18925688f1e5e9f8d0aef853ddc5001a | 50 | roles/inventory | 4,417 | [
"no_license"
] | [
{
"path": "roles/inventory/tasks/main.yml",
"content": "---\n- name: Read Secret Configuration from connection_secret\n kubernetes.core.k8s_info:\n kind: Secret\n api_version: v1\n name: \"{{ connection_secret }}\"\n namespace: \"{{ ansible_operator_meta.namespace }}\"\n register: tower_connec... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2104,
"all_permissive": false
} |
ansible_role | ansible/awx-resource-operator | b4c2f12c18925688f1e5e9f8d0aef853ddc5001a | 50 | roles/job | 4,417 | [
"no_license"
] | [
{
"path": "roles/job/tasks/main.yml",
"content": "---\n\n- name: Assert JT or WFJT defined\n assert:\n that:\n - (job_template_name | default('') | length) or (workflow_template_name | default('') | length)\n\n- name: Read K8s job info\n kubernetes.core.k8s_info:\n kind: Job\n api_version: b... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 6552,
"all_permissive": false
} |
ansible_role | ansible/awx-resource-operator | b4c2f12c18925688f1e5e9f8d0aef853ddc5001a | 50 | roles/job_runner | 4,417 | [
"no_license"
] | [
{
"path": "roles/job_runner/tasks/create_schedule.yml",
"content": "- name: Define a schedule, if error update AnsibleSchedule status then end play\n block:\n - name: Launch schedule\n awx.awx.schedule:\n name: \"{{ lookup('env','NAME') }}\"\n rrule: \"{{ lookup('env','RRULE') }}\"\n ... | {
"task_files": 11,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 12,
"total_bytes": 22823,
"all_permissive": false
} |
ansible_role | ansible/awx-resource-operator | b4c2f12c18925688f1e5e9f8d0aef853ddc5001a | 50 | roles/jobtemplate | 4,417 | [
"no_license"
] | [
{
"path": "roles/jobtemplate/vars/main.yml",
"content": "---\n# vars file for jobtemplate\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 32
},
{
"path": "roles/jobtemplate/handlers/main.yml",
"content": "---\n# handlers file for jobtemplate\n",
"license_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 5701,
"all_permissive": false
} |
ansible_role | ansible/awx-resource-operator | b4c2f12c18925688f1e5e9f8d0aef853ddc5001a | 50 | roles/workflowtemplate | 4,417 | [
"no_license"
] | [
{
"path": "roles/workflowtemplate/tasks/main.yml",
"content": "---\n- name: Read Secret Configuration\n kubernetes.core.k8s_info:\n kind: Secret\n namespace: '{{ ansible_operator_meta.namespace }}'\n name: \"{{ connection_secret }}\"\n register: tower_config_secret\n\n- name: Deploy the template\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2556,
"all_permissive": false
} |
ansible_role | youtux/nuke-provisioning | f08837f50f4604f9c49d28e4de65e7faf6e0978a | 0 | roles/common | 4,417 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yaml",
"content": "- name: Install apt packages\n become: true\n apt:\n update_cache: true\n state: latest\n name:\n - zsh\n - tmux\n - jq\n - htop\n - iperf3\n\n- name: Install Snap packages\n become: true\n snap:\n name: starship\n class... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1413,
"all_permissive": false
} |
ansible_role | youtux/nuke-provisioning | f08837f50f4604f9c49d28e4de65e7faf6e0978a | 0 | roles/docker | 4,417 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yaml",
"content": "- name: Install apt packages\n become: true\n apt:\n update_cache: true\n state: latest\n name:\n - ca-certificates\n - curl\n - gnupg\n - lsb-release\n\n# Docker installation mostly cribbed from:\n# https://withblue.ink/2019/07/13... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2062,
"all_permissive": false
} |
ansible_role | Pazzl/VagrantAnsible | 7ffb19a78857b7a972b02a43a56ee0ca3b42196f | 0 | provision/roles/jenkins | 4,417 | [
"no_license"
] | [
{
"path": "provision/roles/jenkins/handlers/main.yml",
"content": "---\n# handlers file for provision/roles/jenkins\n- name: Slurp Jenkins initial admin password file\n slurp:\n src: \"{{ jenkins_initial_passwd_file }}\"\n register: jenkins_initial_admin_passwd\n listen: \"Get Jenkins initial admin pa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2166,
"all_permissive": false
} |
ansible_role | Pazzl/VagrantAnsible | 7ffb19a78857b7a972b02a43a56ee0ca3b42196f | 0 | provision/roles/mysql | 4,417 | [
"no_license"
] | [
{
"path": "provision/roles/mysql/README.md",
"content": "MySQL DB server role\n=========\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 31
},
{
"path": "provision/roles/mysql/tasks/main.yml",
"content": "---\n# tasks file for provision/roles/mysql\n- name: I... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 4480,
"all_permissive": false
} |
ansible_role | Pazzl/VagrantAnsible | 7ffb19a78857b7a972b02a43a56ee0ca3b42196f | 0 | provision/roles/nginx | 4,417 | [
"no_license"
] | [
{
"path": "provision/roles/nginx/tasks/main.yml",
"content": "---\n# tasks file for provision/roles/nginx\n- name: Install Nginx\n apt:\n pkg: \"{{ package }}\"\n state: latest\n update_cache: yes\n\n- name: Push Nginx config file\n template:\n src: \"{{ role_path }}/templates/default.j2\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1449,
"all_permissive": false
} |
ansible_role | Pazzl/VagrantAnsible | 7ffb19a78857b7a972b02a43a56ee0ca3b42196f | 0 | provision/roles/tomcat | 4,417 | [
"no_license"
] | [
{
"path": "provision/roles/tomcat/README.md",
"content": "Tomcat server role\n=========\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 29
},
{
"path": "provision/roles/tomcat/tasks/main.yml",
"content": "---\n# tasks file for provision/roles/tomcat\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 825,
"all_permissive": false
} |
ansible_role | samanehFa/Multi-Stack_DevOps_Infrastructure_Automation | ce3df2e2c41a123e8731a5c264b713cfa68029ac | 0 | infrastructure-automation-RDS/Ansible/roles/backend | 4,417 | [
"no_license"
] | [
{
"path": "infrastructure-automation-RDS/Ansible/roles/backend/vars/main.yml",
"content": "postgres_host: \"Aws RDS Endpoint\"\npostgres_user: \"\"\npostgres_password: \"\"\npostgres_db: \"\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 90
},
{
"path": "infras... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1076,
"all_permissive": false
} |
ansible_role | samanehFa/Multi-Stack_DevOps_Infrastructure_Automation | ce3df2e2c41a123e8731a5c264b713cfa68029ac | 0 | infrastructure-automation-RDS/Ansible/roles/frontend | 4,417 | [
"no_license"
] | [
{
"path": "infrastructure-automation-RDS/Ansible/roles/frontend/tasks/main.yml",
"content": "---\n- name: Update apt packages\n become: yes\n apt:\n update_cache: yes\n upgrade: yes\n\n#########################################\n# Vote container\n#########################################\n- name: Run... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 834,
"all_permissive": false
} |
ansible_role | samanehFa/Multi-Stack_DevOps_Infrastructure_Automation | ce3df2e2c41a123e8731a5c264b713cfa68029ac | 0 | infrastructure-automation/Ansible/roles/database | 4,417 | [
"no_license"
] | [
{
"path": "infrastructure-automation/Ansible/roles/database/vars/main.yml",
"content": "postgres_user: \"\"\npostgres_password: \"\"\npostgres_db: \"\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 55
},
{
"path": "infrastructure-automation/Ansible/roles/database... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1077,
"all_permissive": false
} |
ansible_role | samanehFa/Multi-Stack_DevOps_Infrastructure_Automation | ce3df2e2c41a123e8731a5c264b713cfa68029ac | 0 | infrastructure-automation/Ansible/roles/frontend | 4,417 | [
"no_license"
] | [
{
"path": "infrastructure-automation/Ansible/roles/frontend/tasks/main.yml",
"content": "---\n- name: Update apt packages\n become: yes\n apt:\n update_cache: yes\n upgrade: yes\n\n#########################################\n# Vote container\n#########################################\n- name: Run vot... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 857,
"all_permissive": false
} |
ansible_role | mbodock/ansible-asuka | a47609a7ee135c26002bc1dcdfcdff8c7569dbb2 | 2 | roles/dotfiles | 4,417 | [
"no_license"
] | [
{
"path": "roles/dotfiles/tasks/main.yml",
"content": "---\n- name: Clona dotfiles\n git:\n repo: <EMAIL>:mbodock/dotfiles.git\n accept_hostkey: true\n dest: ~/.dotfiles/\n update: yes\n\n- name: cria diretórios necessários\n file:\n path: ~/.config/fish\n state: directory\n\n- name: Lin... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 606,
"all_permissive": false
} |
ansible_role | mbodock/ansible-asuka | a47609a7ee135c26002bc1dcdfcdff8c7569dbb2 | 2 | roles/fishshell | 4,417 | [
"no_license"
] | [
{
"path": "roles/fishshell/tasks/main.yml",
"content": "- name: Instala fish shell\n apt:\n name: fish\n install_recommends: yes\n become: yes\n\n- name: Cria pasta de configurações\n file:\n path: ~/.config/fish/\n state: directory\n\n- name: Define fish como shell padrao\n user:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 314,
"all_permissive": false
} |
ansible_role | mbodock/ansible-asuka | a47609a7ee135c26002bc1dcdfcdff8c7569dbb2 | 2 | roles/git | 4,417 | [
"no_license"
] | [
{
"path": "roles/git/tasks/main.yml",
"content": "- name: Instala git\n apt:\n name: git\n state: present\n become: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 74
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 74,
"all_permissive": false
} |
ansible_role | mbodock/ansible-asuka | a47609a7ee135c26002bc1dcdfcdff8c7569dbb2 | 2 | roles/i3 | 4,417 | [
"no_license"
] | [
{
"path": "roles/i3/files/blocks/cpu_clock",
"content": "#!/bin/bash\ndados=$(lscpu | grep MHz | head -1 | cut -d':' -f 2 | tr -d '[:space:]' | cut -d'.' -f1)\ndivisor=1000\necho -n $(py \"$dados / $divisor\")\necho \"GHz\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes":... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2555,
"all_permissive": false
} |
ansible_role | mbodock/ansible-asuka | a47609a7ee135c26002bc1dcdfcdff8c7569dbb2 | 2 | roles/pacotes | 4,417 | [
"no_license"
] | [
{
"path": "roles/pacotes/tasks/main.yml",
"content": "---\n- name: Adiciona repositórios\n apt_repository:\n repo: \"{{ item }}\"\n state: present\n become: yes\n with_items:\n - ppa:nathan-renniewaldock/flux\n - ppa:jonathonf/vim\n - ppa:fossfreedom/arc-gtk-theme-daily\n\n- name: Atualiza... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1406,
"all_permissive": false
} |
ansible_role | mbodock/ansible-asuka | a47609a7ee135c26002bc1dcdfcdff8c7569dbb2 | 2 | roles/scripts | 4,417 | [
"no_license"
] | [
{
"path": "roles/scripts/README.md",
"content": "Coleção de scripts avulsos para facilitar o uso diário no linux.\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
},
{
"path": "roles/scripts/templates/performance.sh.j2",
"content": "#/bin/bash\nfor i in $(s... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 1975,
"all_permissive": false
} |
ansible_role | mbodock/ansible-asuka | a47609a7ee135c26002bc1dcdfcdff8c7569dbb2 | 2 | roles/spotify | 4,417 | [
"no_license"
] | [
{
"path": "roles/spotify/defaults/main.yml",
"content": "---\n# Ref: https://www.spotify.com/download/linux/\n\nspotify_repo_key: 0DF731E45CE24F27EEEB1450EFDC8610341D9410\n\nspotify_repo_line: deb http://repository.spotify.com stable non-free\n\nspotify_repo_file: spotify\n",
"license_type": "no_license... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 869,
"all_permissive": false
} |
ansible_role | mbodock/ansible-asuka | a47609a7ee135c26002bc1dcdfcdff8c7569dbb2 | 2 | roles/tmux | 4,417 | [
"no_license"
] | [
{
"path": "roles/tmux/tasks/main.yml",
"content": "---\n- name: Instala tmux\n apt:\n name: tmux\n state: latest\n become: true\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 80
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 80,
"all_permissive": false
} |
ansible_role | mbodock/ansible-asuka | a47609a7ee135c26002bc1dcdfcdff8c7569dbb2 | 2 | roles/vim | 4,417 | [
"no_license"
] | [
{
"path": "roles/vim/defaults/main.yml",
"content": "---\nfonts:\n - dest: ~/.fonts/\n nome: PowerlineSymbols.otf\n url: \"https://github.com/powerline/powerline/raw/develop/font/PowerlineSymbols.otf\"\n - dest: ~/.fonts/\n nome: fontawesome-webfont.ttf\n url: \"https://github.com/FortAwesome/... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1319,
"all_permissive": false
} |
ansible_role | skarthic15/pcm | bee46741a73006ea675df5574834a7de2dd07b89 | 0 | roles/demo | 4,417 | [
"no_license"
] | [
{
"path": "roles/demo/tasks/arch/win_2012.yml",
"content": "---\n\n- name: Copy PCM_Deploy Script on windows 2012\n win_copy: src=\"{{ pcm_deploy_script }}\" dest={{win_home}}\\{{pcm_deploy_script}}\n when: type == \"MT\" and ansible_os_name == \"Microsoft Windows Server 2012 R2 Standard\" and \"'v' in si... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 5026,
"all_permissive": false
} |
ansible_role | skarthic15/pcm | bee46741a73006ea675df5574834a7de2dd07b89 | 0 | roles/prod | 4,417 | [
"no_license"
] | [
{
"path": "roles/prod/tasks/arch/main.yml",
"content": "---\n# tasks file for prod\n\n- name: Copy SQL file to DB host\n copy: src=ClientCreate.sql dest=/home/ps{{sid}}/ClientCreate.sql owner=\"{{ ps_user }}\" group=\"{{ ps_user }}\"\n when: type == \"DB\" and \"'p' in sid[0]\"\n register: cp_sql\n\n- ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3131,
"all_permissive": false
} |
ansible_role | mik-tf/tfgrid_6nodes | c8aff85deb7abf5c30102b8dc0e82153e128fe33 | 0 | kubernetes/roles/common | 4,417 | [
"no_license"
] | [
{
"path": "kubernetes/roles/common/tasks/packages.yml",
"content": "- name: Install system dependencies\n apt:\n name:\n - curl\n - apt-transport-https\n - ca-certificates\n - software-properties-common\n state: present",
"license_type": "no_license",
"detected_licenses": ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 3863,
"all_permissive": false
} |
ansible_role | mik-tf/tfgrid_6nodes | c8aff85deb7abf5c30102b8dc0e82153e128fe33 | 0 | kubernetes/roles/control | 4,417 | [
"no_license"
] | [
{
"path": "kubernetes/roles/control/tasks/main.yml",
"content": "---\n- name: Ensure kubelet is properly configured\n block:\n - name: Check if kubelet service file exists\n stat:\n path: /usr/lib/systemd/system/kubelet.service.d/10-kubeadm.conf\n register: kubelet_service_file\n\n -... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3795,
"all_permissive": false
} |
ansible_role | mik-tf/tfgrid_6nodes | c8aff85deb7abf5c30102b8dc0e82153e128fe33 | 0 | kubernetes/roles/worker | 4,417 | [
"no_license"
] | [
{
"path": "kubernetes/roles/worker/tasks/main.yml",
"content": "---\n- name: Get join command from primary control node\n slurp:\n src: /tmp/worker-join-command\n register: worker_join_command\n delegate_to: \"{{ hostvars[primary_control_node_for_delegation]['ansible_hostname'] }}\"\n\n- name: Join wo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 354,
"all_permissive": false
} |
ansible_role | egrol/advanced_ansible_tower | 96eb1698892f52963dbe931c3803d27d1ecb51f0 | 0 | ansible-tower-setup-3.5.0-1/roles/samdoran.pgsql_replication | 4,457 | [
"no_license"
] | [
{
"path": "ansible-tower-setup-3.5.0-1/roles/samdoran.pgsql_replication/filter_plugins/filters.py",
"content": "# -*- coding: utf-8 -*-\n# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)\n\nfrom __future__ import absolute_import, division, print_function\n__metacla... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 6246,
"all_permissive": false
} |
ansible_role | egrol/advanced_ansible_tower | 96eb1698892f52963dbe931c3803d27d1ecb51f0 | 0 | roles/erol_win_ad_install | 4,457 | [
"no_license"
] | [
{
"path": "roles/erol_win_ad_install/tasks/main.yml",
"content": "- name: install active directory with sub features and management tools\n win_feature:\n name: AD-Domain-Services\n state: present\n include_sub_features: True\n include_management_tools: True\n\n- name: install telnet client wit... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 754,
"all_permissive": false
} |
ansible_role | rodolfo-gonzalez/adp-demo | d98fc68ffbc5b217e8cc6f5c3e300e210a4d972f | 0 | roles/aws | 4,457 | [
"no_license"
] | [
{
"path": "roles/aws/tasks/elb.yml",
"content": "- name: Get subnets ids\n set_fact:\n subnets_ids: \"{{ vpc_out.subnets | map(attribute='id') | list }}\"\n\n- name: Create ELB\n ec2_elb_lb:\n profile: \"{{ aws.profile }}\"\n name: ELB-8080\n state: present\n region: \"{{ aws.region }}\"\n ... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3335,
"all_permissive": false
} |
ansible_role | rodolfo-gonzalez/adp-demo | d98fc68ffbc5b217e8cc6f5c3e300e210a4d972f | 0 | roles/docker | 4,457 | [
"no_license"
] | [
{
"path": "roles/docker/defaults/main.yml",
"content": "docker:\n path: /home/ec2-user\n user: ec2-user\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 48
},
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n# tasks file for roles/docker\n- include:... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 2759,
"all_permissive": false
} |
ansible_role | rodolfo-gonzalez/adp-demo | d98fc68ffbc5b217e8cc6f5c3e300e210a4d972f | 0 | roles/elb | 4,457 | [
"no_license"
] | [
{
"path": "roles/elb/tasks/main.yml",
"content": "---\n# tasks file for roles/elb\n- name: Get facts from ec2 instances\n ec2_remote_facts:\n profile: \"{{ aws.profile }}\"\n region: \"{{ aws.region }}\"\n filters:\n \"tag:Environment\": Demo\n \"tag:Name\": web app\n register: ec2_fact... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 468,
"all_permissive": false
} |
ansible_role | toyokumo/ansible-fluentd | c4b244862b92c1eb0e407048a0220608cf14333a | 0 | roles/permission | 4,457 | [
"no_license"
] | [
{
"path": "roles/permission/tasks/main.yml",
"content": "---\n- name: change file group and mode\n file:\n path: \"{{ item.path }}\"\n group: td-agent\n mode: 0660\n with_items:\n - \"{{ tdagent_logs }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 151
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 151,
"all_permissive": false
} |
ansible_role | prontsevychev/my-tech-shop | 2cf956dfb678f9484df971ff4ce3a8b519626574 | 3 | ansible/roles/base | 4,457 | [
"no_license"
] | [
{
"path": "ansible/roles/base/tasks/setup.yml",
"content": "- name: Update and upgrade\n apt:\n update_cache: yes\n upgrade: yes\n\n- name: Install packages\n apt:\n name: ['git', 'python-psycopg2', 'postgresql', 'postgresql-contrib', 'libpq-dev', 'python3-pip', 'python3-dev',\n 'nginx'... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 484,
"all_permissive": false
} |
ansible_role | prontsevychev/my-tech-shop | 2cf956dfb678f9484df971ff4ce3a8b519626574 | 3 | ansible/roles/django | 4,457 | [
"no_license"
] | [
{
"path": "ansible/roles/django/tasks/setup.yml",
"content": "- name: Install pip packages\n pip:\n requirements: \"{{ project_directory }}/requirements.txt\"\n virtualenv: \"{{ virtualenv_path }}\"\n become_user: \"{{ user }}\"\n become: yes\n\n- name: Make manage.py executable\n file:\n path:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 663,
"all_permissive": false
} |
ansible_role | prontsevychev/my-tech-shop | 2cf956dfb678f9484df971ff4ce3a8b519626574 | 3 | ansible/roles/nginx | 4,457 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx/templates/nginx_conf.j2",
"content": "server {\n listen 80;\n server_name {{ nginx_server_name }};\n\n location = /favicon.ico { access_log off; log_not_found off; }\n location = /robots.txt { access_log off; log_not_found off; }\n location /static/ {\n r... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 895,
"all_permissive": false
} |
ansible_role | prontsevychev/my-tech-shop | 2cf956dfb678f9484df971ff4ce3a8b519626574 | 3 | ansible/roles/postgresql | 4,457 | [
"no_license"
] | [
{
"path": "ansible/roles/postgresql/tasks/create.yml",
"content": "- name: Create postgresql user\n postgresql_user: name=\"{{ user }}\"\n become: True\n become_user: postgres\n\n- name: Create postgresql db\n postgresql_db: name=\"{{ postgresql_db_name }}\" owner=\"{{ user }}\" encoding='UTF-8'\n beco... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 305,
"all_permissive": false
} |
ansible_role | prontsevychev/my-tech-shop | 2cf956dfb678f9484df971ff4ce3a8b519626574 | 3 | ansible/roles/pyenv | 4,457 | [
"no_license"
] | [
{
"path": "ansible/roles/pyenv/tasks/main.yml",
"content": "- include: \"{{ task }}.yml\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 28
},
{
"path": "ansible/roles/pyenv/tasks/setup.yml",
"content": "- name: Clone pyenv git repo\n git: repo=\"https://gi... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1740,
"all_permissive": false
} |
ansible_role | prontsevychev/my-tech-shop | 2cf956dfb678f9484df971ff4ce3a8b519626574 | 3 | ansible/roles/systemd | 4,457 | [
"no_license"
] | [
{
"path": "ansible/roles/systemd/tasks/setup.yml",
"content": "- name: Copy gunicorn.socket\n template:\n src: gunicorn.socket.j2\n dest: /etc/systemd/system/gunicorn.socket\n owner: root\n group: root\n\n- name: Copy gunicorn.service\n template:\n src: gunicorn.service.j2\n dest: /etc/s... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 934,
"all_permissive": false
} |
ansible_role | maavs/ansible-debian-updates | 6bcb3bac58e4653cb1578febb3e044e3daa14021 | 1 | roles/server-updates | 4,457 | [
"no_license"
] | [
{
"path": "roles/server-updates/defaults/main.yml",
"content": "---\n# defaults file for roles/server-updates\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 45
},
{
"path": "roles/server-updates/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1232,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ansible-dev-box/provisioning/roles/chrome | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ansible-dev-box/provisioning/roles/chrome/defaults/main.yml",
"content": "---\nchrome:\n repo:\n file: /etc/apt/sources.list.d/google-chrome.list\n key: https://dl-ssl.google.com/linux/linux_signing_key.pub\n url: http://dl.google.com/linux/chrome/deb/\n deb:\n url: https://... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1000,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ansible-dev-box/provisioning/roles/eclipse | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ansible-dev-box/provisioning/roles/eclipse/templates/eclipse.desktop.j2",
"content": "[Desktop Entry]\nType=Application\nTerminal=false\nIcon={{ eclipse_install_dir }}/eclipse/icon.xpm\nName=Eclipse\nExec={{ eclipse_install_dir }}/eclipse/eclipse\nCategories=Development;\n",
"license_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 4345,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ansible-dev-box/provisioning/roles/git | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ansible-dev-box/provisioning/roles/git/tasks/main.yml",
"content": "---\n\n- name: install git\n apt: \n name: git\n state: latest \n update_cache: yes \n cache_valid_time: 3600\n register: git_install\n become: yes\n\n- name: Set the Git configuration\n git_config:\n n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 545,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ansible-dev-box/provisioning/roles/gnome | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ansible-dev-box/provisioning/roles/gnome/tasks/main.yml",
"content": "---\n\n- name: Update all packages to the latest version\n apt:\n upgrade: dist\n become: yes\n\n- name: Configure Gnome repository\n apt_repository:\n repo: 'ppa:gnome3-team/gnome3'\n become: yes\n\n- name: R... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 722,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ansible-dev-box/provisioning/roles/maven | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ansible-dev-box/provisioning/roles/maven/tasks/main.yml",
"content": "---\n- name: install maven\n apt: \n name: maven\n state: latest \n update_cache: yes \n cache_valid_time: 3600\n register: mvn_install\n become: yes\n\n- name: Add Maven configuration to the user path\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 680,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ansible-dev-box/provisioning/roles/nodejs | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ansible-dev-box/provisioning/roles/nodejs/tasks/main.yml",
"content": "---\n- name: Get nodejs repo file configuration\n get_url:\n url: \"{{ nodejs.url }}\"\n dest: /tmp/nodejs-install.sh\n mode: 0755\n\n- name: Execute the repo file configuration\n script: /tmp/nodejs-install... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 417,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ansible-dev-box/provisioning/roles/openJdk | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ansible-dev-box/provisioning/roles/openJdk/tasks/main.yml",
"content": "---\n- name: Install OpenJdk\n apt:\n name: \"{{ openjdk.version }}\"\n state: latest\n update_cache: yes\n cache_valid_time: 3600\n register: jdk_install\n become: yes\n\n- name: Set java version\n al... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 670,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ansible-dev-box/provisioning/roles/oracleJdk | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ansible-dev-box/provisioning/roles/oracleJdk/defaults/main.yml",
"content": "---\njava:\n url: \"http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html\"\n arch: \"linux-x64\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1537,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ansible-dev-box/provisioning/roles/unix-tools | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ansible-dev-box/provisioning/roles/unix-tools/tasks/main.yml",
"content": "---\n- name: Install essential build tools\n apt:\n name: build-essential\n state: latest\n update_cache: yes\n cache_valid_time: 3600\n become: yes\n...\n",
"license_type": "no_license",
"det... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 160,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ubuntu-desktop/provisioning/roles/gnome | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ubuntu-desktop/provisioning/roles/gnome/tasks/main.yml",
"content": "---\n\n- name: Update all packages to the latest version\n apt:\n upgrade: dist\n become: yes\n\n- name: Run the equivalent of \"apt-get update\" as a separate step\n apt:\n update_cache: yes\n become: yes\n\n-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 348,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ubuntu-xfce/provisioning/roles/clean | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ubuntu-xfce/provisioning/roles/clean/tasks/main.yml",
"content": "---\n\n- name: Remove useless packages from the cache\n apt:\n autoclean: yes\n become: yes\n\n- name: Remove dependencies that are no longer required\n apt:\n autoremove: yes\n become: yes\n\n- name: \"Reduce foo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 297,
"all_permissive": false
} |
ansible_role | apenvern/vagrant | 9c35cde2cf4312bdc5345759d68e9bb43557372e | 0 | vagrant-ubuntu-xfce/provisioning/roles/xfce | 4,457 | [
"no_license"
] | [
{
"path": "vagrant-ubuntu-xfce/provisioning/roles/xfce/tasks/main.yml",
"content": "---\n\n- name: Update all packages to the latest version\n apt:\n upgrade: dist\n become: yes\n\n- name: Run the equivalent of \"apt-get update\" as a separate step\n apt:\n update_cache: yes\n become: yes\n\n- nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 526,
"all_permissive": false
} |
ansible_role | joos-net/diplom | 9de0e0f4312a503e694e43776f87af56f7105d83 | 1 | Ansible/roles/filebeat | 4,457 | [
"no_license"
] | [
{
"path": "Ansible/roles/filebeat/templates/filebeat_nginx.yml.j2",
"content": "filebeat:\n\n # List of inputs.\n inputs:\n - type: log\n enabled: true\n paths:\n - \"/var/log/nginx/access.log\"\n fields:\n tags: [\"nginx\"]\n fields_under_root: true\n scan_frequency: 5s\n - type:... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3459,
"all_permissive": false
} |
ansible_role | joos-net/diplom | 9de0e0f4312a503e694e43776f87af56f7105d83 | 1 | Ansible/roles/git | 4,457 | [
"no_license"
] | [
{
"path": "Ansible/roles/git/tasks/main.yml",
"content": "---\n# tasks file for git\n\n- name: Wait 1 minute - website start\n ansible.builtin.pause:\n minutes: 1\n\n- name: Test 404\n shell: '~/diplom/test_404.sh 200'\n\n- name: push README-INFO\n shell: 'cd ~/diplom; git add \"README-INFO.md\"; git ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 278,
"all_permissive": false
} |
ansible_role | joos-net/diplom | 9de0e0f4312a503e694e43776f87af56f7105d83 | 1 | Ansible/roles/logstash | 4,457 | [
"no_license"
] | [
{
"path": "Ansible/roles/logstash/defaults/main.yml",
"content": "---\nlogstash_package: logstash\n\nlogstash_listen_port_beats: 5044\n\nlogstash_elasticsearch_hosts:\n - http://{{ groups['elastic'] | join('')}}:9200\n\nlogstash_local_syslog_path: /var/log/syslog\nlogstash_monitor_local_syslog: true\n\nlog... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3109,
"all_permissive": false
} |
ansible_role | joos-net/diplom | 9de0e0f4312a503e694e43776f87af56f7105d83 | 1 | Ansible/roles/my_elastic | 4,457 | [
"no_license"
] | [
{
"path": "Ansible/roles/my_elastic/defaults/main.yml",
"content": "---\n# defaults file for my_elastic\nelasticsearch_local_certs_dir: ~/Desktop/very_secure_dir\n\nelasticsearch_image: elasticsearch:8.10.2\nelasticsearch_hostname: es01\nelasticsearch_conf_dir: /usr/share/elasticsearch\n\nlog_driver: \"json... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 5245,
"all_permissive": false
} |
ansible_role | joos-net/diplom | 9de0e0f4312a503e694e43776f87af56f7105d83 | 1 | Ansible/roles/my_kibana | 4,457 | [
"no_license"
] | [
{
"path": "Ansible/roles/my_kibana/handlers/main.yml",
"content": "---\n# handlers file for my_kibana\n- name: restart kibana\n systemd:\n state: restarted\n name: kibana",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 105
},
{
"path": "Ansible/roles/my_kiba... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 4677,
"all_permissive": false
} |
ansible_role | joos-net/diplom | 9de0e0f4312a503e694e43776f87af56f7105d83 | 1 | Ansible/roles/nginx | 4,457 | [
"no_license"
] | [
{
"path": "Ansible/roles/nginx/files/html_demo_site-main/index.html",
"content": "\n<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n <meta charset=\"utf-8\">\n <title> <NAME> Netology </title>\n <link rel=\"shortcut icon\" type=\"image/jpg\" href=\"images/small-profile.jpeg\"/>\n \n <meta name=\"twitter... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 8145,
"all_permissive": false
} |
ansible_role | unbirabka/devops-test-akbar | 2d5df27031183cafaeee76e66787464b7505abfc | 0 | roles/common | 4,397 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n- name: Run the equivalent of \"apt-get update\" as a separate step\n apt:\n update_cache: yes\n become: yes\n- name: install python pip3\n apt:\n name:\n - python3-pip\n - nginx\n - net-tools\n state: present\n become: ye... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 357,
"all_permissive": false
} |
ansible_role | unbirabka/devops-test-akbar | 2d5df27031183cafaeee76e66787464b7505abfc | 0 | roles/flask | 4,397 | [
"no_license"
] | [
{
"path": "roles/flask/tasks/main.yml",
"content": "---\n- name: Recursively change ownership of a directory\n ansible.builtin.file:\n path: /webapps/devops\n state: directory\n recurse: yes\n mode: '0755'\n owner: vagrant\n group: vagrant\n become: yes\n- name: Clone a repo with separat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2592,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/alertmanager | 4,397 | [
"no_license"
] | [
{
"path": "roles/alertmanager/tasks/pre.yaml",
"content": "---\n- name: determine if installed\n stat:\n path: \"{{ alertmanager_bin_path }}/alertmanager\"\n register: st\n\n- name: set alertmanager_installed\n set_fact:\n alertmanager_installed: \"{{ st.stat.exists | bool }}\"\n\n- block:\n - nam... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 6651,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/autossh | 4,397 | [
"no_license"
] | [
{
"path": "roles/autossh/templates/autossh.service.j2",
"content": "# {{ ansible_managed }}\n\n[Unit]\nDescription=autossh %I\nWants=network-online.target\nAfter=network-online.target\n\n[Service]\nType=simple\nUser={{ autossh_user }}\nEnvironmentFile={{ autossh_etc_path }}/%i\nExecStart=\nExecStart=/usr/bi... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 4881,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/blackbox_exporter | 4,397 | [
"no_license"
] | [
{
"path": "roles/blackbox_exporter/defaults/main.yaml",
"content": "blackbox_exporter_go_arch_map:\n i386: '386'\n x86_64: 'amd64'\n\nblackbox_exporter_go_arch: \"{{ blackbox_exporter_go_arch_map[ansible_architecture] | default('amd64') }}\"\n\nblackbox_exporter_service_name: blackbox_exporter.service\nbl... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 6020,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/certbot | 4,397 | [
"no_license"
] | [
{
"path": "roles/certbot/defaults/main.yaml",
"content": "---\ncertbot_package_name: certbot\ncertbot_package_state: latest\n\ncertbot_plugins:\n - certbot-dns-cloudflare\n - certbot-dns-digitalocean\n - certbot-dns-dnsimple\n - certbot-dns-dnsmadeeasy\n - certbot-dns-gehirn\n - certbot-dns-google\n ... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 4005,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/certs | 4,397 | [
"no_license"
] | [
{
"path": "roles/certs/vars/Debian.yaml",
"content": "---\ncerts_trusted_ca_path: /usr/local/share/ca-certificates\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 60
},
{
"path": "roles/certs/tasks/main.yaml",
"content": "---\n- name: gather os specific varia... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1164,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/chrony | 4,397 | [
"no_license"
] | [
{
"path": "roles/chrony/tasks/main.yaml",
"content": "---\n- name: gather OS specific variables\n ansible.builtin.include_vars: \"{{ item }}\"\n with_first_found:\n - \"{{ ansible_distribution }}.yaml\"\n - \"{{ ansible_os_family }}.yaml\"\n\n- name: stop/disable systemd-timesyncd\n service:\n n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1310,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/cloudflared | 4,397 | [
"no_license"
] | [
{
"path": "roles/cloudflared/tasks/install.yaml",
"content": "---\n- name: install package\n ansible.builtin.package:\n name: \"{{ cloudflared_package_name }}\"\n state: \"{{ cloudflared_package_state | default('present') }}\"",
"license_type": "no_license",
"detected_licenses": [],
"size... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 986,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/common | 4,397 | [
"no_license"
] | [
{
"path": "roles/common/defaults/main.yaml",
"content": "---\n# common_cron_service_name: cron.service\n# common_timezone: Etc/UTC\n# common_locale: C.UTF-8\n# common_apt_update_cache: true\n# common_apt_cache_valid_time: 3600\n",
"license_type": "no_license",
"detected_licenses": [],
"size_byte... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1764,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/consul | 4,397 | [
"no_license"
] | [
{
"path": "roles/consul/handlers/main.yaml",
"content": "---\n- name: reload consul\n service:\n name: \"{{ consul_service_name }}\"\n state: reloaded\n when: consul_service_enabled\n\n- name: restart consul\n service:\n name: \"{{ consul_service_name }}\"\n state: restarted\n when: consul_s... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 3575,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/craftbukkit | 4,397 | [
"no_license"
] | [
{
"path": "roles/craftbukkit/templates/rsyslog/craftbukkit.conf.j2",
"content": "# {{ ansible_managed }}\n\nmodule(load=\"omprog\")\n\nif ( $programname == \"craftbukkit\" ) then {\n action(\n type=\"omprog\"\n binary=\"{{ craftbukkit_opt_path }}/bin/craftbukkit-discord --config {{ craftbukkit_opt_pa... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 9149,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/crio | 4,397 | [
"no_license"
] | [
{
"path": "roles/crio/tasks/main.yaml",
"content": "---\n- name: gather os specific variables\n ansible.builtin.include_vars: \"{{ lookup('first_found', params) }}\"\n vars:\n params:\n files:\n - \"{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml\"\n - \"{{ ansible... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2233,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/dl | 4,397 | [
"no_license"
] | [
{
"path": "roles/dl/tasks/main.yaml",
"content": "---\n- name: check if SSL key exists\n stat:\n path: \"{{ dl_ssl_certificate_key }}\"\n register: key_st\n\n- name: check if SSL certificate exists\n stat:\n path: \"{{ dl_ssl_certificate }}\"\n register: crt_st\n\n- name: ssl enabled\n set_fact:\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2461,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/dns | 4,397 | [
"no_license"
] | [
{
"path": "roles/dns/templates/listen.conf.j2",
"content": "server:\n{% if unbound_interfaces is defined %}\n{% for iface in unbound_interfaces | default([]) %}\n interface: {{ iface }}\n{% endfor %}\n{% for ac in unbound_access_control | default([]) %}\n access-control: {{ ac }}\n{% endfor %}\n{%... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 3044,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/docker | 4,397 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/install.yaml",
"content": "---\n- name: install docker\n package:\n name: \"{{ item }}\"\n state: \"{{ docker_package_state }}\"\n loop: \"{{ docker_package_name }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 137
},
{
"... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1457,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/firewall | 4,397 | [
"no_license"
] | [
{
"path": "roles/firewall/templates/ipset.v6.j2",
"content": "{% macro render_ipset(ipset, name, type=\"hash:net\", family=\"inet6\", timeout=None) %}\ncreate {{ name }} {{ type | default('hash:net') }} family {{ family }} counters {% if timeout %}timeout {{ timeout }}{% endif %} -exist\nflush {{ name }}\n{... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 36874,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/gitea | 4,397 | [
"no_license"
] | [
{
"path": "roles/gitea/tasks/pre.yaml",
"content": "---\n- name: determine if installed\n stat:\n path: \"{{ gitea_bin_path }}/gitea\"\n register: st\n\n- name: set gitea_installed\n set_fact:\n gitea_installed: \"{{ st.stat.exists | bool }}\"\n\n- block:\n - name: determine latest version\n ur... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 7724,
"all_permissive": false
} |
ansible_role | ryanc/ansible | b45f8cf5dd9d52de21f034baa114681fb299a69f | 0 | roles/go | 4,397 | [
"no_license"
] | [
{
"path": "roles/go/defaults/main.yaml",
"content": "---\ngo_version: 1.15.2\ngo_url: \"https://dl.google.com/go/go{{ go_version }}.{{ ansible_system | lower }}-{{ go_arch }}.tar.gz\"\ngo_version_str: \"go version go{{ go_version }} {{ ansible_system | lower}}/{{ go_arch }}\"\n",
"license_type": "no_lic... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1911,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.