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 | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/integration-handler | 187 | [
"no_license"
] | [
{
"path": "roles/integration-handler/tasks/main.yml",
"content": "---\n- name: create invoke script\n template:\n src: invoke.sh.j2\n dest: \"{{ integration_handler_invoke_path }}\"\n mode: 0755\n owner: root\n\n- name: create sudoers file\n template:\n src: etc/sudoers.d/90-bonnyci-integra... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 3155,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/kibana | 187 | [
"no_license"
] | [
{
"path": "roles/kibana/defaults/main.yml",
"content": "---\nkibana_server_port: 5601\nkibana_server_host: \"0.0.0.0\"\n\nkibana_elasticsearch_url: \"http://localhost:9200\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 110
},
{
"path": "roles/kibana/meta/main.... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 559,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/letsencrypt | 187 | [
"no_license"
] | [
{
"path": "roles/letsencrypt/defaults/main.yml",
"content": "---\nletsencrypt_webroot: /var/www/letsencrypt\n\nletsencrypt_production: no\nletsencrypt_acme_directory: \"{{ letsencrypt_production | ternary(letsencrypt_production_api, letsencrypt_staging_api) }}\"\nletsencrypt_email:\nletsencrypt_remaining_da... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 6909,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/logging-proxy | 187 | [
"no_license"
] | [
{
"path": "roles/logging-proxy/tasks/main.yml",
"content": "---\n- name: Fetch and install\n docker_container:\n name: logging-proxy\n image: \"quay.io/bonnyci/logging-proxy:{{ logging_proxy_tag }}\"\n ports:\n - \"{{ logging_proxy_host }}:{{ logging_proxy_port }}:3000\"\n state: started\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 387,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/logrotate | 187 | [
"no_license"
] | [
{
"path": "roles/logrotate/tasks/main.yml",
"content": "---\n- name: Install base package\n apt:\n name: logrotate\n state: installed\n\n- name: Install config\n template:\n src: etc/logrotate.d/template.conf\n dest: /etc/logrotate.d/{{ item.name }}\n with_items: \"{{ logrotate_configs }}\"\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 261,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/logstash | 187 | [
"no_license"
] | [
{
"path": "roles/logstash/defaults/main.yml",
"content": "---\nlogstash_listen_port_beats: 5044\n\nlogstash_elasticsearch_hosts:\n - http://localhost:9200\n\nlogstash_ssl_dir: /etc/pki/logstash\nlogstash_ssl_certificate_file: \"\"\nlogstash_ssl_key_file: \"\"\n\nlogstash_enabled_on_boot: yes\n\nlogstash_in... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1624,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/mysql | 187 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yml",
"content": "---\n ### Update apt cache, but don't mark changed\n # Works around Ansible 2.2 bug\n # TODO: Remove with Ansible 2.3\n - name: Update apt cache\n apt:\n update_cache: yes\n register: apt_cache\n changed_when: False\n failed_when: \"apt_cache.c... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1493,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/nginx | 187 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "- name: Install nginx\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - nginx\n\n- name: Remove default site\n file:\n path: /etc/nginx/sites-enabled/default\n state: absent\n notify: Reload nginx\n\n# this task doesn't ma... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1767,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/nodepool | 187 | [
"no_license"
] | [
{
"path": "roles/nodepool/files/etc/nodepool/elements/bonnyci-nodepool/package-installs.yaml",
"content": "ubuntu-minimal:\nbuild-essential:\npython-dev:\npython3-dev:\nlibssl-dev:\nlibffi-dev:\nshellcheck:\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 94
},
{
... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 22,
"total_bytes": 16054,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/os-clouds | 187 | [
"no_license"
] | [
{
"path": "roles/os-clouds/defaults/main.yml",
"content": "clouds_yaml_path: /etc/openstack/clouds.yaml\nclouds_yaml_owner: root\nclouds_yaml_group: \"{{ clouds_yaml_owner }}\"\nclouds_yaml_mode: 0400\nclouds: []\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 148
},
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 929,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/os-loganalyze | 187 | [
"no_license"
] | [
{
"path": "roles/os-loganalyze/meta/main.yml",
"content": "---\ndependencies:\n - role: python-app\n name: os-loganalyze\n python_app_git_repo: https://git.openstack.org/openstack-infra/os-loganalyze\n python_app_git_version: \"{{ os_loganalyze_git_version }}\"\n",
"license_type": "no_license"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1940,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/pip | 187 | [
"no_license"
] | [
{
"path": "roles/pip/vars/main.yml",
"content": "---\npip_python_exec: \"{{ pip_python3 | bool | ternary('python3', 'python') }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 79
},
{
"path": "roles/pip/README.md",
"content": "Pip\n===\n\nInstall the lates... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1527,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/python-app | 187 | [
"no_license"
] | [
{
"path": "roles/python-app/meta/main.yml",
"content": "---\ndependencies:\n - name: pip\n pip_python3: \"{{ python_app_python3 | bool }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 83
},
{
"path": "roles/python-app/defaults/main.yml",
"content": "-... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2104,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/quartermaster | 187 | [
"no_license"
] | [
{
"path": "roles/quartermaster/handlers/main.yml",
"content": "---\n- name: Restart quartermaster\n service:\n name: quartermaster@{{ quartermaster_name }}\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 115
},
{
"path": "roles/quarterma... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4209,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/scp-log-receiver | 187 | [
"no_license"
] | [
{
"path": "roles/scp-log-receiver/tasks/main.yml",
"content": "---\n- name: Create a group that user can belong to\n group:\n name: \"{{ scp_log_receiver_group }}\"\n state: present\n\n- name: Create a user logs can be uploaded as\n user:\n name: \"{{ scp_log_receiver_user | mandatory }}\"\n h... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1016,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/sshd | 187 | [
"no_license"
] | [
{
"path": "roles/sshd/defaults/main.yml",
"content": "sshd_listen_addresses: []\nsshd_port: 22\nsshd_permit_root_login: no\nsshd_password_authentication: no\nsshd_x11_forwarding: no\nsshd_use_pam: yes\nsshd_challenge_response_authentication: no\n",
"license_type": "no_license",
"detected_licenses": ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 534,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/standup-webapp | 187 | [
"no_license"
] | [
{
"path": "roles/standup-webapp/tasks/main.yml",
"content": "---\n\n- name: Create log directory\n file:\n path: /var/log/standup-webapp\n state: directory\n mode: 0755\n owner: www-data\n group: www-data\n\n- name: Create config directory\n file:\n path: /etc/standup\n state: directo... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1125,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/tailon | 187 | [
"no_license"
] | [
{
"path": "roles/tailon/defaults/main.yml",
"content": "---\ntailon_name: tailon\ntailon_virtualenv: /opt/tailon\ntailon_config_dir: /etc/tailon\ntailon_user: www-data\ntailon_group: www-data\n\ntailon_ip: 0.0.0.0\ntailon_port: 8080\ntailon_allow_transfers: true\ntailon_follow_names: false\ntailon_relative_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1556,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/uwsgi | 187 | [
"no_license"
] | [
{
"path": "roles/uwsgi/templates/vassal.ini",
"content": "# {{ ansible_managed }}\n[uwsgi]\n{% for key, value in item.config.items() -%}\n{{ key }} = {{ value }}\n{% endfor %}\n\n{% for key, value in (item.env | default({})).items() -%}\nenv = {{ key }}={{value}}\n{% endfor %}\n",
"license_type": "no_li... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1407,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/zookeeper | 187 | [
"no_license"
] | [
{
"path": "roles/zookeeper/tasks/main.yml",
"content": "---\n- name: Install zookeeper packages\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - zookeeper\n - zookeeperd\n\n- name: Deploy configuration files\n template:\n src: \"{{ item }}\"\n dest: \"{{ zookeeper_config... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 899,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/zuul-base | 187 | [
"no_license"
] | [
{
"path": "roles/zuul-base/meta/main.yml",
"content": "dependencies:\n - role: python-app\n name: zuul\n python_app_python3: \"{{ zuul_zuul_v3 | bool }}\"\n python_app_pipdeps:\n - name: pyzmq\n when: not zuul_zuul_v3\n - name: ansible\n - name: statsd\n - name: git+http... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3960,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/zuul-executor | 187 | [
"no_license"
] | [
{
"path": "roles/zuul-executor/tasks/main.yml",
"content": "---\n- name: \"Create zuul's ~/.ssh\"\n file:\n path: \"{{ zuul_home_dir }}/.ssh/\"\n state: directory\n owner: zuul\n group: zuul\n mode: 0700\n\n- name: Install zuul private ssh key\n copy:\n dest: \"{{ zuul_home_dir }}/.ssh/i... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1730,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/zuul-launcher | 187 | [
"no_license"
] | [
{
"path": "roles/zuul-launcher/files/jobs/tox.yaml",
"content": "- job:\n name: tox_py27\n node: 'ubuntu-xenial'\n\n builders:\n - zuul-git-prep\n - shell: |\n tmpdir=$(mktemp -d)\n trap \"rm -rf $tmpdir\" EXIT\n virtualenv $tmpdir/venv\n source $tmpdir... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 4424,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/zuul-scheduler | 187 | [
"no_license"
] | [
{
"path": "roles/zuul-scheduler/meta/main.yml",
"content": "---\ndependencies:\n - role: zuul-base\n zuul_service_name: zuul-scheduler\n zuul_service_start: no\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 103
},
{
"path": "roles/zuul-scheduler/tasks/mai... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2433,
"all_permissive": false
} |
ansible_role | BonnyCI/hoist | b367bbc6f7844824c9dffba445c863667a4de7f0 | 5 | roles/zuul-server | 187 | [
"no_license"
] | [
{
"path": "roles/zuul-server/files/etc/zuul/config/bonnyci_functions.py",
"content": "# No one is proud of this file. Everything here should have a configuration\n# option and this should be removable.\n\ndef set_log_path(item, job, params):\n # the default log directory doesn't really make sense for git... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 6530,
"all_permissive": false
} |
ansible_role | iptracej/mykali | aef70d51ed252f4979b9a19b076bdd41a6d6e5f5 | 2 | roles/configure-docker | 187 | [
"no_license"
] | [
{
"path": "roles/configure-docker/tasks/main.yml",
"content": "# tasks file for configure-docker\n- name: install dependencies\n apt:\n name: \"{{item}}\"\n state: present\n update_cache: yes\n loop:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg-agent\n - software-... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1038,
"all_permissive": false
} |
ansible_role | iptracej/mykali | aef70d51ed252f4979b9a19b076bdd41a6d6e5f5 | 2 | roles/configure-emacs | 187 | [
"no_license"
] | [
{
"path": "roles/configure-emacs/files/init.el",
"content": "(add-to-list 'backup-directory-alist\n\t (cons \".\" \"~/.emacs.d/backups/\"))\n(customize-set-variable\n 'tramp-backup-directory-alist backup-directory-alist)\n",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 869,
"all_permissive": false
} |
ansible_role | iptracej/mykali | aef70d51ed252f4979b9a19b076bdd41a6d6e5f5 | 2 | roles/configure-kali_env | 187 | [
"no_license"
] | [
{
"path": "roles/configure-kali_env/files/.bash_aliases",
"content": "# Common aliaes\n\n#alias ll='ls -l'\nalias la='ls -A'\nalias l='ls -CF'\n\nalias l='ls -la'\nalias rm='rm -i'\nalias mv='mv -i'\n\nalias refresh='source $HOME/.bashrc'\nalias refresh_fish='source $HOME/.config/fish/config.fish'\n\n# fish... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 3111,
"all_permissive": false
} |
ansible_role | iptracej/mykali | aef70d51ed252f4979b9a19b076bdd41a6d6e5f5 | 2 | roles/configure-mytools | 187 | [
"no_license"
] | [
{
"path": "roles/configure-mytools/vars/main.yml",
"content": "---\n# vars file for configure-mytools\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 38
},
{
"path": "roles/configure-mytools/tasks/main.yml",
"content": "# tasks file for configure-mytool\n- na... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 929,
"all_permissive": false
} |
ansible_role | iptracej/mykali | aef70d51ed252f4979b9a19b076bdd41a6d6e5f5 | 2 | roles/configure-nmap | 187 | [
"no_license"
] | [
{
"path": "roles/configure-nmap/vars/main.yml",
"content": "---\n# vars file for configure-nmap\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 35
},
{
"path": "roles/configure-nmap/defaults/main.yml",
"content": "---\n# defaults file for configure-nmap\n",
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 910,
"all_permissive": false
} |
ansible_role | iptracej/mykali | aef70d51ed252f4979b9a19b076bdd41a6d6e5f5 | 2 | roles/configure-tmux | 187 | [
"no_license"
] | [
{
"path": "roles/configure-tmux/files/.tmux.conf",
"content": "# Last Modified: 2022-01-07 20:40:34 kali>\n\n# shell\nset-option -g default-shell /usr/bin/bash\n\n# Automatic screenshot settings in tmux.sh\n##set-option -g default-command \"bash --rcfile ~/.tmux/tmux.sh\"\n##set -g default-command \"bash --... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 5812,
"all_permissive": false
} |
ansible_role | iptracej/mykali | aef70d51ed252f4979b9a19b076bdd41a6d6e5f5 | 2 | roles/configure-vscode | 187 | [
"no_license"
] | [
{
"path": "roles/configure-vscode/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - configure-vscode\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 75
},
{
"path": "roles/configure-vscode/handlers/main.yml",
"content"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2338,
"all_permissive": false
} |
ansible_role | iptracej/mykali | aef70d51ed252f4979b9a19b076bdd41a6d6e5f5 | 2 | roles/install-tools | 187 | [
"no_license"
] | [
{
"path": "roles/install-tools/tasks/pip-tools.yml",
"content": "- name: install pypi tools via pip\n pip:\n name: \"{{ item }}\"\n state: present\n loop:\n - pipenv\n - updog",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 116
},
{
"path": "roles/ins... | {
"task_files": 7,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 12742,
"all_permissive": false
} |
ansible_role | AthabascaUniversity/openshift_origin_rhel | 2abc5d7e9207b433fdb04eac820077af9648f19a | 0 | roles/activemq | 187 | [
"no_license"
] | [
{
"path": "roles/activemq/tasks/main.yml",
"content": "---\n### main.yml - ActiveMQ role for an OpenShift Origin deployment \n#\n# Ansible playbook to deploy OpenShift Origin using nightly builds\n#\n\n- name: Configure Persistent FirewallD for ActiveMQ\n tags: configure\n shell: lokkit --port 61613:tcp\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1176,
"all_permissive": false
} |
ansible_role | AthabascaUniversity/openshift_origin_rhel | 2abc5d7e9207b433fdb04eac820077af9648f19a | 0 | roles/broker | 187 | [
"no_license"
] | [
{
"path": "roles/broker/tasks/main.yml",
"content": "---\n\n- name: Set hostname (RHEL)\n tags: configure\n lineinfile: dest=/etc/sysconfig/network line=\"HOSTNAME={{ broker_fqdn }}\" regexp='HOSTNAME'\n\n- name: Set broker_fqdn in /etc/hosts\n tags: configure\n lineinfile: dest=/etc/hosts\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 8209,
"all_permissive": false
} |
ansible_role | AthabascaUniversity/openshift_origin_rhel | 2abc5d7e9207b433fdb04eac820077af9648f19a | 0 | roles/common | 187 | [
"no_license"
] | [
{
"path": "roles/common/templates/openshift-origin-nightly-deps.repo.j2",
"content": "[openshift-origin-nightly-deps]\nname=OpenShift Origin Supplemental Deps\nbaseurl=https://mirror.openshift.com/pub/openshift-origin/nightly/rhel-{{ ansible_distribution_version[0]}}/dependencies/{{ ansible_architecture }}/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4640,
"all_permissive": false
} |
ansible_role | AthabascaUniversity/openshift_origin_rhel | 2abc5d7e9207b433fdb04eac820077af9648f19a | 0 | roles/dns | 187 | [
"no_license"
] | [
{
"path": "roles/dns/tasks/main.yml",
"content": "---\n### main.yml - named role for an OpenShift Origin deployment \n#\n# Ansible playbook to deploy OpenShift Origin using nightly builds\n#\n\n- name: Configure Persistent FirewallD for BIND\n tags: configure\n shell: lokkit --service dns\n\n- name: Insta... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1795,
"all_permissive": false
} |
ansible_role | AthabascaUniversity/openshift_origin_rhel | 2abc5d7e9207b433fdb04eac820077af9648f19a | 0 | roles/mcollective-client | 187 | [
"no_license"
] | [
{
"path": "roles/mcollective-client/tasks/main.yml",
"content": "---\n### main.yml - mcollective-client role for an OpenShift Origin deployment \n#\n# Ansible playbook to deploy OpenShift Origin using nightly builds\n#\n\n\n- name: Create mcollective client config directory\n tags: configure\n file: dest=... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 481,
"all_permissive": false
} |
ansible_role | AthabascaUniversity/openshift_origin_rhel | 2abc5d7e9207b433fdb04eac820077af9648f19a | 0 | roles/mongodb | 187 | [
"no_license"
] | [
{
"path": "roles/mongodb/tasks/main.yml",
"content": "---\n### main.yml - mongod role for an OpenShift Origin deployment \n#\n# Ansible playbook to deploy OpenShift Origin using nightly builds\n#\n\n- name: Configure Persistent FirewallD for mongod\n tags: configure\n shell: lokkit --port {{ mongo_db_port... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1805,
"all_permissive": false
} |
ansible_role | AthabascaUniversity/openshift_origin_rhel | 2abc5d7e9207b433fdb04eac820077af9648f19a | 0 | roles/node | 187 | [
"no_license"
] | [
{
"path": "roles/node/templates/pam.sshd-rhel.j2",
"content": "#%PAM-1.0\nauth required pam_sepermit.so\nauth include password-auth\n##FEDORA auth include postlogin\naccount required pam_nologin.so\naccount include password-auth\npassword include passwor... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 11951,
"all_permissive": false
} |
ansible_role | pratamaizzat/unifi-controller | 03625444cdb628948a25610ef3c60307aaaf6722 | 0 | roles/ssl | 187 | [
"no_license"
] | [
{
"path": "roles/ssl/tasks/main.yaml",
"content": "---\n- name: Update and upgrade apt\n apt:\n update_cache: yes\n cache_valid_time: 3600\n upgrade: yes\n\n- name: Install required system packages\n apt:\n pkg:\n - certbot\n - python3-certbot-nginx\n state: latest\n update_cac... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 253,
"all_permissive": false
} |
ansible_role | jchermitano/CPE_MIDEXAM_HERMITANO | 0681fc484b8d6a288fbec825d90d4f6c0bb934a5 | 0 | roles/Lamp_stack | 187 | [
"no_license"
] | [
{
"path": "roles/Lamp_stack/tasks/main.yml",
"content": "- name: Install apache, php and mariadb for Ubuntu\n tags: apache, mariadb, php, ubuntu\n apt:\n name:\n - apache2\n - libapache2-mod-php\n - mariadb-server\n state: latest\n update_cache: yes\n when: ansible_distribution ==... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 596,
"all_permissive": false
} |
ansible_role | saqibali11230/java-property | aefc8713ca68da55d2efaee529764801f13a451e | 0 | roles/fr_java_prop | 187 | [
"no_license"
] | [
{
"path": "roles/fr_java_prop/defaults/main.yaml",
"content": "file_path_dt: \"/opt/opendj/config/java.properties\"\nfile_path_am: \"/opt/opendj/config/java.properties\"\nowner: \"forgerock\"\ngroup: \"forgerock\"\nmode: \"0644\"\nservice_name: \"opendj\"\n",
"license_type": "no_license",
"detected_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 791,
"all_permissive": false
} |
ansible_role | IndikaMaligaspe/replication_service | a7b23e872c925d8cf29f63135e8e33e6ad01714f | 0 | ansible/roles/cache | 187 | [
"no_license"
] | [
{
"path": "ansible/roles/cache/tasks/rabbitmq.yml",
"content": "---\n - name: install rabbitMQ server , apache and PHP5 and setup tools\n apt: name=apache2 state=present\n apt: name=php5 state=present\n\n\n - name: install rabbitMQ server - add ppp to apt-list\n apt_repository: repo='deb http://... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1962,
"all_permissive": false
} |
ansible_role | IndikaMaligaspe/replication_service | a7b23e872c925d8cf29f63135e8e33e6ad01714f | 0 | ansible/roles/consumer | 187 | [
"no_license"
] | [
{
"path": "ansible/roles/consumer/tasks/consumer.yml",
"content": "---\n\n - name: Load vars for replication settings\n include_vars:\n file: \"consumer_settings.yaml\"\n name: consumer_settings\n\n - name: Load vars for replication host\n include_vars:\n file: \"consumer_{{run_host}}... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 4889,
"all_permissive": false
} |
ansible_role | IndikaMaligaspe/replication_service | a7b23e872c925d8cf29f63135e8e33e6ad01714f | 0 | ansible/roles/database | 187 | [
"no_license"
] | [
{
"path": "ansible/roles/database/tasks/main.yml",
"content": "---\n - include: mysql.yml\n - include: python.yml \n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 52
},
{
"path": "ansible/roles/database/tasks/python.yml",
"content": "---\n - name: install ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1036,
"all_permissive": false
} |
ansible_role | IndikaMaligaspe/replication_service | a7b23e872c925d8cf29f63135e8e33e6ad01714f | 0 | ansible/roles/replicator | 187 | [
"no_license"
] | [
{
"path": "ansible/roles/replicator/vars/replication_test.yaml",
"content": "---\n hosts:\n mysql:\n host: 192.168.50.7\n port: 3306\n user: indika\n passwd: <PASSWORD>\n logs:\n persist: replication_service/persist\n log4py_path: replication_service/log4... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 6779,
"all_permissive": false
} |
ansible_role | IndikaMaligaspe/replication_service | a7b23e872c925d8cf29f63135e8e33e6ad01714f | 0 | ansible/roles/webserver | 187 | [
"no_license"
] | [
{
"path": "ansible/roles/webserver/tasks/apache.yml",
"content": "---\n - name: install apache\n apt: name=apache2 state=present\n - name: Copy across new virtial hosts\n template:\n src=virtual-hosts.conf.j2\n dest=/etc/apache2/sites-available/vagrant.conf\n - name: Remove default virtua... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 751,
"all_permissive": false
} |
ansible_role | jjghali/ansible-new-pc-setup | 1d685e81146b19a7565584f365af44369a8dc3f8 | 1 | roles/fedora | 187 | [
"no_license"
] | [
{
"path": "roles/fedora/defaults/main.yml",
"content": "dnf:\n packages:\n - \"htop\"\n - \"zsh\"\n - \"git\"\n - \"snapd\"\n - \"dnf-plugins-core\"\n\t- \"util-linux-user\"\n\ndocker:\n repo-link: \"https://download.docker.com/linux/fedora/docker-ce.repo\"\n pack... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 731,
"all_permissive": false
} |
ansible_role | jjghali/ansible-new-pc-setup | 1d685e81146b19a7565584f365af44369a8dc3f8 | 1 | roles/flatpak | 187 | [
"no_license"
] | [
{
"path": "roles/flatpak/defaults/main.yml",
"content": "flatpak:\n source: flathub\n method: user\n packages:\n - \"com.discordapp.Discord\"\n - \"com.parsecgaming.parsec\"\n - \"org.gtk.Gtk3theme.Pop-dark\"",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 527,
"all_permissive": false
} |
ansible_role | jjghali/ansible-new-pc-setup | 1d685e81146b19a7565584f365af44369a8dc3f8 | 1 | roles/nvm | 187 | [
"no_license"
] | [
{
"path": "roles/nvm/tasks/main.yml",
"content": "- name: NVM - Installing NVM\n shell: >\n curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash\n args:\n creates: \"{{ ansible_env.HOME }}/.nvm/nvm.sh\"\n\n- name: NVM - Configure for zsh Part 1\n lineinfile: \n path: \... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 986,
"all_permissive": false
} |
ansible_role | jjghali/ansible-new-pc-setup | 1d685e81146b19a7565584f365af44369a8dc3f8 | 1 | roles/pip | 187 | [
"no_license"
] | [
{
"path": "roles/pip/defaults/main.yml",
"content": "pip:\n packages:\n - \"docker-compose\"\n - \"virtualenv\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 64
},
{
"path": "roles/pip/tasks/main.yml",
"content": "- name: PIP - Install packages\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 133,
"all_permissive": false
} |
ansible_role | jjghali/ansible-new-pc-setup | 1d685e81146b19a7565584f365af44369a8dc3f8 | 1 | roles/snap | 187 | [
"no_license"
] | [
{
"path": "roles/snap/tasks/main.yml",
"content": "- name: Snap - Install packages (classic method)\n snap:\n name: \"{{ snap.classic }}\"\n classic: yes\n become: no\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 119
},
{
"path": "roles/snap/defaults/... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 209,
"all_permissive": false
} |
ansible_role | jjghali/ansible-new-pc-setup | 1d685e81146b19a7565584f365af44369a8dc3f8 | 1 | roles/ubuntu | 187 | [
"no_license"
] | [
{
"path": "roles/ubuntu/tasks/main.yml",
"content": "- name: APT - Change mirror address\n become: yes\n replace:\n path: /etc/apt/sources.list \n regexp: 'http:\\/\\/us\\.archive\\.ubuntu\\.com\\/ubuntu\\/'\n replace: 'http://ubuntu.mirror.iweb.ca/'\n backup: yes\n\n- name: APT - Updat... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1724,
"all_permissive": false
} |
ansible_role | fzqneo/devel-env | 1f4ce202f7f1ad6a44ebd25fb07031104e4eb555 | 0 | roles/fzf | 187 | [
"no_license"
] | [
{
"path": "roles/fzf/tasks/main.yml",
"content": "---\n- name: Clone fzf repo\n git:\n repo: https://github.com/junegunn/fzf.git\n depth: 1\n dest: '{{ ansible_env.HOME }}/.fzf'\n\n- name: Install fzf\n expect:\n command: '{{ ansible_env.HOME }}/.fzf/install'\n responses:\n 'fuzzy auto... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 336,
"all_permissive": false
} |
ansible_role | fzqneo/devel-env | 1f4ce202f7f1ad6a44ebd25fb07031104e4eb555 | 0 | roles/oh-my-zsh | 187 | [
"no_license"
] | [
{
"path": "roles/oh-my-zsh/tasks/powerlevel9k.yml",
"content": "- name: Clone Powerlevel9k\n git:\n repo: https://github.com/bhilburn/powerlevel9k.git\n dest: '{{ ansible_env.HOME }}/.oh-my-zsh/custom/themes/powerlevel9k'\n\n- block:\n - name: Select Powerlevel9k theme in .zshrc\n lineinf... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2867,
"all_permissive": false
} |
ansible_role | fzqneo/devel-env | 1f4ce202f7f1ad6a44ebd25fb07031104e4eb555 | 0 | roles/tmux | 187 | [
"no_license"
] | [
{
"path": "roles/tmux/tasks/main.yml",
"content": "---\n- name: Install tmux\n become: yes\n package:\n name: tmux\n state: present\n\n- name: Configure tmux status bar\n blockinfile:\n path: '{{ ansible_env.HOME }}/.tmux.conf'\n create: yes\n backup: yes\n marker: '# {mark} Ansible man... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 500,
"all_permissive": false
} |
ansible_role | fzqneo/devel-env | 1f4ce202f7f1ad6a44ebd25fb07031104e4eb555 | 0 | roles/zsh | 187 | [
"no_license"
] | [
{
"path": "roles/zsh/tasks/main.yml",
"content": "---\n- name: Install git and zsh\n become: yes\n package:\n name: \"{{ item }}\"\n state: present\n with_items:\n - git\n - zsh\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 130
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 130,
"all_permissive": false
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/common | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/common/defaults/main.yml",
"content": "---\ncommon_enable: True\ncommon_upgrade_base: False\ncommon_rpms:\n- yum-utils\n- python2-pip\n- python2-requests\n- ebtables\n- socat\n- ntp\n- jq\n- nfs-utils\n- cloud-utils\n- bind-utils\n- firewalld\ncommon_extra_rpms: []\ncommon_debs:\n- ... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1883,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/docker | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/docker/templates/etc/docker/daemon.json",
"content": "{\n \"exec-opts\": [\"native.cgroupdriver={{ 'systemd' if ansible_os_family|lower == 'redhat' else 'cgroupfs'|safe }}\"],\n \"log-driver\": \"json-file\",\n \"log-opts\": {\n \"max-size\": \"{{ docker_logging_max_size }}\"\... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 3087,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/etcd | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/etcd/defaults/main.yml",
"content": "---\netcd_enable: True\netcd_cluster_token: <PASSWORD>\netcd_interface: eth0\netcd_version: v3.2.10\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 96
},
{
"path": "ansible/role... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1296,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/kubernetes | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/kubernetes/tasks/debian.yml",
"content": "---\n- name: add the kubernetes apt repo key\n apt_key:\n url: \"{{ kubernetes_apt_key_url }}\"\n state: present\n register: apt_key_result\n until: apt_key_result is success\n retries: 5\n delay: 5\n\n- name: add the kubernetes a... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 5046,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/kubernetes-cni | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/kubernetes-cni/tasks/main.yml",
"content": "---\n- pip:\n name:\n - pyyaml\n - jsonpath-ng\n\n- include_tasks: calico.yml\n when: kubernetes_cni_plugin == \"calico\"\n\n- include_tasks: flannel.yml\n when: kubernetes_cni_plugin == \"flannel\"\n\n- include_tasks: canal.yml... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3027,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/kubernetes-common | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/kubernetes-common/defaults/main.yml",
"content": "---\nkubernetes_common_disable_swap: True\nkubernetes_common_manage_etc_hosts: False\nkubernetes_common_api_fqdn: k8s.example.com\nkubernetes_common_api_ip: 10.10.10.3\nkubernetes_common_primary_interface: eth0\n\n# kubelet_extra_arg... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2486,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/kubernetes-master | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/kubernetes-master/tasks/upgrade.yml",
"content": "---\n- name: update kubelet config\n command: \"kubeadm init phase kubelet-start --config /etc/kubernetes/kubeadm.conf\"\n retries: 5\n delay: 3\n\n- name: update new control plane manifests\n command: \"kubeadm init phase contro... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 5758,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/kubernetes-node | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/kubernetes-node/meta/main.yml",
"content": "---\ndependencies:\n - { role: kubernetes-common }\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 50
},
{
"path": "ansible/roles/kubernetes-node/defaults/main.yml",
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1200,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/kubernetes-user | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/kubernetes-user/defaults/main.yml",
"content": "---\nkubernetes_users:\n- { user: vagrant, group: vagrant, home: /home/vagrant }\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 79
},
{
"path": "ansible/roles/kubern... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 874,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/packer-cleanup | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/packer-cleanup/tasks/main.yml",
"content": "---\n- name: cleanup packer artifacts\n file:\n state: absent\n path: \"{{ item }}\"\n with_items:\n - /root/.ssh/authorized_keys\n - \"/home/{{ ansible_env.SUDO_USER }}/.ssh/authorized_keys\"\n - /etc/machine-id\n - /v... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 993,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/providers | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/providers/defaults/main.yml",
"content": "---\npacker_builder_type: ''\nprovider_name: \"{{ 'aws' if packer_builder_type.startswith('amazon') else '' }}\"",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 108
},
{
"pat... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 353,
"all_permissive": true
} |
ansible_role | vmware-archive/wardroom | 617cf124394e9d05df9ba641a1e47fdeaf8342ec | 164 | ansible/roles/test_loadbalancer | 184 | [
"permissive"
] | [
{
"path": "ansible/roles/test_loadbalancer/templates/etc/nginx/nginx.conf",
"content": "events {}\n\nstream {\n upstream kubernetes {\n {% for host in groups['masters'] %}\n server {{ hostvars[host]['ansible_' + test_loadbalancer_interface]['ipv4']['address'] }}:6443;\n {% endfor %}\n }\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1357,
"all_permissive": true
} |
ansible_role | andayalyka/HOA14.1 | 44eabb581a4122b8e7caa028cdf02cf8c6ccba3e | 0 | roles/glance | 184 | [
"no_license"
] | [
{
"path": "roles/glance/tasks/configure.yml",
"content": "- name: Copying the config file\n copy: \n src: glance-api.conf\n dest: /etc/glance/glance-api.conf\n owner: root\n group: glance\n mode: 0640\n when: ansible_distribution == \"CentOS\"\n\n- name: Populating the database\n command: ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1126,
"all_permissive": false
} |
ansible_role | andayalyka/HOA14.1 | 44eabb581a4122b8e7caa028cdf02cf8c6ccba3e | 0 | roles/keystone | 184 | [
"no_license"
] | [
{
"path": "roles/keystone/handlers/main.yml",
"content": "- name: Creating link\n command: ln -s /usr/share/keystone/wsgi-keystone.conf /etc/httpd/conf.d/\n failed_when: false\n no_log: true\n when: ansible_distribution == \"CentOS\"\n\n\n- name: Reloading firewall\n command: firewall-cmd --reload\n w... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1054,
"all_permissive": false
} |
ansible_role | andayalyka/HOA14.1 | 44eabb581a4122b8e7caa028cdf02cf8c6ccba3e | 0 | roles/nova | 184 | [
"no_license"
] | [
{
"path": "roles/nova/tasks/install.yml",
"content": "- name: Install nova and its dependencies in CentOS\n yum:\n name: \n - openstack-nova-api \n - openstack-nova-conductor\n - openstack-nova-novncproxy \n - openstack-nova-scheduler\n when: ansible_distribution == \"CentOS\"\n\n-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 598,
"all_permissive": false
} |
ansible_role | etherge/ansible-hadoop | 02313125f08b20d7948c1386302a305e0020fc2c | 0 | playbooks/roles/ambari-agent | 184 | [
"no_license"
] | [
{
"path": "playbooks/roles/ambari-agent/vars/redhat.yml",
"content": "ambari_repo_url: \"http://public-repo-1.hortonworks.com/ambari/centos6/1.x/updates/1.7.0/ambari.repo\"\nambari_repo_file: \"/etc/yum.repos.d/ambari.repo\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 967,
"all_permissive": false
} |
ansible_role | thawkson/ansible_user | 13ba86e2d2a7fcd9dd6f43deda9a74ca39184f66 | 0 | roles/setup_ansible_user | 184 | [
"no_license"
] | [
{
"path": "roles/setup_ansible_user/tasks/main.yml",
"content": "---\n- name: Create ansible user\n tags:\n - configuration\n - security\n user: name=ansible shell=/bin/bash state=present password={{<PASSWORD>}}\n\n- name: Copy Ansible user Authorized Keys\n tags:\n - configuration\n - security... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 553,
"all_permissive": false
} |
ansible_role | itgoldio/freeton-rfld-ansible | 212280120ea3dbc927dde6dcc87dd970c949155b | 0 | roles/monitoring_agent | 184 | [
"permissive"
] | [
{
"path": "roles/monitoring_agent/templates/ton-env.j2",
"content": "#!/bin/bash -eE\n\n# it is rustnet\n# 0 = false\n# 1 = true\nexport TON_IS_RUSTNET={% if ton_node_config == \"rfld\" %}1{% else %}0{% endif %}\n\n# path to this file\nexport TON_ENV_FILE_PATH=\"{{ ton_node_scripts }}/ton-env.sh\"\n\n# path... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 4131,
"all_permissive": true
} |
ansible_role | itgoldio/freeton-rfld-ansible | 212280120ea3dbc927dde6dcc87dd970c949155b | 0 | roles/system | 184 | [
"permissive"
] | [
{
"path": "roles/system/tasks/main.yml",
"content": "---\n\n- name: Create TON group\n group:\n name: \"{{ ton_node_group }}\"\n state: present\n\n- name: Create TON user\n user:\n name: \"{{ ton_node_user }}\"\n comment: \"TON node user\"\n group: \"{{ ton_node_group }}\"\n shell: /bin/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2319,
"all_permissive": true
} |
ansible_role | itgoldio/freeton-rfld-ansible | 212280120ea3dbc927dde6dcc87dd970c949155b | 0 | roles/ton_node_compile | 184 | [
"permissive"
] | [
{
"path": "roles/ton_node_compile/tasks/main.yml",
"content": "- name: Create ton dirs (RUST)\n file:\n path: \"{{ item }}\"\n state: directory\n owner: \"{{ ton_node_user }}\"\n group: \"{{ ton_node_group }}\"\n mode: u=rwx,g=rx,o=\n loop:\n - \"{{ ton_node_src_dir }}\"\n - \"{{ ton_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 7953,
"all_permissive": true
} |
ansible_role | itgoldio/freeton-rfld-ansible | 212280120ea3dbc927dde6dcc87dd970c949155b | 0 | roles/ton_node_deploy | 184 | [
"permissive"
] | [
{
"path": "roles/ton_node_deploy/tasks/main.yml",
"content": "---\n\n- name: Copy ton node tools binaries\n copy:\n src: \"{{ ton_node_src_dir }}/release/{{ item }}\"\n dest: \"{{ ton_node_tools_dir }}/{{ item }}\"\n owner: \"{{ ton_node_user }}\"\n group: \"{{ ton_node_group }}\"\n mode: u=... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 4027,
"all_permissive": true
} |
ansible_role | itgoldio/freeton-rfld-ansible | 212280120ea3dbc927dde6dcc87dd970c949155b | 0 | roles/ton_node_flush_db | 184 | [
"permissive"
] | [
{
"path": "roles/ton_node_flush_db/tasks/main.yml",
"content": "---\n\n- name: Remove generated earlier configs and flush db\n block:\n - name: Stop ton-rnode service\n service:\n name: ton-rnode\n state: stopped\n - name: Delete old configs and flush db\n file:\n path:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 567,
"all_permissive": true
} |
ansible_role | itgoldio/freeton-rfld-ansible | 212280120ea3dbc927dde6dcc87dd970c949155b | 0 | roles/ton_node_genconfig | 184 | [
"permissive"
] | [
{
"path": "roles/ton_node_genconfig/tasks/main.yml",
"content": "---\n\n- name: Delete old configs\n file:\n path: \"{{ item }}\"\n state: absent\n loop:\n - \"{{ ton_rnode_config_dir }}/config.json\"\n - \"{{ ton_rnode_config_dir }}/console.json\"\n - \"{{ ton_rnode_config_dir }}/console_c... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 17837,
"all_permissive": true
} |
ansible_role | Dannyvon/ansible-playbook | 5a5fdf3c04e2af4a2ef594c7baab206139a14ec2 | 0 | redis-cluster/roles/clear | 184 | [
"no_license"
] | [
{
"path": "redis-cluster/roles/clear/tasks/main.yml",
"content": "---\n- name: print info logs\n debug: msg=The host ip is {{ inventory_hostname }} port vlue is {{ cluster_port }}\n- name: Clear redis Server\n shell: \"rm -rf /data/yzt-redis && docker rm -f redis-{{ cluster_port }} \"\n",
"license_typ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 216,
"all_permissive": false
} |
ansible_role | Jinoy/tomcat | 262e339856f781858204d8c6f4da2fe33748dd73 | 0 | roles/nginx | 184 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n- name: Install EPEL release for nginx\n yum: name=epel-release state=present\n\n- name: Install nginx\n yum: name=nginx state=present\n notify:\n - start nginx\n\n- name: Install Firewalld\n yum: name=firewalld state=present\n\n- name: Firewal... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 534,
"all_permissive": false
} |
ansible_role | Jinoy/tomcat | 262e339856f781858204d8c6f4da2fe33748dd73 | 0 | roles/sonarqube | 184 | [
"no_license"
] | [
{
"path": "roles/sonarqube/tasks/main.yml",
"content": "---\n- name: Install unzip\n yum: name=unzip state=present\n\n- name: Install sonarqube\n geturl: url=https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-6.4.zipdest=/opt/sonarqube-6.4.zip\n\n- name: Extract sonarqube\n command: chdir=/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 633,
"all_permissive": false
} |
ansible_role | Sebastienkusz/B2E3 | acd55a9c79ce160eaa45664fa294fd0a1663b86e | 0 | Ansible/roles/redis | 184 | [
"no_license"
] | [
{
"path": "Ansible/roles/redis/handlers/main.yml",
"content": "- name: redis_restart\n service: \n name: redis-server \n state: restarted \n enabled: yes\n ",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 99
},
{
"path": "Ansible/roles/redis/tasks/main.y... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 462,
"all_permissive": false
} |
ansible_role | dascog/ansible-1day | 0d382b5de0805aae65d4cfa4e328af8cbff86100 | 1 | solutions/lab-3/roles/nodejs-express-sample | 184 | [
"no_license"
] | [
{
"path": "solutions/lab-3/roles/nodejs-express-sample/tasks/main.yml",
"content": "---\n# tasks file for nodejs-express-sample\n- name: Setup the yum repository for Nodejs\n get_url:\n url: https://rpm.nodesource.com/setup_16.x\n dest: ./yum-nodejs-setup.sh\n mode: 0755\n\n- name: run the s... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1260,
"all_permissive": false
} |
ansible_role | andrew-klassen/vault_with_consul | 7021f4c77205c4ae84086b97e2d0201d77c32ee2 | 0 | ansible/roles/consul | 184 | [
"no_license"
] | [
{
"path": "ansible/roles/consul/tasks/main.yml",
"content": "\n- name: install installation dependencies\n dnf:\n name:\n - unzip\n state: latest\n\n- name: download and install consul binary\n unarchive:\n src: '{{ consul_binary }}'\n dest: /usr/local/bin\n remote_src: yes\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1538,
"all_permissive": false
} |
ansible_role | andrew-klassen/vault_with_consul | 7021f4c77205c4ae84086b97e2d0201d77c32ee2 | 0 | ansible/roles/vault | 184 | [
"no_license"
] | [
{
"path": "ansible/roles/vault/tasks/main.yml",
"content": "\n- name: download and install vault binary\n unarchive:\n src: '{{ vault_binary }}'\n dest: /usr/local/bin\n remote_src: yes\n\n- name: add vault user\n user:\n name: vault\n shell: '/bin/false'\n\n- name: create vault directories... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1102,
"all_permissive": false
} |
ansible_role | shensw4/ansible-pgpool | f5d3eced5872d93d988e072eb2f969630893b802 | 0 | roles/pgpool-ii | 184 | [
"no_license"
] | [
{
"path": "roles/pgpool-ii/defaults/main.yaml",
"content": "# pgpool offline rpm directory\npgpool_rpm_relpath: pgpool-ii\n\n# Install pgpool online, if the pgpool offline RPM does not exist\npgpool_repo: http://www.pgpool.net/yum/rpms/4.1/redhat/rhel-7-x86_64/pgpool-II-release-4.1-1.noarch.rpm\npgpool_yum:... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 8905,
"all_permissive": false
} |
ansible_role | shensw4/ansible-pgpool | f5d3eced5872d93d988e072eb2f969630893b802 | 0 | roles/postgresql | 184 | [
"no_license"
] | [
{
"path": "roles/postgresql/templates/pgpass.j2",
"content": "{% for host in groups['pgsqlHA'] %}\n{{ host }}:{{ pgport }}:replication:repl:{{ db_repl_password }}\n{{ host }}:{{ pgport }}:postgres:postgres:{{ db_postgres_password }}\n{{ hostvars[host]['ansible_hostname'] }}:{{ pgport }}:replication:repl:{{ ... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 6342,
"all_permissive": false
} |
ansible_role | kjkent/os | 10706abb4a46ecc5313fd2c09e81c800d2c7e891 | 0 | roles/aur | 184 | [
"no_license"
] | [
{
"path": "roles/aur/tasks/main.yaml",
"content": "---\n# Prep system for AUR management. Requires user that\n# can access `sudo pacman` without password.\n# https://github.com/kewlfft/ansible-aur\n\n- name: Configure system for AUR and install packages\n when: \"'Arch' in ansible_distribution\"\n block:\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1445,
"all_permissive": false
} |
ansible_role | kjkent/os | 10706abb4a46ecc5313fd2c09e81c800d2c7e891 | 0 | roles/base | 184 | [
"no_license"
] | [
{
"path": "roles/base/tasks/locale.yaml",
"content": "---\n- name: Set console keyboard layout\n ansible.builtin.copy:\n mode: \"0600\"\n owner: root\n group: root\n content: \"{{ kb_layout.console }}\"\n dest: /etc/vconsole\n force: true\n\n- name: Set system locale\n community.general.... | {
"task_files": 12,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 12,
"total_bytes": 10300,
"all_permissive": false
} |
ansible_role | kjkent/os | 10706abb4a46ecc5313fd2c09e81c800d2c7e891 | 0 | roles/devel | 184 | [
"no_license"
] | [
{
"path": "roles/devel/tasks/main.yaml",
"content": "---\n- name: Install development packages (pacman)\n ansible.builtin.package:\n state: present\n name:\n - ansible\n - ansible-lint\n - arduino-ide\n - base-devel\n - clang\n - dfu-util\n - direnv\n - docker\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 553,
"all_permissive": false
} |
ansible_role | kjkent/os | 10706abb4a46ecc5313fd2c09e81c800d2c7e891 | 0 | roles/print_3d | 184 | [
"no_license"
] | [
{
"path": "roles/print_3d/tasks/main.yaml",
"content": "---\n- name: Create uaccess udev rule for /dev/tty3DPrinter\n ansible.builtin.copy:\n content: |\n SUBSYSTEM==\"tty\", ATTRS{idVendor}==\"1a86\", ATTRS{idProduct}==\"7523\", TAG+=\"uaccess\", SYMLINK+=\"tty3dPrinter\"\n dest: /etc/udev/rule... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 745,
"all_permissive": false
} |
ansible_role | m-stojanovic/aws-infrastructure-ansible | 3ae62bfd83632d0ebe58b774940a80ab3b3ee1ba | 3 | large-ansible-infrastructure/roles/devops-service-chat | 188 | [
"no_license"
] | [
{
"path": "large-ansible-infrastructure/roles/devops-service-chat/vars/main.yml",
"content": "service: devops-service-chat\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 29
},
{
"path": "large-ansible-infrastructure/roles/devops-service-chat/tasks/main.yml",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 894,
"all_permissive": false
} |
ansible_role | m-stojanovic/aws-infrastructure-ansible | 3ae62bfd83632d0ebe58b774940a80ab3b3ee1ba | 3 | large-ansible-infrastructure/roles/devops-service-commerce | 188 | [
"no_license"
] | [
{
"path": "large-ansible-infrastructure/roles/devops-service-commerce/templates/commerce.service.j2",
"content": "#!/bin/bash\n### BEGIN INIT INFO\n# Provides: commerce server\n# Required-Start: $all\n# Required-Stop:\n# Default-Start: 2 3 4 5\n# Default-Stop: 0 1 6\n# Short-Description... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3028,
"all_permissive": false
} |
ansible_role | m-stojanovic/aws-infrastructure-ansible | 3ae62bfd83632d0ebe58b774940a80ab3b3ee1ba | 3 | large-ansible-infrastructure/roles/devops-service-lyrics | 188 | [
"no_license"
] | [
{
"path": "large-ansible-infrastructure/roles/devops-service-lyrics/tasks/main.yml",
"content": "--- # Prepare directories\n- name: Create directory structure\n file:\n path: \"{{ item }}\"\n owner: \"{{ user }}\"\n group: \"{{ user }}\"\n mode: 0755\n state: directory\n with_items:\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 819,
"all_permissive": false
} |
ansible_role | m-stojanovic/aws-infrastructure-ansible | 3ae62bfd83632d0ebe58b774940a80ab3b3ee1ba | 3 | large-ansible-infrastructure/roles/devops-service-server | 188 | [
"no_license"
] | [
{
"path": "large-ansible-infrastructure/roles/devops-service-server/templates/server.service.j2",
"content": "\n#!/bin/bash\n### BEGIN INIT INFO\n# Provides: devops-service server\n# Required-Start: $all\n# Required-Stop:\n# Default-Start: 2 3 4 5\n# Default-Stop: 0 1 6\n# Short-Descrip... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3231,
"all_permissive": false
} |
ansible_role | m-stojanovic/aws-infrastructure-ansible | 3ae62bfd83632d0ebe58b774940a80ab3b3ee1ba | 3 | large-ansible-infrastructure/roles/docker_containers | 188 | [
"no_license"
] | [
{
"path": "large-ansible-infrastructure/roles/docker_containers/tasks/main.yml",
"content": "---\n- import_tasks: prepare.yml\n tags: [prepare]\n\n- import_tasks: install_amazon.yml\n tags: [install_amazon]\n\n- import_tasks: config.yml\n tags: [config]\n\n- import_tasks: docker-compose-up.yml\n tags: [... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1821,
"all_permissive": false
} |
ansible_role | m-stojanovic/aws-infrastructure-ansible | 3ae62bfd83632d0ebe58b774940a80ab3b3ee1ba | 3 | large-ansible-infrastructure/roles/nginx | 188 | [
"no_license"
] | [
{
"path": "large-ansible-infrastructure/roles/nginx/tasks/main.yml",
"content": "--- # System configuration and updates\n- name: Set hostname\n hostname:\n name: \"{{ var_name }}-{{ dev_environment }}-webserver\"\n\n- name: Get nginx release\n shell: amazon-linux-extras install -y nginx1.12\n when: an... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 592,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.