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
unadmit/otus-linux-pro-final
c81e085bd2fa33ef71efc2ca92811d066738d03e
0
roles/common_settings
356
[ "no_license" ]
[ { "path": "roles/common_settings/tasks/main.yml", "content": "- name: Enable firewalld\n ansible.builtin.systemd:\n name: firewalld\n enabled: yes\n state: started\n- name: Install EPEL repo\n ansible.builtin.yum:\n name: epel-release\n state: installed", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 200, "all_permissive": false }
ansible_role
unadmit/otus-linux-pro-final
c81e085bd2fa33ef71efc2ca92811d066738d03e
0
roles/db_mysql
356
[ "no_license" ]
[ { "path": "roles/db_mysql/tasks/main.yml", "content": "- name: Disable default repo\n ansible.builtin.yum_repository:\n name: \"{{ item }}\"\n state: absent\n with_items:\n - \"mysql-connectors-community/x86_64\"\n - \"mysql-tools-community/x86_64\"\n - \"mysql56-community/x86_64\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 7787, "all_permissive": false }
ansible_role
unadmit/otus-linux-pro-final
c81e085bd2fa33ef71efc2ca92811d066738d03e
0
roles/elk_stack
356
[ "no_license" ]
[ { "path": "roles/elk_stack/tasks/main.yml", "content": "---\n- name: Install java\n ansible.builtin.yum:\n name: java-1.8.0-openjdk.x86_64\n state: present\n- name: Copy elastic rpm\n copy:\n src: \"{{ elasticsearch_rpm }}\"\n dest: \"/tmp/elasticsearch.rpm\"\n force: false\n- name: Install...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4026, "all_permissive": false }
ansible_role
unadmit/otus-linux-pro-final
c81e085bd2fa33ef71efc2ca92811d066738d03e
0
roles/filebeat_agent
356
[ "no_license" ]
[ { "path": "roles/filebeat_agent/tasks/main.yml", "content": "---\n- name: Ensure that the filebeat user exists\n user:\n name: \"filebeat\"\n shell: /bin/false\n state: present\n- name: Copy filebeat binary\n copy:\n src: \"{{ filebeat_rpm }}\"\n dest: \"/tmp/filebeat.rpm\"\n- name: Install...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 706, "all_permissive": false }
ansible_role
unadmit/otus-linux-pro-final
c81e085bd2fa33ef71efc2ca92811d066738d03e
0
roles/prometheus_agent
356
[ "no_license" ]
[ { "path": "roles/prometheus_agent/tasks/main.yml", "content": "---\n- name: Copy node_exporter to node\n ansible.builtin.copy:\n src: \"data/node_exporter-1.5.0.linux-amd64.tar.gz\"\n dest: \"/tmp/node_exporter-1.5.0.linux-amd64.tar.gz\"\n- name: Untar node_exporter\n ansible.builtin.unarchive:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1231, "all_permissive": false }
ansible_role
unadmit/otus-linux-pro-final
c81e085bd2fa33ef71efc2ca92811d066738d03e
0
roles/prometheus_server
356
[ "no_license" ]
[ { "path": "roles/prometheus_server/templates/prometheus.yml.j2", "content": "global:\n scrape_interval: 15s\n evaluation_interval: 15s\n\n external_labels:\n monitor: 'monitor'\n\nscrape_configs:\n - job_name: 'prometheus'\n\n static_configs:\n - targets: ['localhost:9090']\n - job_nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3295, "all_permissive": false }
ansible_role
unadmit/otus-linux-pro-final
c81e085bd2fa33ef71efc2ca92811d066738d03e
0
roles/web_nginx
356
[ "no_license" ]
[ { "path": "roles/web_nginx/tasks/main.yml", "content": "- name: Install nginx\n ansible.builtin.yum:\n name: nginx\n state: present\n- set_fact:\n kibana_server: \"{{ hostvars[item]['ansible_host'] }}\"\n with_items: \"{{ groups.logservers }}\"\n- set_fact:\n grafana_server: \"{{ hostvars[item...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2021, "all_permissive": false }
ansible_role
unadmit/otus-linux-pro-final
c81e085bd2fa33ef71efc2ca92811d066738d03e
0
roles/web_wp
356
[ "no_license" ]
[ { "path": "roles/web_wp/tasks/main.yml", "content": "---\n- name: Download wordpress from official site\n delegate_to: localhost\n ansible.builtin.get_url:\n url: https://wordpress.org/wordpress-6.1.1.tar.gz\n dest: \"data/wordpress-6.1.1.tar.gz\"\n- name: Copy wordpress to node\n ansible.builtin.c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1694, "all_permissive": false }
ansible_role
thompsonseanr/openwrt-mesh-cudy
64c21ac4e44a1b4fc87be28096c31ae5408b5dd8
1
roles/install-pkgs
356
[ "no_license" ]
[ { "path": "roles/install-pkgs/tasks/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# tasks file for install-pkgs\n- name: Install openwrt packages\n become: true\n become_user: root\n delegate_to: localhost\n block:\n - name: Ping test\n ansible.builtin.shell: >\n sshpass -p...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1317, "all_permissive": false }
ansible_role
thompsonseanr/openwrt-mesh-cudy
64c21ac4e44a1b4fc87be28096c31ae5408b5dd8
1
roles/mesh-roaming-node
356
[ "no_license" ]
[ { "path": "roles/mesh-roaming-node/vars/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# vars file for mesh-roaming-node\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 }, { "path": "roles/mesh-roaming-node/tasks/main.yml", "content": "# SPDX...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 8565, "all_permissive": false }
ansible_role
marcovmun/phpdump
96770886ba8e809f59103e00ea85e4dbc89b8980
0
ansible/roles/dump-web
356
[ "no_license" ]
[ { "path": "ansible/roles/dump-web/tasks/main.yml", "content": "---\n- include: packages.yml\n- include: users.yml\n- include: directory_structure.yml\n- include: apache.yml\n- include: php.yml\n- include: other.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 145 }, ...
{ "task_files": 7, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 5820, "all_permissive": false }
ansible_role
mooselab/hadoop-ansible
56419caf0107fe02a377aa9e5fd6f6ff1fdbf4fb
0
roles/authorized
356
[ "no_license" ]
[ { "path": "roles/authorized/tasks/main.yml", "content": "---\n- name: Add Cluster Public Key for Hadoop\n authorized_key: \n user={{ user }} \n key=\"{{ lookup('file', '/tmp/id_{{master_ip}}_{{user}}.pub') }}\"\n\n- name: Add User Public Key for Hadoop\n authorized_key: \n user={{ user }} \n k...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 264, "all_permissive": false }
ansible_role
mooselab/hadoop-ansible
56419caf0107fe02a377aa9e5fd6f6ff1fdbf4fb
0
roles/etc_hosts
356
[ "no_license" ]
[ { "path": "roles/etc_hosts/tasks/main.yml", "content": "- name: Add internal IP address of all hosts to all hosts\n lineinfile:\n dest: /etc/hosts\n regexp: '.*{{ item }}$'\n line: \"{{ hostvars[item].internal_ip }} {{ hostvars[item].hostname }}\"\n state: present\n when: hostvars[item].intern...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 294, "all_permissive": false }
ansible_role
mooselab/hadoop-ansible
56419caf0107fe02a377aa9e5fd6f6ff1fdbf4fb
0
roles/hadoop
356
[ "no_license" ]
[ { "path": "roles/hadoop/tasks/install_hadoop.yml", "content": "---\n- name: Download Hadoop\n shell: \"wget -O {{ download_path }}/hadoop-{{ hadoop_version }}.tar.gz https://archive.apache.org/dist/hadoop/common/hadoop-{{ hadoop_version }}/hadoop-{{ hadoop_version }}.tar.gz\"\n become: true\n become_user...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2060, "all_permissive": false }
ansible_role
mooselab/hadoop-ansible
56419caf0107fe02a377aa9e5fd6f6ff1fdbf4fb
0
roles/hibench
356
[ "no_license" ]
[ { "path": "roles/hibench/tasks/config_hibench.yml", "content": "---\n- name: Copy HiBench Hadoop Conf\n template: src=hadoop.conf dest={{ hibench_path }}/conf/hadoop.conf mode=644 owner={{ user }} group = {{ group }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 152 ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 740, "all_permissive": false }
ansible_role
mooselab/hadoop-ansible
56419caf0107fe02a377aa9e5fd6f6ff1fdbf4fb
0
roles/java
356
[ "no_license" ]
[ { "path": "roles/java/templates/java_home.sh", "content": "# jdk_version=$(ls -al {{jvm_home}}|grep \"^d\"|grep \"java\"|awk '{print$NF}')\n# export JAVA_HOME={{ jvm_home }}/$jdk_version\nexport JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1954, "all_permissive": false }
ansible_role
mooselab/hadoop-ansible
56419caf0107fe02a377aa9e5fd6f6ff1fdbf4fb
0
roles/user
356
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yml", "content": "---\n- name: Add User \n user: name={{user}} shell=/bin/bash append=yes\n when: add_user\n\n- name: Check Public Key\n shell: \"ls /home/{{ user }}/.ssh|grep '.pub' |wc -l\"\n register: key_exist\n ignore_errors: true\n\n- name: Generate Public key\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 625, "all_permissive": false }
ansible_role
sanjeevgiri/raspi-k3s
6cf0c9930356cf9f608af60f3ed173958a19b0e7
0
configs_as_code/roles/ansible_control_node
356
[ "no_license" ]
[ { "path": "configs_as_code/roles/ansible_control_node/vars/main.yml", "content": "---\n# ACN - Ansible control node\nacn_state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 }, { "path": "configs_as_code/roles/ansible_control_node/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2167, "all_permissive": false }
ansible_role
sanjeevgiri/raspi-k3s
6cf0c9930356cf9f608af60f3ed173958a19b0e7
0
configs_as_code/roles/ansible_managed_nodes
356
[ "no_license" ]
[ { "path": "configs_as_code/roles/ansible_managed_nodes/tasks/main.yml", "content": "---\n- name: Ansible user and group\n include_tasks: ansible_user.yml\n\n# For deletions using state absent, this file will have been removed in the ansible_user tasks\n- name: Check if the directory exists\n stat:\n pa...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1196, "all_permissive": false }
ansible_role
sanjeevgiri/raspi-k3s
6cf0c9930356cf9f608af60f3ed173958a19b0e7
0
configs_as_code/roles/nfs_clients
356
[ "no_license" ]
[ { "path": "configs_as_code/roles/nfs_clients/vars/main.yml", "content": "nfs_client_state: present\n\nnfs_server_ip_or_hostname: \"{{ undef(hint='NFS Server IP or Hostname is required') }}\"\nnfs_server_share_path: \"{{ undef(hint='NFS Server shared directory path is required') }}\"\n# Mount paths will be p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1951, "all_permissive": false }
ansible_role
sanjeevgiri/raspi-k3s
6cf0c9930356cf9f608af60f3ed173958a19b0e7
0
configs_as_code/roles/nfs_server
356
[ "no_license" ]
[ { "path": "configs_as_code/roles/nfs_server/vars/main.yml", "content": "---\nnfs_server_state: present\n\n# Mount paths will always be prefixed with /mnt. For example mount path /usbs will create evaluate to /mnt/usbs being created as a mount point\nnfs_server_ext_drive_mnt_path: 'usbs'\nnfs_server_ext_driv...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 4454, "all_permissive": false }
ansible_role
adrianiacob22/automated_pipeline_library
fbb227e5e7999411c3c02a466d7fe2fb075ce8f3
0
playbooks/deploy/roles/jenkins
356
[ "no_license" ]
[ { "path": "playbooks/deploy/roles/jenkins/templates/jenkins.service.j2", "content": "[Unit]\nDescription=Jenkins server compose\nAfter=docker.service\nBindsTo=docker.service\n\n[Service]\nRestart=always\nWorkingDirectory=/opt/jenkins/\nExecStart=/usr/bin/docker-compose up\nExecStop=/usr/bin/docker-compose d...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2209, "all_permissive": false }
ansible_role
adrianiacob22/automated_pipeline_library
fbb227e5e7999411c3c02a466d7fe2fb075ce8f3
0
playbooks/deploy/roles/node-exporter
356
[ "no_license" ]
[ { "path": "playbooks/deploy/roles/node-exporter/templates/node_exporter.j2", "content": "#!/bin/bash\n#\n{{ ansible_managed | comment }}\n# chkconfig: 2345 85 55\n\n. /etc/rc.d/init.d/functions\n\nPROGNAME=node_exporter\nPROG=/usr/local/bin/$PROGNAME\nUSER=root\nLOGFILE=/var/log/node_exporter.log\nLOCKFILE=...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 10015, "all_permissive": false }
ansible_role
adrianiacob22/automated_pipeline_library
fbb227e5e7999411c3c02a466d7fe2fb075ce8f3
0
playbooks/deploy/roles/prometheus
356
[ "no_license" ]
[ { "path": "playbooks/deploy/roles/prometheus/handlers/main.yml", "content": "---\n- name: restart prometheus\n become: true\n systemd:\n daemon_reload: true\n name: prometheus\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 123 }, { ...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 8166, "all_permissive": false }
ansible_role
the-it/raspbian-bootstrap
5c99b2eb665b0ad645f29f0e340744f31ad5d5e0
0
roles/basic
356
[ "no_license" ]
[ { "path": "roles/basic/tasks/main.yml", "content": "---\n\n- name: ansible\n apt:\n name: ansible\n state: latest\n register: installation\n become: yes\n\n- name: build tools\n apt:\n name: autoconf,make\n state: latest\n register: installation\n become: yes\n\n- name: vim editor\n apt:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 918, "all_permissive": false }
ansible_role
the-it/raspbian-bootstrap
5c99b2eb665b0ad645f29f0e340744f31ad5d5e0
0
roles/git
356
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "- name: git\n apt:\n name: git\n state: latest\n register: installation\n become: yes\n\n- git_config:\n name: user.name\n scope: global\n value: engelriCo\n\n- git_config:\n name: user.email\n scope: global\n value: <EMAIL>\n \n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 308, "all_permissive": false }
ansible_role
the-it/raspbian-bootstrap
5c99b2eb665b0ad645f29f0e340744f31ad5d5e0
0
roles/handleDocuments
356
[ "no_license" ]
[ { "path": "roles/handleDocuments/tasks/main.yml", "content": "- name: create directory - 00_scan\n file:\n path: /media/data/docs/000_STAGE/00_scan\n state: directory\n mode: '2770'\n owner: fileMaster\n group: fileShareGroup\n become: yes\n\n- name: create directory - 10_ocr\n file:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1432, "all_permissive": false }
ansible_role
the-it/raspbian-bootstrap
5c99b2eb665b0ad645f29f0e340744f31ad5d5e0
0
roles/mount
356
[ "no_license" ]
[ { "path": "roles/mount/tasks/main.yml", "content": "\n- name: create directory - mountpoint for strato hidrive\n file:\n path: /media/cloud\n state: directory\n mode: '0755'\n owner: fileMaster\n become: yes\n\n- name: create directory - mountpoint for local drive\n file:\n path: /media/da...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 860, "all_permissive": false }
ansible_role
the-it/raspbian-bootstrap
5c99b2eb665b0ad645f29f0e340744f31ad5d5e0
0
roles/ocr
356
[ "no_license" ]
[ { "path": "roles/ocr/tasks/main.yml", "content": "---\n\n- name: OCRmyPDF\n apt:\n name: ocrmypdf\n state: latest\n register: installation\n become: yes\n\n- name: tesseract deutsch\n apt:\n name: tesseract-ocr-deu\n state: latest\n register: installation\n become: yes\n\n- name: recoll\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1424, "all_permissive": false }
ansible_role
the-it/raspbian-bootstrap
5c99b2eb665b0ad645f29f0e340744f31ad5d5e0
0
roles/recoll
356
[ "no_license" ]
[ { "path": "roles/recoll/tasks/main.yml", "content": "---\n\n#- name: create directory - recoll-webui\n# file:\n# path: ~/recoll-webui\n# state: directory\n# mode: '0755'\n# become: yes\n\n- name: download recoll-webui\n get_url:\n url: https://github.com/koniu/recoll-webui/archive/master.zip\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 680, "all_permissive": false }
ansible_role
the-it/raspbian-bootstrap
5c99b2eb665b0ad645f29f0e340744f31ad5d5e0
0
roles/samba
356
[ "no_license" ]
[ { "path": "roles/samba/tasks/main.yml", "content": "- name: samba\r\n apt:\r\n name: samba\r\n state: latest\r\n register: installation\r\n become: yes\r\n\r\n- name: check if rules file exists\r\n stat:\r\n path: /etc/samba/smb.conf.backup\r\n register: sambaBackup\r\n\r\n- name: backup origi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 591, "all_permissive": false }
ansible_role
the-it/raspbian-bootstrap
5c99b2eb665b0ad645f29f0e340744f31ad5d5e0
0
roles/user
356
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yml", "content": "- name: ensure group \"fileShareGroup\" exists\n group:\n name: fileShareGroup\n gid: 1004\n state: present\n become: yes\n\n- name: add user \"fileMaster\"\n user:\n name: fileMaster\n shell: /bin/bash\n groups: fileShareGroup,davfs2\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 388, "all_permissive": false }
ansible_role
mminichino/oracle-host-prep
c3cc11528dc89726170587e4ade6ebac79d1cfc8
0
playbooks/roles/add-oracle-account
356
[ "no_license" ]
[ { "path": "playbooks/roles/add-oracle-account/tasks/main.yml", "content": "---\n# tasks file for add-oracle-account\n- name: Ensure group dba exists\n ansible.builtin.group:\n name: dba\n state: present\n gid: 502\n- name: Ensure group asmdba exists\n ansible.builtin.group:\n name: asmdba\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2165, "all_permissive": false }
ansible_role
mminichino/oracle-host-prep
c3cc11528dc89726170587e4ade6ebac79d1cfc8
0
playbooks/roles/copy-software
356
[ "no_license" ]
[ { "path": "playbooks/roles/copy-software/vars/main.yml", "content": "---\n# vars file for copy-software\ndb19_file: LINUX.X64_193000_db_home.zip\ndb18_file: LINUX.X64_180000_db_home.zip\ndb122_file: linuxx64_12201_database.zip\ndb121_1_file: linuxamd64_12102_database_1of2.zip\ndb121_2_file: linuxamd64_12102...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 12407, "all_permissive": false }
ansible_role
mminichino/oracle-host-prep
c3cc11528dc89726170587e4ade6ebac79d1cfc8
0
playbooks/roles/install-db-package
356
[ "no_license" ]
[ { "path": "playbooks/roles/install-db-package/tasks/main.yml", "content": "---\n# tasks file for install-db-package\n- name: Download oracle-database-preinstall-19c\n get_url:\n url: https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/oracle-database-preinstall-19c-1.0-3.el7.x86_64.rpm\...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 744, "all_permissive": false }
ansible_role
mminichino/oracle-host-prep
c3cc11528dc89726170587e4ade6ebac79d1cfc8
0
playbooks/roles/install-sw-packages
356
[ "no_license" ]
[ { "path": "playbooks/roles/install-sw-packages/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - install-sw-packages\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "playbooks/roles/install-sw-packages/hand...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1908, "all_permissive": false }
ansible_role
mminichino/oracle-host-prep
c3cc11528dc89726170587e4ade6ebac79d1cfc8
0
playbooks/roles/make-swap
356
[ "no_license" ]
[ { "path": "playbooks/roles/make-swap/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - make-swap\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 68 }, { "path": "playbooks/roles/make-swap/defaults/main.yml", "content":...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 712, "all_permissive": false }
ansible_role
TianjingRuan/COMP90024-Project
540e668402fee5881127fb9f3b2394ac610d6417
0
comp90024-ansible/deploy_couch_cluster/roles/couchdb_cluster
356
[ "no_license" ]
[ { "path": "comp90024-ansible/deploy_couch_cluster/roles/couchdb_cluster/tasks/main.yml", "content": "---\n- name: setup couchdb cluster | step 1\n become: yes\n uri:\n url: http://{{ masternode }}:5984/{{ cluster_name }}\n status_code: 201\n method: POST\n user: \"{{ couchdb_user }}\"\n pas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2052, "all_permissive": false }
ansible_role
TianjingRuan/COMP90024-Project
540e668402fee5881127fb9f3b2394ac610d6417
0
comp90024-ansible/deploy_couch_cluster/roles/deploy_couchdb
356
[ "no_license" ]
[ { "path": "comp90024-ansible/deploy_couch_cluster/roles/deploy_couchdb/tasks/main.yml", "content": "---\n\n- name: Start a container with a couchdb\n become: yes\n docker_container:\n name: \"couchdb{{ ansible_default_ipv4['address'] }}\"\n image: \"{{ couchdb_image }}\"\n ports:\n - \"5984:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 416, "all_permissive": false }
ansible_role
TianjingRuan/COMP90024-Project
540e668402fee5881127fb9f3b2394ac610d6417
0
comp90024-ansible/deploy_couch_cluster/roles/install_couchdb
356
[ "no_license" ]
[ { "path": "comp90024-ansible/deploy_couch_cluster/roles/install_couchdb/tasks/main.yml", "content": "---\n\n\n- name: Pull default Docker image\n become: yes\n docker_image:\n name: \"{{ couchdb_image }}\"\n source: pull\n", "license_type": "no_license", "detected_licenses": [], "size_by...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 119, "all_permissive": false }
ansible_role
orossant/Playbooks
f43dbf133b2defee204cac9b517da64dcbeb9331
1
roles/remove-apache
356
[ "no_license" ]
[ { "path": "roles/remove-apache/vars/main.yml", "content": "---\n# vars file for role-apache", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "roles/remove-apache/handlers/main.yml", "content": "---\n# handlers file for role-apache\n- name: restar...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 534, "all_permissive": false }
ansible_role
madRusl/SA
2537dc5e846ad2e8f3aa51dfd7e0c52f769886d0
0
ansible/roles/post_get_app
356
[ "no_license" ]
[ { "path": "ansible/roles/post_get_app/tasks/main.yml", "content": "---\n# tasks file for install_nginx\n\n - name: get app_data.xml\n raw: \"system_profiler SPInstallHistoryDataType -xml > /tmp/app_data.xml\"\n args:\n executable: /bin/bash\n\n - name: post app_data.xml to flask\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 504, "all_permissive": false }
ansible_role
madRusl/SA
2537dc5e846ad2e8f3aa51dfd7e0c52f769886d0
0
ansible/roles/post_get_hardware
356
[ "no_license" ]
[ { "path": "ansible/roles/post_get_hardware/tasks/main.yml", "content": "---\n# tasks file for post hardware\n\n - name: get hardware_data.xml\n raw: \"system_profiler SPHardwareDataType -xml > /tmp/hardware_data.xml\"\n args:\n executable: /bin/bash\n\n - name: post hardware_data.xml ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 469, "all_permissive": false }
ansible_role
madRusl/SA
2537dc5e846ad2e8f3aa51dfd7e0c52f769886d0
0
ansible/roles/post_get_system
356
[ "no_license" ]
[ { "path": "ansible/roles/post_get_system/tasks/main.yml", "content": "---\n# tasks file for install_java\n\n - name: get sys_data.xml\n raw: \"system_profiler SPSoftwareDataType -xml > /tmp/sys_data.xml\"\n args:\n executable: /bin/bash\n\n - name: post sys_data.xml to flask\n ra...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 572, "all_permissive": false }
ansible_role
madRusl/SA
2537dc5e846ad2e8f3aa51dfd7e0c52f769886d0
0
ansible/roles/set_authorized_key
356
[ "no_license" ]
[ { "path": "ansible/roles/set_authorized_key/tasks/main.yml", "content": "---\n# task file for sshd_update\n\n - name: Set authorized key taken from file\n authorized_key:\n user: root8\n state: present\n key: \"{{ lookup('file', '/Users/pinkpony/.ssh/is_corporate.pub') }}\"\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 222, "all_permissive": false }
ansible_role
madRusl/SA
2537dc5e846ad2e8f3aa51dfd7e0c52f769886d0
0
ansible/roles/update_sshd_config
356
[ "no_license" ]
[ { "path": "ansible/roles/update_sshd_config/tasks/main.yml", "content": "---\n# task file for sshd_update\n\n - lineinfile:\n path: /etc/ssh/sshd_config\n regexp: '^#PasswordAuthentication yes'\n line: \"PasswordAuthentication no\"\n state: present\n become: yes\n\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 634, "all_permissive": false }
ansible_role
matthappens/fdt-transfer
a844e9f33690f96e46d543a4bc7c998063c54abc
0
roles/fdt
353
[ "no_license" ]
[ { "path": "roles/fdt/tasks/main.yml", "content": "---\n - name: \"Copy FDT jar\"\n copy: src=fdt.jar dest=/var/ owner=root group=root mode=0757\n - name: \"apt upgrade\"\n apt: update_cache=yes\n - name: \"install java version\"\n apt: name=openjdk-7-jre-headless state=present\n - name: \"Creat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 405, "all_permissive": false }
ansible_role
lerkasan/infrastructure_demo
672389bdaff0962f9d807450f52738c99997c6c2
0
ansible/roles/install_docker_debian
353
[ "no_license" ]
[ { "path": "ansible/roles/install_docker_debian/vars/main.yml", "content": "docker_url: https://download.docker.com\nrepo_url: \"{{ docker_url + '/' + ansible_system | lower + '/' + ansible_distribution | lower }}\"\n\nkeyrings_path: /etc/apt/keyrings\nkeyring: \"{{ keyrings_path + '/docker.gpg' }}\"\nkey_ur...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1329, "all_permissive": false }
ansible_role
lerkasan/infrastructure_demo
672389bdaff0962f9d807450f52738c99997c6c2
0
ansible/roles/install_docker_rhel
353
[ "no_license" ]
[ { "path": "ansible/roles/install_docker_rhel/tasks/main.yml", "content": "---\n- name: Install prerequisites for Docker repository\n ansible.builtin.yum:\n pkg: yum-utils\n state: latest\n\n- name: Setup Docker stable repository\n shell: yum-config-manager --add-repo \"{{ docker_repo }}\"\n args:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 795, "all_permissive": false }
ansible_role
LEARNAcademy/devpass-devops
fa301295ed35333f61abd334ae4a9967a8a7fca7
3
files/challenge6/roles/dj-wasabi.ossec-server
353
[ "no_license" ]
[ { "path": "files/challenge6/roles/dj-wasabi.ossec-server/defaults/main.yml", "content": "---\n# defaults file for ossec-server\n#\nossec_server_config: []\nossec_agent_configs: []\nossec_server_fqdn: \"ossec-server\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 121 ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 11, "total_bytes": 11600, "all_permissive": false }
ansible_role
LEARNAcademy/devpass-devops
fa301295ed35333f61abd334ae4a9967a8a7fca7
3
files/challenge6/roles/notch8.site24x7
353
[ "no_license" ]
[ { "path": "files/challenge6/roles/notch8.site24x7/tasks/status.yml", "content": "---\n- name: Checking status of Site24x7 monitoring agent\n shell: /etc/init.d/site24x7monagent status\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 102 }, { "path": "files/challe...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 4778, "all_permissive": false }
ansible_role
liorakamil/assignments
7f460b29204448d0a6335753af30825320467c63
0
Homewrk8_ansible/roles/installdocker
353
[ "no_license" ]
[ { "path": "Homewrk8_ansible/roles/installdocker/tasks/dockertask.yml", "content": "---\n- name: installif \n tasks: \n - include: tasks/dockertask.yml\n when: ansible_distribution == \"Ubuntu\" or ansible_distribution == \"Red Hat Enterprise Linux\"", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 162, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/Common_Linux
353
[ "no_license" ]
[ { "path": "roles/Common_Linux/tasks/main.yml", "content": "- name: Atualização dos servidores Linux\n include_tasks: config_inicial.yml\n when: ansible_facts['distribution_major_version'] == \"8\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 137 }, { "path...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 10459, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/Common_Windows
353
[ "no_license" ]
[ { "path": "roles/Common_Windows/defaults/main.yml", "content": "---\n# defaults file for upgrade_windows\n\ncommon_pacotes_windows:\n # - forticlientvpn\n - cpu-z.install\n - winrar\n - googlechrome\n # - teamviewer\n # - anydesk\n\ncommon_desinstall_windows:\n - vim\n - git\n\n", "license_type"...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 3467, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/allone_zabbix
353
[ "no_license" ]
[ { "path": "roles/allone_zabbix/tasks/main.yml", "content": "- name: Playbook de Instalação do zabbix Server all one Zabbix\n include_tasks: allonezabbix.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 }, { "path": "roles/allone_zabbix/tests/test.yml", ...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 10834, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/api_add_linux
353
[ "no_license" ]
[ { "path": "roles/api_add_linux/tasks/main.yml", "content": "- name: Instalação do Zabbix Agent\n include_tasks: api.create.linux.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "roles/api_add_linux/defaults/main.yml", "content": "---\n# d...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 4070, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/api_add_windows
353
[ "no_license" ]
[ { "path": "roles/api_add_windows/tasks/main.yml", "content": "---\n# tasks file for api_zabbix create hosts windows\n- name: Criar um novo host Windows\n local_action:\n module: community.zabbix.zabbix_host\n server_url: http://{{ zbx_front }}/zabbix/\n login_user: Admin\n login_password: <PASS...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 812, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/grafana_server
353
[ "no_license" ]
[ { "path": "roles/grafana_server/tasks/grafana.yml", "content": "---\n# tasks file for grafana-server\n# -------------------------------------------------------------------------------------------#\n- name: Adcionando Repositorio Grafana Server\n shell: \"wget https://dl.grafana.com/oss/release/grafana-{{ v...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2841, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/zabbix_agent
353
[ "no_license" ]
[ { "path": "roles/zabbix_agent/tasks/update.windows.yml", "content": "---\n\n- name: Instale todas as atualizações de segurança, críticas e cumulativas .\n win_updates:\n category_names:\n - SecurityUpdates\n - CriticalUpdates\n - UpdateRollups\n reboot: yes\n...\n", "license_type":...
{ "task_files": 9, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 13, "total_bytes": 18942, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/zabbix_db
353
[ "no_license" ]
[ { "path": "roles/zabbix_db/files/.my.cnf", "content": "[client]\nuser=root\npassword=<PASSWORD>\n\n[zabbix]\nuser=zabbix_server\npassword=<PASSWORD>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 88 }, { "path": "roles/zabbix_db/tasks/db.yml", "content": "--...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 5893, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/zabbix_front
353
[ "no_license" ]
[ { "path": "roles/zabbix_front/defaults/main.yml", "content": "---\n# defaults file for install_zabbix_front\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 }, { "path": "roles/zabbix_front/handlers/main.yml", "content": "---\n# handlers file for install_za...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 5034, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/zabbix_ha_server
353
[ "no_license" ]
[ { "path": "roles/zabbix_ha_server/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - zabbix_ha_server", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 }, { "path": "roles/zabbix_ha_server/handlers/main.yml", "content": ...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 3602, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/zabbix_proxy
353
[ "no_license" ]
[ { "path": "roles/zabbix_proxy/tasks/main.yml", "content": "- name: Playbook de instalação do Zabbix Proxy SqLite3\n include_tasks: proxy.yml\n when: ansible_facts['distribution_major_version'] == \"8\"\n\n- name: Playbook de Criação do proxy no frontend do zabbix\n include_tasks: api.proxy.create.yml\n ...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 14744, "all_permissive": false }
ansible_role
marioalvesluck/lab_zabbix_ansible_3
7a7295bb99f35ec1a84241042e885f6a9d86f3f6
1
roles/zabbix_server
353
[ "no_license" ]
[ { "path": "roles/zabbix_server/defaults/main.yml", "content": "---\n# defaults file for install_zabbix_server\n# Lista de Pacotes de Instalação no zabbix-server\npackages_zabbix_server:\n - mysql\n - zabbix-server-mysql\n - zabbix-agent2\n - zabbix-sql-scripts\n - git\n - dos2unix\n - zabbix-get\n -...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 12632, "all_permissive": false }
ansible_role
DiegoMiguelanez/documentation
c4a20c2c65a3fbbb8584b847b0ab05f5995ff5e3
0
full_infrastructure_project/lab/roles/apache2
353
[ "no_license" ]
[ { "path": "full_infrastructure_project/lab/roles/apache2/tasks/main.yml", "content": "---\n# tasks file for roles/apache2\n- include: tasks/apache2_install.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "full_infrastructure_project/lab/roles/ap...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 833, "all_permissive": false }
ansible_role
DiegoMiguelanez/documentation
c4a20c2c65a3fbbb8584b847b0ab05f5995ff5e3
0
full_infrastructure_project/lab/roles/common
353
[ "no_license" ]
[ { "path": "full_infrastructure_project/lab/roles/common/templates/hosts.j2", "content": "127.0.0.1 localhost\n192.168.7.11 master\n192.168.7.11 web1\n192.168.7.12 web2\n192.168.7.13 db1\n192.168.7.14 loadbalancer\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 120 }, ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 354, "all_permissive": false }
ansible_role
DiegoMiguelanez/documentation
c4a20c2c65a3fbbb8584b847b0ab05f5995ff5e3
0
full_infrastructure_project/lab/roles/nginx
353
[ "no_license" ]
[ { "path": "full_infrastructure_project/lab/roles/nginx/templates/mysite.j2", "content": "#Configuracion modificada por test variables para {{ ansible_facts['nodename'] }} \n upstream webservers {\n #Bucle for\n {% for host in groups['webservers'] %}\n server {{ hostvars[host][...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 996, "all_permissive": false }
ansible_role
DiegoMiguelanez/documentation
c4a20c2c65a3fbbb8584b847b0ab05f5995ff5e3
0
vagrant/cluster2/ansible/roles/common
353
[ "no_license" ]
[ { "path": "vagrant/cluster2/ansible/roles/common/tasks/install-node-exporter.yml", "content": "#wget https://github.com/prometheus/node_exporter/releases/download/v*/node_exporter-*.*-amd64.tar.gz\n#tar xvfz node_exporter-*.*-amd64.tar.gz\n#cd node_exporter-*.*-amd64\n#./node_exporter\n#https://github.com/p...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1734, "all_permissive": false }
ansible_role
DiegoMiguelanez/documentation
c4a20c2c65a3fbbb8584b847b0ab05f5995ff5e3
0
vagrant/cluster2/ansible/roles/dns
353
[ "no_license" ]
[ { "path": "vagrant/cluster2/ansible/roles/dns/tasks/main.yml", "content": "---\n# tasks file for dns\n- include: install-bind9.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 53 }, { "path": "vagrant/cluster2/ansible/roles/dns/tasks/install-bind9.yml", "con...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 587, "all_permissive": false }
ansible_role
DiegoMiguelanez/documentation
c4a20c2c65a3fbbb8584b847b0ab05f5995ff5e3
0
vagrant/cluster2/ansible/roles/monitoring
353
[ "no_license" ]
[ { "path": "vagrant/cluster2/ansible/roles/monitoring/tasks/main.yml", "content": "---\n# tasks file for monitoring\n- include: install-prometheus.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 66 }, { "path": "vagrant/cluster2/ansible/roles/monitoring/tasks/...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 436, "all_permissive": false }
ansible_role
DiegoMiguelanez/documentation
c4a20c2c65a3fbbb8584b847b0ab05f5995ff5e3
0
vagrant/cluster2/ansible/roles/web
353
[ "no_license" ]
[ { "path": "vagrant/cluster2/ansible/roles/web/tasks/main.yml", "content": "---\n# tasks file for web\n- include: install-nginx-proxy.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 59 }, { "path": "vagrant/cluster2/ansible/roles/web/tasks/install-nginx-proxy.ym...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 230, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/barman
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/barman/handlers/main.yml", "content": "---\n# handlers file for barman\n- name: restart-sshd\n systemd:\n name: sshd\n state: restarted", "license_type": "no_license", "detected_licenses": [], "size_bytes": 98 }, { "path": "ODOO-POSTGRESSQL/roles/...
{ "task_files": 6, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 2927, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/bastion
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/bastion/tasks/install-services.yml", "content": "- name: install-iptables-services\n package:\n name: \n - iptables-services\n - mc\n - tcpdump\n - iftop\n - haproxy\n state: present\n notify: \n - start-iptables-services\n - start-hap...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 4721, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/borg-backup-client
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/borg-backup-client/tasks/borg_service.yml", "content": "---\n## Конфигурим borg_service\n- name: configure borg-backup.service\n copy:\n src: borg-backup.service\n dest: /etc/systemd/system/\n owner: \"root\"\n group: \"root\"\n mode: '0644'\n\n## Конфигурим...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1198, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/borg-backup-server
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/borg-backup-server/tasks/install_borgbackup.yml", "content": "---\n- name: install_borgbackup\n yum:\n name: \n - borgbackup\n - mc\n state: latest\n ", "license_type": "no_license", "detected_licenses": [], "size_bytes": 99 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 99, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/create-user-db-to-postgresql
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/create-user-db-to-postgresql/tasks/reload-config-postgresql.yml", "content": "# Применение конфига после изменения\n- name: reload config postgresql\n postgresql_query:\n query: SELECT pg_reload_conf();\n\n\n\n# - name: Select query to db acme with positional arguments ...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 4493, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/nginx
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/nginx/vars/main.yml", "content": "---\n# Порт сайта\ndomain_port: 8008\nnginx_port: 8080\nvirtual_domain: odoo.project.lc\nworker_processes: auto\nworker_connections: 2048\ntypes_hash_max_size: 4096\nlog_server_ip: '192.168.56.56'\nlog_port: '514'", "license_type": "no_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1992, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/odoo
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/odoo/tasks/install-odoo.yml", "content": "- name: apt install gnupg2 nginx mc\n apt:\n name: \n - gnupg2\n - mc\n update_cache: yes\n\n## Установка епозитория\n- name: install repo odoo.list\n copy:\n src: odoo.list\n dest: /etc/apt/sources.list.d/\n...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 809, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/postgre
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/postgre/tasks/configure-sshd_config.yml", "content": "## Конфигурируем сервис ssh на сервере barman\n- name: configure sshd_conf\n template:\n src: sshd_config.j2\n dest: /etc/ssh/sshd_config\n notify: restart-sshd", "license_type": "no_license", "detected_l...
{ "task_files": 8, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 4762, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/postgres-configure-slave
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/postgres-configure-slave/vars/main.yml", "content": "---\n# vars file for postgres-create-slave\npgnode_m_ip: '192.168.56.51'", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 }, { "path": "ODOO-POSTGRESSQL/roles/postgres-configur...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 740, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/rsyslog
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/rsyslog/tasks/main.yml", "content": "---\n## Подключаем файл конфигурации rsyslog\n- name: Import configure file rsyslog\n import_tasks: rsyslog-configure-server.yml\n tags: server\n\n- name: Import configure file rsyslog\n import_tasks: rsyslog-configure-client.yml\n t...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1068, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/selinux
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/selinux/tasks/semanage.yml", "content": "- name: redirect haproxy tcp port 8069\n community.general.seport:\n ports: '{{ se_port }}'\n proto: tcp\n setype: http_port_t\n state: present", "license_type": "no_license", "detected_licenses": [], "size_b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 219, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/zabbix-agent
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/zabbix-agent/handlers/main.yml", "content": "---\n# handlers file for zabbix-client\n- name: start-zabbix-agent\n systemd:\n name: zabbix-agent\n state: started\n enabled: yes\n\n- name: restart-zabbix-agent\n systemd:\n name: zabbix-agent\n state: restarte...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1365, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
ODOO-POSTGRESSQL/roles/zabbix-server
353
[ "no_license" ]
[ { "path": "ODOO-POSTGRESSQL/roles/zabbix-server/tasks/reconfigure-zabbix-server-conf.yml", "content": "## Устанваливаем параметры конфига, используя шаблон j2\n- name: reconfigure zabbix_server.conf\n template:\n src: zabbix_server.conf.j2\n dest: /etc/zabbix/zabbix_server.conf\n notify: \n - res...
{ "task_files": 6, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 3064, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
Otus-OSPF/roles/frr
353
[ "no_license" ]
[ { "path": "Otus-OSPF/roles/frr/vars/main.yml", "content": "---\n# vars file for frr\nrouters:\n - ansible_hostname == \"Router1\"\n - ansible_hostname == \"Router2\"\n - ansible_hostname == \"Router3\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 135 }, { "...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 2474, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
Otus-OSPF/roles/frr-cost
353
[ "no_license" ]
[ { "path": "Otus-OSPF/roles/frr-cost/tasks/configure-frr-cost.yml", "content": "# Отключаем запрет ассиметричного роутинга\n- name: set up asynchronous routing\n sysctl:\n name: net.ipv4.conf.all.rp_filter\n value: '0'\n state: present\n\n- name: set up OSPF\n template:\n src: frr-cost.j2\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 3487, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
Otus-Project-main/roles/docker-compose
353
[ "no_license" ]
[ { "path": "Otus-Project-main/roles/docker-compose/handlers/main.yml", "content": "---\n# handlers file for install-docker-compose\n- name: start docker\n systemd:\n name: docker\n enabled: yes\n state: started", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 ...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1634, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
Otus-Project-main/roles/postgre
353
[ "no_license" ]
[ { "path": "Otus-Project-main/roles/postgre/vars/main.yml", "content": "---\n# vars file for postgre\nip_db01: '10.10.40.20'\nip_db02: '10.10.40.21'", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "Otus-Project-main/roles/postgre/tasks/main.yml", ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1138, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
Otus-Vlan/roles/bond
353
[ "no_license" ]
[ { "path": "Otus-Vlan/roles/bond/tasks/main.yml", "content": "---\n# tasks file for team\n- name: import file configure vlans\n import_tasks: configure-bond.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 }, { "path": "Otus-Vlan/roles/bond/handlers/main.ym...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 4474, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
Otus-Vlan/roles/vlans
353
[ "no_license" ]
[ { "path": "Otus-Vlan/roles/vlans/tasks/main.yml", "content": "---\n# tasks file for vlans\n- name: import file configure vlans\n import_tasks: configure-vlans.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 98 }, { "path": "Otus-Vlan/roles/vlans/tasks/configur...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1660, "all_permissive": false }
ansible_role
vedoff/OTUS_ALP
450346420e7282a0b190fb236fb00c3d1e136a15
0
Otus-firewall/roles/knock
353
[ "no_license" ]
[ { "path": "Otus-firewall/roles/knock/tasks/iptables-knock-rules.yml", "content": "## Создание директорию для правил\n- name: Create folder for iptables\n file:\n path: /etc/iptables\n owner: \"root\"\n group: \"vagrant\"\n mode: '0775'\n state: directory\n when: \n - ansible_hostname == ...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 2452, "all_permissive": false }
ansible_role
pius-ng3a/cloud_deployment_udacity
32b01c97f6ebdfe7d1abbaf8c96e5f28543467fa
0
roles/setup
353
[ "no_license" ]
[ { "path": "roles/setup/tasks/main.yml", "content": "---\n - name: \"Setting up packages on server\"\n become: yes\n apt:\n update_cache: yes \n - name: \"Remove dependencies\"\n become: yes\n apt:\n autoremove: yes # removing old dependencies\n \n - name: \"updat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1738, "all_permissive": false }
ansible_role
laperlej/epigeec-infra
84ef97e4cc7bccae43c5551c3b19ed5357844851
0
ansible/roles/epigeec.backup_pg
353
[ "no_license" ]
[ { "path": "ansible/roles/epigeec.backup_pg/tasks/main.yml", "content": "- name: Create Folder\n file:\n path: /mnt/backup\n owner: postgres\n group: postgres\n state: directory\n mode: 0700\n\n- name: pgpass\n copy:\n content: \"{{ groups['dbservers'][0] }}:5432:{{ galaxy_db_name }}:{{ g...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 611, "all_permissive": false }
ansible_role
laperlej/epigeec-infra
84ef97e4cc7bccae43c5551c3b19ed5357844851
0
ansible/roles/epigeec.dataset
353
[ "no_license" ]
[ { "path": "ansible/roles/epigeec.dataset/files/docker-compose.yaml", "content": "version: \"3.2\"\nname: \"geec_web\"\nservices:\n client:\n image: jlaperle/geec_web\n ports:\n - \"8000:8000\"\n restart: unless-stopped\n logging:\n options:\n max-size: \"50m\"\n", "license_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 464, "all_permissive": false }
ansible_role
laperlej/epigeec-infra
84ef97e4cc7bccae43c5551c3b19ed5357844851
0
ansible/roles/epigeec.gxadmin
353
[ "no_license" ]
[ { "path": "ansible/roles/epigeec.gxadmin/tasks/main.yml", "content": "# - name: Install psql\n# package:\n# name: postgresql-client\n#\n- name: Install make\n package:\n name: build-essential\n\n- name: pgpass\n copy:\n content: \"{{ groups['dbservers'][0] }}:5432:{{ galaxy_db_name }}:{{ galax...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 397, "all_permissive": false }
ansible_role
laperlej/epigeec-infra
84ef97e4cc7bccae43c5551c3b19ed5357844851
0
ansible/roles/epigeec.postgresql
353
[ "no_license" ]
[ { "path": "ansible/roles/epigeec.postgresql/tasks/main.yml", "content": "---\n- name: Create Postgres Group\n group:\n name: postgres\n\n- name: Create Postgres User\n user:\n name: postgres\n group: postgres\n\n- name: Create Folder\n file:\n path: /mnt/volume/postgresql\n owner: postgres...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 436, "all_permissive": false }
ansible_role
laperlej/epigeec-infra
84ef97e4cc7bccae43c5551c3b19ed5357844851
0
ansible/roles/epigeec.restart_galaxy
353
[ "no_license" ]
[ { "path": "ansible/roles/epigeec.restart_galaxy/tasks/main.yml", "content": "# - name: galaxy systemd restart\n# systemd:\n# name: galaxy.target\n# state: restarted\n\n- name: galaxy systemd restart\n command:\n cmd: galaxyctl restart\n\n- name: galaxy systemd restart\n systemd:\n name: ng...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 245, "all_permissive": false }
ansible_role
laperlej/epigeec-infra
84ef97e4cc7bccae43c5551c3b19ed5357844851
0
ansible/roles/epigeec.service_account
353
[ "no_license" ]
[ { "path": "ansible/roles/epigeec.service_account/defaults/main.yml", "content": "galaxy_url: \"https://{{ lookup('env', 'GALAXY_HOSTNAME') }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 61 }, { "path": "ansible/roles/epigeec.service_account/files/get_api_ke...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 10408, "all_permissive": false }
ansible_role
laperlej/epigeec-infra
84ef97e4cc7bccae43c5551c3b19ed5357844851
0
ansible/roles/epigeec.setup
353
[ "no_license" ]
[ { "path": "ansible/roles/epigeec.setup/tasks/main.yml", "content": "---\n- name: Create users\n block:\n - name: Create Galaxy group\n group:\n name: \"{{ galaxy_group.name | default(galaxy_group) }}\"\n gid: \"{{ galaxy_group.gid | default(omit) }}\"\n system: \"{{ galaxy_grou...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2056, "all_permissive": false }
ansible_role
laperlej/epigeec-infra
84ef97e4cc7bccae43c5551c3b19ed5357844851
0
ansible/roles/epigeec.tools
353
[ "no_license" ]
[ { "path": "ansible/roles/epigeec.tools/files/install_tools.sh", "content": "#! /usr/bin/env bash\nset -e\n\nDOMAIN=$1\nAPI_KEY=$2\n\nsource .venv/bin/activate\nshed-tools install -g https://$DOMAIN -a $API_KEY -t files/galaxy/tool_list.yml\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 539, "all_permissive": false }