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 | archlinuxpl/infrastructure | 5fa20b038b1422050bdfbb919a85a15cd027bbbf | 0 | roles/php-fpm | 7,818 | [
"no_license"
] | [
{
"path": "roles/php-fpm/tasks/main.yaml",
"content": "---\n- name: install php-fpm\n pacman: name=php-fpm state=present\n\n- name: install php-fpm units\n copy: >\n src={{ item }} dest=/etc/systemd/system/{{ item }}\n owner=root group=root mode=0644\n with_items:\n - php-fpm@.socket\n - php-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 280,
"all_permissive": false
} |
ansible_role | archlinuxpl/infrastructure | 5fa20b038b1422050bdfbb919a85a15cd027bbbf | 0 | roles/sshd | 7,818 | [
"no_license"
] | [
{
"path": "roles/sshd/tasks/main.yml",
"content": "---\n- name: install openssh\n pacman: name=openssh state=present\n\n- name: configure sshd\n template: >\n src=sshd_config.j2\n dest=/etc/ssh/sshd_config\n owner=root group=root mode=0644\n notify:\n - restart sshd\n\n- name: set file permis... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 842,
"all_permissive": false
} |
ansible_role | archlinuxpl/infrastructure | 5fa20b038b1422050bdfbb919a85a15cd027bbbf | 0 | roles/sudo | 7,818 | [
"no_license"
] | [
{
"path": "roles/sudo/tasks/main.yml",
"content": "---\n- name: install sudo\n pacman: name=sudo state=present\n\n- name: add sudoers to wheel\n user: name=\"{{ item }}\" append=yes groups=wheel\n with_items: \"{{ sudoers }}\"\n\n- name: allow wheel group to use sudo\n lineinfile:\n dest: /etc/sudoer... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 410,
"all_permissive": false
} |
ansible_role | archlinuxpl/infrastructure | 5fa20b038b1422050bdfbb919a85a15cd027bbbf | 0 | roles/users | 7,818 | [
"no_license"
] | [
{
"path": "roles/users/tasks/main.yml",
"content": "---\n- name: create users\n user:\n name: \"{{ item.key }}\"\n group: users\n groups: \"{{ item.value.groups | default([]) | join(',') or omit }}\"\n comment: \"{{ item.value.name }}\"\n state: present\n with_dict: \"{{ users }}\"\n\n- nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 789,
"all_permissive": false
} |
ansible_role | Shubham-pandora/PROD-IPTA | 9cda932209c6f28727f77f3af809d7928875c5d4 | 0 | roles/deploy | 7,818 | [
"no_license"
] | [
{
"path": "roles/deploy/tasks/iptables.yml",
"content": "- name: Configure template\n template:\n src: iptables.j2\n dest: \"{{ iptables_config }}\"\n owner: root\n group: root\n mode: 0640\n backup: yes\n diff: true\n notify:\n - restart iptables\n\n- name: Ensure iptables service i... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 44476,
"all_permissive": false
} |
ansible_role | Horgix/click-count-infra | 50f85ad092904dbb58f7e5deb0e831c4ae6d68b1 | 0 | roles/base | 7,818 | [
"no_license"
] | [
{
"path": "roles/base/tasks/requirements.yml",
"content": "---\n- name: \"Upgrade every package\"\n yum:\n name: \"*\"\n state: latest\n update_cache: yes\n\n- name: \"Docker - Install package\"\n yum:\n name: \"docker\"\n state: present\n\n- name: \"Docker - I... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 5569,
"all_permissive": false
} |
ansible_role | Horgix/click-count-infra | 50f85ad092904dbb58f7e5deb0e831c4ae6d68b1 | 0 | roles/deploy | 7,818 | [
"no_license"
] | [
{
"path": "roles/deploy/tasks/main.yml",
"content": "---\n- name: \"Configure security group\"\n include: secgroup.yml\n tags:\n - ec2\n - secgroup\n\n- name: \"Spawn instances\"\n include: ec2.yml\n tags:\n - ec2\n - spawn\n",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1325,
"all_permissive": false
} |
ansible_role | Horgix/click-count-infra | 50f85ad092904dbb58f7e5deb0e831c4ae6d68b1 | 0 | roles/route53 | 7,818 | [
"no_license"
] | [
{
"path": "roles/route53/tasks/main.yml",
"content": "---\n- name: \"Add Route 53 host records\"\n delegate_to: \"127.0.0.1\"\n connection: local\n route53:\n command: create\n zone: \"{{ domain_name }}\"\n record: \"{{ instance_hostname }}\"\n type: CNAME\n ttl: 60\n va... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 957,
"all_permissive": false
} |
ansible_role | Horgix/click-count-infra | 50f85ad092904dbb58f7e5deb0e831c4ae6d68b1 | 0 | roles/services | 7,818 | [
"no_license"
] | [
{
"path": "roles/services/templates/gitlab_marathon_app.json.j2",
"content": "{\n \"id\": \"/gitlab\",\n \"cmd\": null,\n \"cpus\": 1.0,\n \"mem\": 2048,\n \"disk\": 0,\n \"instances\": 1,\n \"constraints\": [\n [\n \"type\",\n \"CLUSTER\",\n \"svc\"\n ]\n ],\n \"container\": {... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 11780,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-alertmanager | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-alertmanager/tasks/main.yml",
"content": "---\n- include_tasks: preflight.yml\n tags:\n - alertmanager_install\n - alertmanager_configure\n - alertmanager_run\n\n- include_tasks: install.yml\n tags:\n - alertmanager_install\n\n- include_tasks: selinux.yml\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 624,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-grafana | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-grafana/defaults/main.yml",
"content": "---\ngrafana_version: latest\ngrafana_yum_repo_template: etc/yum.repos.d/grafana.repo.j2\ngrafana_manage_repo: true\n\n# Should we use the provisioning capability when possible (provisioning require grafana >= 5.0)\ngrafana_use_pro... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 15153,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-grunner | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-grunner/README.md",
"content": "# Роль устанавливает GitLab Runner \n\nРоль устанавливает дистрибутив Gitlab Runner указанной версии и регистрирует его на указанном сервере с указанными параметрами. \n\n## Переменные \n\nОсновные переменные описаны ниже, полный список... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2750,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-initpreroles | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-initpreroles/defaults/main.yml",
"content": "---\n# defaults file for init-preroles\naddsoft: \"no\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 51
},
{
"path": "src/ansible/roles/install-initpreroles/vars/main.yml",
"co... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 520,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-mysql-service | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-mysql-service/tasks/configure.yml",
"content": "---\n# Проверяем наличие установленных компонентов\n- name: Get MySQL version.\n command: 'mysql --version'\n register: mysql_cli_version\n changed_when: false\n check_mode: false\n# Копируем конфигурационный файл\n- na... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 10980,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-nginx-revproxy | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-nginx-revproxy/defaults/main.yml",
"content": "---\n\nnginx_revproxy_sites: # Список доменов для reverse прокси\n example.com: # Доменное имя\n client_max_body_size: \"256M\"\n ... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 7023,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-nginx-tcpproxy | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-nginx-tcpproxy/defaults/main.yml",
"content": "---\n# defaults file for install-nginx-tcpproxy\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 47
},
{
"path": "src/ansible/roles/install-nginx-tcpproxy/templates/nginx.conf.j2",... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 2186,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-node-exporter | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-node-exporter/README.md",
"content": "# Установка Node exporter\n\n## Requirements\n\nИспользование роли возможно только на RHEL-like дистрибутивах, работоспособност проверена на Centos 7\n\n## Role Variables\n\nОсновные переменные описаны ниже, полный список переменных ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3054,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-privoxy | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-privoxy/defaults/main.yml",
"content": "---\nprivoxy_listen_address: 192.168.101.10",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "src/ansible/roles/install-privoxy/handlers/main.yml",
"content": "---\n# ha... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1102,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-prometheus | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-prometheus/README.md",
"content": "# Prometheus\n\nРоль устаналивает Prometheus, настраивает точки сбора метрик, базовые алерты.\n\n## Role Variables\n\nПолный список переменных представлен в файле [defaults/main.yml](defaults/main.yml).\n\nОсновныне необходимые перменны... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 7530,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-rsyncserver | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-rsyncserver/templates/etc-rsyncd-conf.j2",
"content": "# {{ ansible_managed }}\n\n[global]\ntimeout = {{ rsync_server_timeout }}\nmax connections = {{ rsync_server_max_connections }}\nlog file = /var/log/rsyncd/rsyncd.log\n\n\n{% for share in rsync_server_shares %}\n[{{ ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 5039,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-wordpress | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-wordpress/tasks/setup-Wordpress.yml",
"content": "---\n# Скачиваем и распаковываем самую последнюю версию движка сайта WordPress\n- name: Download and unpack latest WordPress\n ansible.builtin.unarchive:\n src: https://wordpress.org/latest.tar.gz\n dest: \"/var/ww... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 9516,
"all_permissive": false
} |
ansible_role | IABeresnev/diplom-netology | 6bf62df77064b1d7ff7ad910d67f988b9131492e | 0 | src/ansible/roles/install-wordpressexporter | 7,818 | [
"no_license"
] | [
{
"path": "src/ansible/roles/install-wordpressexporter/README.md",
"content": "# Роль устанавливает Wordpress Exporter \n\nРоль устанавливает экспортер метрик из базы данных Wordpress, количество зарегистрированных пользователе, количество комментариев и количество новостей. \n\n# Требования \n\nНеобходи... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2892,
"all_permissive": false
} |
ansible_role | Ggosh1/ksp_test_task_cicd | 868e27a513d05e4f8c2ad31e3aa1e34e8f5b5414 | 0 | micro/roles/docker-micro-service | 7,818 | [
"no_license"
] | [
{
"path": "micro/roles/docker-micro-service/tasks/main.yml",
"content": "- name: copy main.py\n copy:\n src: main.py\n dest: ./main.py\n- name: copy requirements.txt\n copy:\n src: requirements.txt\n dest: ./requirements.txt\n- name: copy Dockerfile\n copy:\n src: Dockerfile\n dest: ./D... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 533,
"all_permissive": false
} |
ansible_role | Ggosh1/ksp_test_task_cicd | 868e27a513d05e4f8c2ad31e3aa1e34e8f5b5414 | 0 | micro/roles/micro-service-from-registry | 7,818 | [
"no_license"
] | [
{
"path": "micro/roles/micro-service-from-registry/tasks/main.yml",
"content": "- name: Docker login\n shell: echo y0_AgAEA7qkn1-EAATuwQAAAAEXP_5TAADqXAsUOa1E6q7gGqYcFL5a38WTOg | docker login --username oauth --password-stdin cr.yandex\n register: variable_command_output\n\n- name: Docker pull\n docker_i... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 507,
"all_permissive": false
} |
ansible_role | apyshonkin/elasticsearch-splitbrain-simulator | 7072bda18dfd117c9b89f98a76083130f256831b | 0 | roles/es-provision | 7,818 | [
"no_license"
] | [
{
"path": "roles/es-provision/tasks/main.yml",
"content": "---\n- name: Add Elasticsearch repository\n template:\n src: elasticsearch.repo.j2\n dest: /etc/yum.repos.d/elasticsearch.repo\n mode: 0644\n\n- name: Install Elasticsearch\n package:\n name: \"{{ item }}\"\n state: present\n with_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1154,
"all_permissive": false
} |
ansible_role | xiong3731/autokube | 11299e486a630cf46a14b34b14bf99e1fc101dad | 0 | roles/api_lb | 7,818 | [
"no_license"
] | [
{
"path": "roles/api_lb/tasks/nginx.yaml",
"content": "---\n- name: install nginx in master\n block:\n - name: install necessary packages\n ansible.builtin.package:\n name:\n - gcc\n - make\n - g++ \n - automake \n - autoconf\n - openssl\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 2772,
"all_permissive": false
} |
ansible_role | xiong3731/autokube | 11299e486a630cf46a14b34b14bf99e1fc101dad | 0 | roles/bootstrap | 7,818 | [
"no_license"
] | [
{
"path": "roles/bootstrap/tasks/main.yml",
"content": "---\n- name: kubectl config\n ansible.builtin.shell:\n cmd: |\n rm -f /etc/kubernetes/kubelet.kubeconfig\n mkdir -p /root/.kube ; cp /etc/kubernetes/admin.kubeconfig /root/.kube/config\n- name: bootstrap secret\n ansible.builtin.template... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1037,
"all_permissive": false
} |
ansible_role | xiong3731/autokube | 11299e486a630cf46a14b34b14bf99e1fc101dad | 0 | roles/cert | 7,818 | [
"no_license"
] | [
{
"path": "roles/cert/tasks/task.yml",
"content": "---\n- name: install rsync\n apt:\n name: rsync\n state: latest\n- name: remove old cert files\n file:\n path: /opt/etc/\n state: absent\n\n- name: get cfssl tools\n block: \n - ansible.builtin.uri:\n url: \"{{ download_url }}/cfssl/{{ ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1954,
"all_permissive": false
} |
ansible_role | xiong3731/autokube | 11299e486a630cf46a14b34b14bf99e1fc101dad | 0 | roles/cni | 7,818 | [
"no_license"
] | [
{
"path": "roles/cni/tasks/calico.yaml",
"content": "---\n\n- name: install calico cni\n ansible.builtin.template:\n src: \"{{ item }}\"\n dest: /tmp/{{ item }}\n loop:\n - custom-resources.yaml\n - tigera-operator.yaml\n- name: apply calico cni custom resources\n ansible.builtin.shell:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 959,
"all_permissive": false
} |
ansible_role | xiong3731/autokube | 11299e486a630cf46a14b34b14bf99e1fc101dad | 0 | roles/common | 7,818 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n- name: Check network connectivity\n block:\n - name: Attempt to ping xiong03.cn\n command: ping -c 3 xiong03.cn\n register: ping_result\n failed_when: false \n changed_when: false\n - name: Update group network status if a... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3180,
"all_permissive": false
} |
ansible_role | xiong3731/autokube | 11299e486a630cf46a14b34b14bf99e1fc101dad | 0 | roles/containerd | 7,818 | [
"no_license"
] | [
{
"path": "roles/containerd/tasks/main.yml",
"content": "---\n- name: echo error\n fail:\n msg: \"containerd还没有写,先用docker\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 65,
"all_permissive": false
} |
ansible_role | xiong3731/autokube | 11299e486a630cf46a14b34b14bf99e1fc101dad | 0 | roles/docker | 7,818 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n- name: mkdir /etc/apt/keyrings to keep Docker GPG key\n ansible.builtin.file:\n path: /etc/apt/keyrings\n state: directory\n mode: '0755'\n- name: trust the Docker GPG key\n become: true\n block: \n - ansible.builtin.shell: |\n cur... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2684,
"all_permissive": false
} |
ansible_role | xiong3731/autokube | 11299e486a630cf46a14b34b14bf99e1fc101dad | 0 | roles/kube_components | 7,818 | [
"no_license"
] | [
{
"path": "roles/kube_components/tasks/kube_apiserver.yaml",
"content": "---\n- name: apiserver systemd service\n ansible.builtin.template:\n src: kube_apiserver.service.j2\n dest: /etc/systemd/system/kube-apiserver.service\n- name: start apiserver\n ansible.builtin.systemd:\n name: kube-apiserve... | {
"task_files": 7,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 7940,
"all_permissive": false
} |
ansible_role | xiong3731/autokube | 11299e486a630cf46a14b34b14bf99e1fc101dad | 0 | roles/test_cluster | 7,818 | [
"no_license"
] | [
{
"path": "roles/test_cluster/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - test_cluster\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 71
},
{
"path": "roles/test_cluster/vars/main.yml",
"content": "---\n# vars f... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 479,
"all_permissive": false
} |
ansible_role | brianstinehart/content-dev-workshop | d5716c9fb89bf9f515cc4f377457d2746b324c9f | 0 | roles/add_user | 7,818 | [
"no_license"
] | [
{
"path": "roles/add_user/vars/main.yml",
"content": "---\n# vars file for add_user\nuser_name: myuser",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 46
},
{
"path": "roles/add_user/tasks/main.yml",
"content": "---\n# tasks file for add_user\n\n- name: Create ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 821,
"all_permissive": false
} |
ansible_role | brianstinehart/content-dev-workshop | d5716c9fb89bf9f515cc4f377457d2746b324c9f | 0 | roles/apache_install | 7,818 | [
"no_license"
] | [
{
"path": "roles/apache_install/tasks/main.yml",
"content": "---\n# tasks file for apache_install\n- name: Install Apache\n ansible.builtin.dnf:\n name: httpd\n\n- name: Enable and start Apache service\n ansible.builtin.service:\n name: httpd\n enabled: true\n state: started\n\n- name: Copy in... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 339,
"all_permissive": false
} |
ansible_role | brianstinehart/content-dev-workshop | d5716c9fb89bf9f515cc4f377457d2746b324c9f | 0 | roles/security_package_update | 7,818 | [
"no_license"
] | [
{
"path": "roles/security_package_update/tasks/main.yml",
"content": "---\n# tasks file for security_package_update\n- name: Update all security-related DNF packages\n ansible.builtin.dnf:\n name: '*'\n state: latest\n security: true",
"license_type": "no_license",
"detected_licenses": [],... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 389,
"all_permissive": false
} |
ansible_role | kalyanchitturi/nmon | 3e6b3359280c5e85e370de144a01a02d87d6208e | 0 | nmon/roles/nmonfetch | 7,818 | [
"no_license"
] | [
{
"path": "nmon/roles/nmonfetch/tasks/main.yml",
"content": "---\n- name: set date \n shell: \"date +%y%m%d\"\n register: date\n\n- name: display results\n debug:\n msg: \"{{ date }}\"\n \n- name : Set Variables \n set_fact:\n cur_date: \"{{ date.stdout }}\"\n\n- name: find files with today date\... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1504,
"all_permissive": false
} |
ansible_role | Evanticks/nginx-php-proxy | 26df61d233a14883f3fd035f3a9bb5fd790ccada | 0 | ansible/roles/nginx | 7,818 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx/tasks/main.yaml",
"content": "- name: Instalamos nginx\n apt:\n pkg: nginx\n \n- name: Configuracion de virtualhost\n template: \n src: etc/nginx/sites-available/vhost.j2\n dest: /etc/nginx/sites-available/{{item[\"name\"]}}.conf\n owner: root\n group: root\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2368,
"all_permissive": false
} |
ansible_role | Evanticks/nginx-php-proxy | 26df61d233a14883f3fd035f3a9bb5fd790ccada | 0 | ansible/roles/php | 7,818 | [
"no_license"
] | [
{
"path": "ansible/roles/php/tasks/main.yaml",
"content": "- name: Instalamos php con fpm\n apt:\n pkg:\n - php\n - php-fpm\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 75
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 75,
"all_permissive": false
} |
ansible_role | Evanticks/nginx-php-proxy | 26df61d233a14883f3fd035f3a9bb5fd790ccada | 0 | ansible/roles/rm-virtualhost | 7,818 | [
"no_license"
] | [
{
"path": "ansible/roles/rm-virtualhost/tasks/main.yaml",
"content": "- name: Borraos el virtalhost que deseemos\n file:\n path: /etc/nginx/sites-enabled/{{ item[\"name\"] }}.conf\n state: absent\n with_items:\n - \"{{rmvhost}}\"\n notify:\n restart nginx\n",
"license_type": "no_license",... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 190,
"all_permissive": false
} |
ansible_role | jagadeeshwari/ansible | 972530f95879a5ad937d2766d22748205494153d | 0 | roles/flask | 7,818 | [
"no_license"
] | [
{
"path": "roles/flask/tasks/main.yml",
"content": " - name: Install Python Flask dependency\n pip:\n name: \"{{ item }}\"\n state: present\n with_items:\n - flask\n - flask-mysql\n\n\n - name: Copy source code\n # copy: src=app.py dest=/opt/app.py\n git... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 542,
"all_permissive": false
} |
ansible_role | valet-sh/awx-testing | e63a2671fd48fd97d962ae28f10912cb92942cb7 | 1 | roles/awx-instance | 7,818 | [
"permissive"
] | [
{
"path": "roles/awx-instance/templates/credentials.py.j2",
"content": "import os\nimport platform\n\nos.environ['DATABASE_USER'] = '{{ awx_database_user }}'\nos.environ['DATABASE_NAME'] = '{{ awx_database_name }}'\nos.environ['DATABASE_PASSWORD'] = '{{ awx_database_password }}'\nos.environ['DATABASE_HOST']... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 4309,
"all_permissive": true
} |
ansible_role | valet-sh/awx-testing | e63a2671fd48fd97d962ae28f10912cb92942cb7 | 1 | roles/common | 7,818 | [
"permissive"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n\n- name: install python2\n raw: test -e /usr/bin/python && echo -n \"ok\" || (apt -y update && apt install -y python-minimal)\n register: python_result\n\n- name: delete timezone file\n file:\n state: absent\n path: \"/etc/timezone\"\n\n- n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1027,
"all_permissive": true
} |
ansible_role | valet-sh/awx-testing | e63a2671fd48fd97d962ae28f10912cb92942cb7 | 1 | roles/memcached | 7,818 | [
"permissive"
] | [
{
"path": "roles/memcached/handlers/main.yml",
"content": "---\n\n- name: systemd | memcached | started\n systemd:\n name: memcached\n state: started\n\n- name: systemd | memcached | stopped\n systemd:\n name: memcached\n state: stopped\n\n- name: systemd | memcached | restarted\n systemd:\n ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 633,
"all_permissive": true
} |
ansible_role | valet-sh/awx-testing | e63a2671fd48fd97d962ae28f10912cb92942cb7 | 1 | roles/nginx | 7,818 | [
"permissive"
] | [
{
"path": "roles/nginx/handlers/main.yml",
"content": "---\n\n- name: systemd | nginx | started\n systemd:\n name: nginx\n state: started\n become: yes\n\n- name: systemd | nginx | stopped\n systemd:\n name: nginx\n state: stopped\n become: yes\n\n- name: systemd | nginx | restarted\n syste... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 4428,
"all_permissive": true
} |
ansible_role | valet-sh/awx-testing | e63a2671fd48fd97d962ae28f10912cb92942cb7 | 1 | roles/postgresql | 7,818 | [
"permissive"
] | [
{
"path": "roles/postgresql/tasks/main.yml",
"content": "---\n\n- include_tasks: install.yml\n\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 35
},
{
"path": "roles/postgresql/tasks/install.yml",
"content": "---\n\n- name: install | e... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 692,
"all_permissive": true
} |
ansible_role | valet-sh/awx-testing | e63a2671fd48fd97d962ae28f10912cb92942cb7 | 1 | roles/python3 | 7,818 | [
"permissive"
] | [
{
"path": "roles/python3/tasks/main.yml",
"content": "---\n\n- name: Install python3\n raw: test -e /usr/bin/python3 && echo -n \"ok\" || (apt -y update && apt install -y python3-minimal)\n register: python_result",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 155,
"all_permissive": true
} |
ansible_role | valet-sh/awx-testing | e63a2671fd48fd97d962ae28f10912cb92942cb7 | 1 | roles/redis | 7,818 | [
"permissive"
] | [
{
"path": "roles/redis/tasks/main.yml",
"content": "---\n\n- name: ensure redis-server is installed\n apt:\n name: redis-server\n state: present\n\n- name: ensure redis-tools is installed\n apt:\n name: redis-tools\n state: present\n\n- name: ensure redis-server is running and enabled\n servi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 695,
"all_permissive": true
} |
ansible_role | valet-sh/awx-testing | e63a2671fd48fd97d962ae28f10912cb92942cb7 | 1 | roles/vim | 7,818 | [
"permissive"
] | [
{
"path": "roles/vim/tasks/main.yml",
"content": "---\n\n- name: ensure vim is installed | apt\n apt:\n name: vim\n state: present\n\n- name: update default vim config if OS is Debian 9 (Stretch)\n template:\n src: \"defaults.vim.j2\"\n dest: \"/usr/share/vim/vim80/defaults.vim\"\n mode: '0... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 587,
"all_permissive": true
} |
ansible_role | siruoren/ELK | 6e98fc84532d4a38f62e953f14f5c449395b6bae | 1 | ELK/roles/backup_es | 7,818 | [
"permissive"
] | [
{
"path": "ELK/roles/backup_es/tasks/main.yml",
"content": "---\n- name: stop elasticsearch service\n shell: |\n ps -ef |grep elasticsearch |grep -v grep |awk '{print $2}'|xargs kill -9\n ignore_errors: true\n\n- name: check elasticsearch directory\n stat:\n path: \"{{jms.APP_DIR}}/elasticsearch\"\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 439,
"all_permissive": true
} |
ansible_role | siruoren/ELK | 6e98fc84532d4a38f62e953f14f5c449395b6bae | 1 | ELK/roles/elasticsearch | 7,818 | [
"permissive"
] | [
{
"path": "ELK/roles/elasticsearch/tasks/main.yml",
"content": "---\n- import_tasks: install_es.yml\n become: yes\n become_user: \"{{manager_user}}\"\n when: inventory_hostname in groups['elasticsearch']",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_by... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2016,
"all_permissive": true
} |
ansible_role | siruoren/ELK | 6e98fc84532d4a38f62e953f14f5c449395b6bae | 1 | ELK/roles/filebeat | 7,818 | [
"permissive"
] | [
{
"path": "ELK/roles/filebeat/tasks/main.yml",
"content": "---\n- import_tasks: install_filebeat.yml\n become: yes\n become_user: \"{{manager_user}}\"\n when: inventory_hostname in groups['filebeat']",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes"... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1665,
"all_permissive": true
} |
ansible_role | siruoren/ELK | 6e98fc84532d4a38f62e953f14f5c449395b6bae | 1 | ELK/roles/kibana | 7,818 | [
"permissive"
] | [
{
"path": "ELK/roles/kibana/tasks/install_kibana.yml",
"content": "---\n- name: stop kibana service\n shell: |\n ps -ef |grep node/bin/node|grep -v grep|awk '{print $2}'|xargs kill -9\n ignore_errors: true\n\n- name: rm kibana directory\n file:\n path: \"{{item}}\"\n state: absent\n with_items:... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1390,
"all_permissive": true
} |
ansible_role | siruoren/ELK | 6e98fc84532d4a38f62e953f14f5c449395b6bae | 1 | ELK/roles/logstash | 7,818 | [
"permissive"
] | [
{
"path": "ELK/roles/logstash/tasks/main.yml",
"content": "---\n- import_tasks: install_logstash.yml\n become: yes\n become_user: \"{{manager_user}}\"\n when: inventory_hostname in groups['logstash']",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes"... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1893,
"all_permissive": true
} |
ansible_role | siruoren/ELK | 6e98fc84532d4a38f62e953f14f5c449395b6bae | 1 | ELK/roles/prepare | 7,818 | [
"permissive"
] | [
{
"path": "ELK/roles/prepare/tasks/main.yml",
"content": "---\n- name: add group {{manager_group}}\n group:\n name: \"{{manager_group}}\"\n state: present\n\n- name: add user {{manager_user}}\n user:\n name: \"{{manager_user}}\"\n group: \"{{manager_group}}\"\n state: present\n\n- name: cre... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1101,
"all_permissive": true
} |
ansible_role | siruoren/ELK | 6e98fc84532d4a38f62e953f14f5c449395b6bae | 1 | ELK/roles/search_guard_es | 7,818 | [
"permissive"
] | [
{
"path": "ELK/roles/search_guard_es/tasks/config_sg_es.yml",
"content": "---\n- name: install search_guard es plugins\n block: \n\n - name: clean search_guard package\n shell: |\n find -maxdepth 1 -name \"search-guard*.zip\" -exec rm -rf {} +\n args:\n chdir: /tmp/\n\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 4732,
"all_permissive": true
} |
ansible_role | siruoren/ELK | 6e98fc84532d4a38f62e953f14f5c449395b6bae | 1 | ELK/roles/search_guard_kibana | 7,818 | [
"permissive"
] | [
{
"path": "ELK/roles/search_guard_kibana/tasks/config_sg_kibana.yml",
"content": "---\n- name: install search_guard kibana plugins\n block:\n - name: clean search_guard package\n shell: |\n find -maxdepth 1 -name \"search-guard*.zip\" -exec rm -rf {} +\n args:\n chdir: /tmp/\... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1744,
"all_permissive": true
} |
ansible_role | siruoren/ELK | 6e98fc84532d4a38f62e953f14f5c449395b6bae | 1 | ELK/roles/search_guard_logstash | 7,818 | [
"permissive"
] | [
{
"path": "ELK/roles/search_guard_logstash/tasks/config_sg_logstash.yml",
"content": "---\n- name: config logstash certificates \n block:\n - name: stop logstash service\n shell: |\n ps -ef |grep logstash|grep -v grep|awk '{print $2}'|xargs kill -9\n ignore_errors: true\n\n - name: c... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2478,
"all_permissive": true
} |
ansible_role | cdoan1/cluster-ops | aff718e5b9bc2ae567aa09ebb12d9aae69d171ba | 0 | roles/checks | 7,818 | [
"permissive"
] | [
{
"path": "roles/checks/tasks/main.yml",
"content": "---\n\n- name: check namespaces\n shell: |\n # oc config use-context default/api-{{ hostvars[inventory_hostname].name }}-demo-red-chesterfield-com:6443/kube:admin\n oc get namespaces\n oc get pods -n open-cluster-management-agent\n oc get pod... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 430,
"all_permissive": true
} |
ansible_role | cdoan1/cluster-ops | aff718e5b9bc2ae567aa09ebb12d9aae69d171ba | 0 | roles/cleanup-managed-cluster | 7,818 | [
"permissive"
] | [
{
"path": "roles/cleanup-managed-cluster/tasks/main.yml",
"content": "---\n\n\n# - name: check namespaces\n# shell: |\n# oc get pods -n {{ item }}\n# loop:\n# - \"open-cluster-management-agent\"\n# - \"open-cluster-management-agent-addon\"\n# register: result\n#\n# - name: check if there a... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2465,
"all_permissive": true
} |
ansible_role | cdoan1/cluster-ops | aff718e5b9bc2ae567aa09ebb12d9aae69d171ba | 0 | roles/common | 7,818 | [
"permissive"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n\n- name: main\n shell: |\n # oc cluster-info\n export KUBECONFIG=/tmp/ansible\n oc version\n oc login -u kubeadmin -p {{ hostvars[inventory_hostname].password }} -s {{ hostvars[inventory_hostname].api }} --insecure-skip-tls-verify\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1153,
"all_permissive": true
} |
ansible_role | cdoan1/cluster-ops | aff718e5b9bc2ae567aa09ebb12d9aae69d171ba | 0 | roles/import | 7,818 | [
"permissive"
] | [
{
"path": "roles/import/tasks/main.yml",
"content": "---\n\n- name: calculate stat of import file\n stat:\n path: \"{{ role_path }}/templates/{{ hostvars[inventory_hostname].name }}.sh\"\n register: stat_result\n\n- name: check open-cluster-management-agent pods\n shell: |\n oc get pods -n open-clu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 725,
"all_permissive": true
} |
ansible_role | vSakumoto/ansible_lt | 69ff6304d4a1b7eba536b0d37e6209a27b667684 | 0 | roles/apache | 7,818 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/main.yml",
"content": "---\n- apt: name=apache2 state=latest\n become: yes\n\n- name: Apache location config file directory\n file: path=/var/www/wordpress state=directory owner=root group=root mode=0755\n become: yes\n\n- name: Apache config\n copy: src=wordpress.conf dest... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 567,
"all_permissive": false
} |
ansible_role | vSakumoto/ansible_lt | 69ff6304d4a1b7eba536b0d37e6209a27b667684 | 0 | roles/initial | 7,818 | [
"no_license"
] | [
{
"path": "roles/initial/tasks/main.yml",
"content": "---\n- name: Install first packages\n apt: name={{ item }} state=installed update_cache=yes\n with_items:\n - vim\n - curl\n - wget\n - build-essential\n - unzip\n - zip\n - python-dev\n - libmysqlclient-dev\n\n- name: Install P... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 535,
"all_permissive": false
} |
ansible_role | vSakumoto/ansible_lt | 69ff6304d4a1b7eba536b0d37e6209a27b667684 | 0 | roles/mysql | 7,818 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yml",
"content": "---\n- name: Install the MySQL packages\n apt: name={{ item }} state=installed update_cache=yes\n with_items:\n - mysql-server\n - mysql-client\n - python-mysqldb\n - libmysqlclient-dev\n\n- name: mysql_start\n shell: \"service mysql restart... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1066,
"all_permissive": false
} |
ansible_role | vSakumoto/ansible_lt | 69ff6304d4a1b7eba536b0d37e6209a27b667684 | 0 | roles/ntp | 7,818 | [
"no_license"
] | [
{
"path": "roles/ntp/tasks/main.yml",
"content": "---\n- apt: name=ntp state=latest\n become: yes\n\n- name: copy ntp.conf\n copy: src=ntp.conf dest=/etc/ntp.conf\n\n- service: name=ntp state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 147
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 147,
"all_permissive": false
} |
ansible_role | vSakumoto/ansible_lt | 69ff6304d4a1b7eba536b0d37e6209a27b667684 | 0 | roles/useradd | 7,818 | [
"no_license"
] | [
{
"path": "roles/useradd/tasks/main.yml",
"content": "---\n- name: Ansbile user add\n user: name=ansible uid=1001\n\n- name: Ansbile sshkey setting\n authorized_key:\n user: ansible\n key: \"\"\n\n- name: ansible sudoers\n lineinfile:\n dest: /etc/sudoers\n backup: yes\n line: 'ansible ALL... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 261,
"all_permissive": false
} |
ansible_role | vSakumoto/ansible_lt | 69ff6304d4a1b7eba536b0d37e6209a27b667684 | 0 | roles/wordpress | 7,818 | [
"no_license"
] | [
{
"path": "roles/wordpress/tasks/main.yml",
"content": "---\n- name: Download WordPress\n command: curl -o /var/www/wordpress.tar.gz https://ja.wordpress.org/wordpress-4.7.2-ja.tar.gz\n\n- name: Extract archive\n command: /bin/tar xvf /var/www/wordpress.tar.gz -C /var/www/\n\n- name: database for wordpres... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3563,
"all_permissive": false
} |
ansible_role | gabrielstein/openshift-prep | 36f5b244b0b294618163940480be756ce1254382 | 0 | roles/repos | 7,818 | [
"no_license"
] | [
{
"path": "roles/repos/tasks/packages.yml",
"content": "---\n- name: Add Openshift Origin Repos\n yum: \n name: \"{{ item }}\"\n state: present\n with_items:\n - centos-release-openshift-origin36 \n - centos-release-paas-common\n",
"license_type": "no_license",
"detected_licenses": [],... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 177,
"all_permissive": false
} |
ansible_role | gabrielstein/openshift-prep | 36f5b244b0b294618163940480be756ce1254382 | 0 | roles/tools | 7,818 | [
"no_license"
] | [
{
"path": "roles/tools/tasks/packages.yml",
"content": "---\n- name: Install Tools\n yum: \n name: \"{{ item }}\"\n state: present\n with_items:\n - wget \n - git \n - net-tools \n - bind-utils \n - iptables-services\n - bridge-utils \n - bash-completion \n - kexec-tools \n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 258,
"all_permissive": false
} |
ansible_role | SampathDevopssre/ansible | 59307fe5d1a9a8c57f446ca9c54f433847b73eda | 0 | roles/frontend | 7,818 | [
"no_license"
] | [
{
"path": "roles/frontend/vars/main.yml",
"content": "COMPONENT: frontend\nLOGTYPE: raw\nLOG_LOCATION: \"/var/log/nginx/access.log\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 74
},
{
"path": "roles/frontend/tasks/main.yml",
"content": "- name: Installing ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1376,
"all_permissive": false
} |
ansible_role | elorotron/ansible_role_docker_compose_webserver | 169c622d65209507b61165c899b809918dd3264a | 0 | roles/webserver | 7,818 | [
"no_license"
] | [
{
"path": "roles/webserver/tasks/main.yml",
"content": "---\n# tasks file for webserver\n#========================Git, docker, docker-compose installation, clone repo========================================\n- name: Add Docker GPG apt Key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2256,
"all_permissive": false
} |
ansible_role | knotknull/ansible_and_me | a6fbeb4e19a4799969fdbc43383e0b95197e5d77 | 0 | roles/roles/webserver | 7,818 | [
"no_license"
] | [
{
"path": "roles/roles/webserver/tasks/main.yml",
"content": "---\n- name: Confirm Apache Install\n yum: name=httpd state=present\n\n- name: Start Apache\n service: name=httpd state=started enabled=yes\n\n- name: Deploy configuration file\n template: src=httpd.j2 dest=/etc/httpd/conf/httpd.conf\n notify... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 334,
"all_permissive": false
} |
ansible_role | Yash202000/haproxy-with-role | f947b1f1bceaf8a43b56955d66d07906bc6b2a70 | 0 | roles/ec2-provision | 7,820 | [
"no_license"
] | [
{
"path": "roles/ec2-provision/tasks/main.yml",
"content": "---\n# tasks file for ec2_instance_provision\n\n- amazon.aws.ec2:\n aws_access_key: '{{ AWS_ACCESS_KEY_ID }}'\n aws_secret_key: '{{ AWS_SECRET_ACCESS_KEY }}'\n key_name: '{{ key_name }}'\n instance_type: '{{ type }}'\n regi... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1075,
"all_permissive": false
} |
ansible_role | Yash202000/haproxy-with-role | f947b1f1bceaf8a43b56955d66d07906bc6b2a70 | 0 | roles/myapache | 7,820 | [
"no_license"
] | [
{
"path": "roles/myapache/files/index.php",
"content": "<html>\n<pre>\n<?php\nprint `/usr/sbin/ifconfig`;\n?>\n</pre>\n</html>\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
},
{
"path": "roles/myapache/tasks/main.yml",
"content": "---\n# tasks file for w... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 416,
"all_permissive": false
} |
ansible_role | Yash202000/haproxy-with-role | f947b1f1bceaf8a43b56955d66d07906bc6b2a70 | 0 | roles/myloadbalancer | 7,820 | [
"no_license"
] | [
{
"path": "roles/myloadbalancer/vars/main.yml",
"content": "---\n# vars file for proxy_server_role\n\nport: 80\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 48
},
{
"path": "roles/myloadbalancer/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": 601,
"all_permissive": false
} |
ansible_role | adammccurry/ansible | 816f53b3d8be7e7c23e0311bfcf1713bbdfadda0 | 0 | roles/DebianBase | 7,820 | [
"no_license"
] | [
{
"path": "roles/DebianBase/vars/main.yml",
"content": "---\n# vars file for create_admin_user\nadmin:\n - name: 'ansibleuser'\n comment: 'Ultimate User'\n uid: '1005'\n\n - name: 'semaphore'\n comment: 'Semaphore App User'\n uid: '1006'\n",
"license_type": "no_license",
"detected_lice... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 767,
"all_permissive": false
} |
ansible_role | adammccurry/ansible | 816f53b3d8be7e7c23e0311bfcf1713bbdfadda0 | 0 | roles/Git | 7,820 | [
"no_license"
] | [
{
"path": "roles/Git/tasks/main.yml",
"content": "---\n# tasks file for Git\n\n - name: Install Git\n pkgng:\n name: git\n\n - name: Install GitHub CLI\n pkgng:\n name: gh\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 135
},
{
"path": "rol... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 159,
"all_permissive": false
} |
ansible_role | adammccurry/ansible | 816f53b3d8be7e7c23e0311bfcf1713bbdfadda0 | 0 | roles/freeradius | 7,820 | [
"no_license"
] | [
{
"path": "roles/freeradius/tasks/main.yml",
"content": "---\n# tasks file \n - name: Install Freeradius Client\n pkgng:\n name: freeradius-client\n\n# - name: Setting radius server\n# lineinfile:\n# dest: /usr/local/etc/radiusclient/servers\n# backup: yes\n# line: radius.macer... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1106,
"all_permissive": false
} |
ansible_role | adammccurry/ansible | 816f53b3d8be7e7c23e0311bfcf1713bbdfadda0 | 0 | roles/installSendmail | 7,820 | [
"no_license"
] | [
{
"path": "roles/installSendmail/vars/main.yml",
"content": "---\n# vars file for create_admin_user\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 39
},
{
"path": "roles/installSendmail/tasks/main.yml",
"content": "---\n# tasks file for create_admin_user\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 219,
"all_permissive": false
} |
ansible_role | adammccurry/ansible | 816f53b3d8be7e7c23e0311bfcf1713bbdfadda0 | 0 | roles/nagios | 7,820 | [
"no_license"
] | [
{
"path": "roles/nagios/vars/main.yml",
"content": "---\n# /home/ansible/nagios/nagios-4.5.1\n\n\nnagios_url: \"https://assets.nagios.com/downloads/nagioscore/releases/\"\nnagios_ver: \"nagios-4.5.1\"\nextracted_path: \"/build/nagios/\"\n\n# https://github.com/nagios-plugins/nagios-plugins/releases/download... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 10,
"total_bytes": 6750,
"all_permissive": false
} |
ansible_role | Monty-Gabriel/ansible | 8dd22ca24b84d156cbba0e3b0cd157f85eb5e279 | 1 | roles/checklist | 7,820 | [
"no_license"
] | [
{
"path": "roles/checklist/vars/main.yml",
"content": "pacotes:\n - net-tools\n - vim\n - telnet\n - nano\n - telnet\n - nmap\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 89
},
{
"path": "roles/checklist/tasks/main.yml",
"content": ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 397,
"all_permissive": false
} |
ansible_role | bradymholt/arena-sheets | 00b81aa91b685fe79be7207a10ae031aea471dd4 | 0 | config/roles/deploy | 7,820 | [
"no_license"
] | [
{
"path": "config/roles/deploy/tasks/main.yml",
"content": "- name: copy files\n synchronize: src=../../../../ dest={{ deploy_directory }} delete=yes rsync_opts=--exclude=.git/,--exclude=log/,--exclude=node_modules/,--exclude=tmp/cache\n remote_user: \"{{ deploy_user }}\"\n- name: update config values\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 681,
"all_permissive": false
} |
ansible_role | bradymholt/arena-sheets | 00b81aa91b685fe79be7207a10ae031aea471dd4 | 0 | config/roles/logrotate | 7,820 | [
"no_license"
] | [
{
"path": "config/roles/logrotate/tasks/main.yml",
"content": "- name: 'Copy the logrotate template to /etc/logrotate.d'\n tags: 'logrotate'\n template: >\n src=logrotate_config.j2\n dest=/etc/logrotate.d/{{ app_name }}\n owner=root\n group=root",
"license_type": "no_license",
"detecte... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 759,
"all_permissive": false
} |
ansible_role | bradymholt/arena-sheets | 00b81aa91b685fe79be7207a10ae031aea471dd4 | 0 | config/roles/nodejs | 7,820 | [
"no_license"
] | [
{
"path": "config/roles/nodejs/tasks/main.yml",
"content": "- name: install the nodesource PPA\n shell: curl -sL https://deb.nodesource.com/{{ nodesource_version }} | sudo bash -\n- name: install compile libraries\n apt: name={{ item }} state=present\n with_items:\n - make\n - gcc\n - g++\n -... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 465,
"all_permissive": false
} |
ansible_role | bradymholt/arena-sheets | 00b81aa91b685fe79be7207a10ae031aea471dd4 | 0 | config/roles/timezone | 7,820 | [
"no_license"
] | [
{
"path": "config/roles/timezone/tasks/main.yml",
"content": "- name: Set timezone\n command: timedatectl set-timezone {{timzezone}}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 71
},
{
"path": "config/roles/timezone/defaults/main.yml",
"content": "timzez... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 100,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/aruba_cx_create_vlan | 7,820 | [
"no_license"
] | [
{
"path": "roles/aruba_cx_create_vlan/handlers/main.yml",
"content": "---\n# handlers file for aruba_cx_create_vlan\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 45
},
{
"path": "roles/aruba_cx_create_vlan/tests/test.yml",
"content": "---\n- hosts: localhos... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 495,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/aruba_cx_dns | 7,820 | [
"no_license"
] | [
{
"path": "roles/aruba_cx_dns/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - aruba_cx_dns\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 71
},
{
"path": "roles/aruba_cx_dns/vars/main.yml",
"content": "---\n# vars f... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 414,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/aruba_cx_interface.yml | 7,820 | [
"no_license"
] | [
{
"path": "roles/aruba_cx_interface.yml/defaults/main.yml",
"content": "---\n# defaults file for aruba_cx_interface.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 47
},
{
"path": "roles/aruba_cx_interface.yml/handlers/main.yml",
"content": "---\n# handle... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 611,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/aruba_cx_interface_l2 | 7,820 | [
"no_license"
] | [
{
"path": "roles/aruba_cx_interface_l2/vars/main.yml",
"content": "---\n# vars file for aruba_cx_interface_l2\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "roles/aruba_cx_interface_l2/tasks/main.yml",
"content": "---\n# tasks file for aruba... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1240,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/aruba_cx_interface_l3 | 7,820 | [
"no_license"
] | [
{
"path": "roles/aruba_cx_interface_l3/vars/main.yml",
"content": "---\n# vars file for aruba_cx_interface_l3\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "roles/aruba_cx_interface_l3/tests/test.yml",
"content": "---\n- hosts: localhost\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 712,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/fortigate_change_hostname | 7,820 | [
"no_license"
] | [
{
"path": "roles/fortigate_change_hostname/vars/main.yml",
"content": "---\n# vars file for fortigate_change_hostname\nvdom: 'root'",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 58
},
{
"path": "roles/fortigate_change_hostname/defaults/main.yml",
"content": "... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 587,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/fortigate_create_address_group_object | 7,820 | [
"no_license"
] | [
{
"path": "roles/fortigate_create_address_group_object/tasks/main.yml",
"content": "---\n# tasks file for fortigate_create_address_group_object\n\n- name: TASK I - Extract member objects from the group object\n ansible.builtin.set_fact:\n my_list: \"{{ item.members }}\"\n loop: \"{{ address_group_objec... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1360,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/fortigate_create_address_object | 7,820 | [
"no_license"
] | [
{
"path": "roles/fortigate_create_address_object/defaults/main.yml",
"content": "---\n# defaults file for fortigate_create_address_object\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 56
},
{
"path": "roles/fortigate_create_address_object/tasks/main.yml",
"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 748,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/fortigate_create_address_object_full | 7,820 | [
"no_license"
] | [
{
"path": "roles/fortigate_create_address_object_full/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - fortigate_create_address_object_full\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 95
},
{
"path": "roles/fortigate_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 732,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/fortigate_create_firewall_policy | 7,820 | [
"no_license"
] | [
{
"path": "roles/fortigate_create_firewall_policy/defaults/main.yml",
"content": "---\n# defaults file for fortigate_create_firewall_policy\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 57
},
{
"path": "roles/fortigate_create_firewall_policy/tasks/main.yml",
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 942,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/fortigate_create_interface | 7,820 | [
"no_license"
] | [
{
"path": "roles/fortigate_create_interface/vars/main.yml",
"content": "---\n# vars file for fortigate_create_interface\nvdom: root",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 57
},
{
"path": "roles/fortigate_create_interface/tests/test.yml",
"content": "--... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1425,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/fortigate_create_service_group_object | 7,820 | [
"no_license"
] | [
{
"path": "roles/fortigate_create_service_group_object/defaults/main.yml",
"content": "---\n# defaults file for fortigate_create_service_group_object\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 62
},
{
"path": "roles/fortigate_create_service_group_object/task... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1384,
"all_permissive": false
} |
ansible_role | OkanHollander/netdevops | 47a37fd2537c467e8d06396a43149d393a6075e1 | 1 | roles/fortigate_create_service_object | 7,820 | [
"no_license"
] | [
{
"path": "roles/fortigate_create_service_object/vars/main.yml",
"content": "---\n# vars file for fortigate_create_service_object\nvdom: \"root\"\nobjects_to_create:\n - TCP_8080\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 97
},
{
"path": "roles/fortigate_cr... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 852,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.