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 | numediaweb/devenv | c32c925dd5d47ca55794f2aac2a66365b74b8c4b | 0 | ansible/roles/varnish | 5,997 | [
"no_license"
] | [
{
"path": "ansible/roles/varnish/handlers/main.yml",
"content": "---\n- name: reload systemd\n command: systemctl daemon-reload\n become: yes\n\n- name: restart varnish\n service: name=varnish state=restarted\n become: yes\n\n- name: apache-reload\n service: name=apache2 state=reloaded\n become: yes\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 5399,
"all_permissive": false
} |
ansible_role | numediaweb/devenv | c32c925dd5d47ca55794f2aac2a66365b74b8c4b | 0 | ansible/roles/wkhtmltopdf | 5,997 | [
"no_license"
] | [
{
"path": "ansible/roles/wkhtmltopdf/tasks/main.yml",
"content": "---\n- name: Install xfonts (a prerequisite of wkhtmltopdf)\n package:\n name: \"{{ xfonts_package_name }}\"\n state: present\n update_cache: true\n become: yes\n\n- name: Download wkhtmltopdf\n get_url:\n # These come from vars... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 522,
"all_permissive": false
} |
ansible_role | qinbguzman-tip/Elastic-container | b2befa779f775a7b1ae59537761dc767e5164963 | 0 | roles/elk_docker | 5,997 | [
"no_license"
] | [
{
"path": "roles/elk_docker/tasks/main.yml",
"content": "---\n# tasks file for elk_docker\n- name: Create docker directory\n file:\n path: docker\n state: directory\n\n- name: Copy from docker directory files to remote machine\n copy:\n src: docker/\n dest: docker/\n\n- name: Build the image f... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 743,
"all_permissive": false
} |
ansible_role | bmort/oskar_web_test | d175f50f94f146c2e411c3bff42e60d9158592a6 | 0 | deploy/roles/common | 5,997 | [
"no_license"
] | [
{
"path": "deploy/roles/common/tasks/main.yml",
"content": "---\n# file: common/tasks/main.yml\n\n- name: Install EPEL-release (Extra packages for Enterprise Linux)\n become: yes\n yum:\n name: epel-release\n state: installed\n\n- name: Install key packages\n become: yes\n yum:\n name: \"{{ ite... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 418,
"all_permissive": false
} |
ansible_role | bmort/oskar_web_test | d175f50f94f146c2e411c3bff42e60d9158592a6 | 0 | deploy/roles/project | 5,997 | [
"no_license"
] | [
{
"path": "deploy/roles/project/templates/nginx.conf.j2",
"content": "server {\n listen 80;\n server_name {{ server_domain_or_ip }};\n\n location / {\n proxy_set_header Host $http_host;\n proxy_set_header X-Real-IP $remote_addr;\n proxy_set_header X-Forwarded-For $p... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 3922,
"all_permissive": false
} |
ansible_role | bmort/oskar_web_test | d175f50f94f146c2e411c3bff42e60d9158592a6 | 0 | deploy/roles/users | 5,997 | [
"no_license"
] | [
{
"path": "deploy/roles/users/tasks/main.yml",
"content": "---\n\n- name: Make sure there is a group for the oskar website\n group:\n name: oskar-web\n state: present\n become: True\n\n- name: Make sure the nginx group exists\n group:\n name: nginx\n state: present\n become: True\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 678,
"all_permissive": false
} |
ansible_role | Otus-DevOps-2021-06/fREEZY503_infra | 81f0f30bf7f487d1144a16185ded879d1f429531 | 0 | ansible/roles/app | 5,997 | [
"no_license"
] | [
{
"path": "ansible/roles/app/tasks/main.yml",
"content": "---\n# tasks file for app\n- include: ruby.yml\n- include: puma.yml\n\n# task debug for app\n- name: Show info about the env this host belongs to\n debug: msg=\"This host is in {{ env }} environment!!!\"",
"license_type": "no_license",
"dete... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 195,
"all_permissive": false
} |
ansible_role | Otus-DevOps-2021-06/fREEZY503_infra | 81f0f30bf7f487d1144a16185ded879d1f429531 | 0 | ansible/roles/db | 5,997 | [
"no_license"
] | [
{
"path": "ansible/roles/db/tasks/main.yml",
"content": "---\n# task file for db\n- include: install_mongo.yml\n- include: config_mongo.yml\n\n# task debug for db\n- name: Show info about the env this host belongs to\n debug: msg=\"This host is in {{ env }} environment!!!\"\n",
"license_type": "no_lice... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 210,
"all_permissive": false
} |
ansible_role | cbrnt/interview_tasks | 3c32f16f49a3d3e0bac89747d6c2bd3f67a67a45 | 0 | greenatom/ansible/roles/postgresql | 5,997 | [
"no_license"
] | [
{
"path": "greenatom/ansible/roles/postgresql/tasks/variables.yml",
"content": "---\n# Загружаем переменные Postgres\n- name: Include PostgreSQL variables\n include_vars:\n dir: vars\n extensions:\n - yml\n when: ansible_os_family == \"Debian\"\n tags:\n - postgres-configure\n",
"licens... | {
"task_files": 6,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 8849,
"all_permissive": false
} |
ansible_role | cbrnt/interview_tasks | 3c32f16f49a3d3e0bac89747d6c2bd3f67a67a45 | 0 | greenatom/ansible/roles/prometheus | 5,997 | [
"no_license"
] | [
{
"path": "greenatom/ansible/roles/prometheus/vars/prometheus.yml",
"content": "---\n# Задаем параметры Prometheus для установки\nprometheus_version: 2.49.1\nprometheus_binary_local_dir: ''\nprometheus_binary_url: \"https://github.com/{{ _prometheus_repo }}/releases/download/v{{ prometheus_version }}/\\\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 10049,
"all_permissive": false
} |
ansible_role | cbrnt/interview_tasks | 3c32f16f49a3d3e0bac89747d6c2bd3f67a67a45 | 0 | greenatom/ansible/roles/vault | 5,997 | [
"no_license"
] | [
{
"path": "greenatom/ansible/roles/vault/tasks/main.yml",
"content": "---\n- import_tasks: variables.yml\n- import_tasks: get-secrets.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 66
},
{
"path": "greenatom/ansible/roles/vault/tasks/get-secrets.yml",
"c... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 447,
"all_permissive": false
} |
ansible_role | mohamadhoseinmoradi/Probemesh | a7a7245ab8990da8aa56a62eb6cf1f68fefe6c0a | 0 | roles/alertmanager | 5,997 | [
"no_license"
] | [
{
"path": "roles/alertmanager/tasks/main.yml",
"content": "---\n\n - name: \"Creating alertmanager user group\"\n group: name=\"{{group_id}}\"\n\n - name: \"Creating alertmanager user\"\n user:\n name: \"{{ group_id }}\"\n group: \"{{ user_id }}\"\n system: yes\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2624,
"all_permissive": false
} |
ansible_role | mohamadhoseinmoradi/Probemesh | a7a7245ab8990da8aa56a62eb6cf1f68fefe6c0a | 0 | roles/nodeexporter | 5,997 | [
"no_license"
] | [
{
"path": "roles/nodeexporter/tasks/main.yml",
"content": "---\n\n - name: \"Creating Node_Exporter user group\"\n group: name=\"{{group_id}}\"\n\n - name: \"Creating Node_Exporter user\"\n user:\n name: \"{{ group_id }}\"\n group: \"{{ user_id }}\"\n system: yes\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1616,
"all_permissive": false
} |
ansible_role | mohamadhoseinmoradi/Probemesh | a7a7245ab8990da8aa56a62eb6cf1f68fefe6c0a | 0 | roles/prom | 5,997 | [
"no_license"
] | [
{
"path": "roles/prom/tasks/main.yml",
"content": "---\n\n - name: \"Creating prometheus user group\"\n group: name=\"{{group_id}}\"\n\n - name: \"Creating prometheus user\"\n user:\n name: \"{{ group_id }}\"\n group: \"{{ user_id }}\"\n system: yes\n shell: \"/sb... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2346,
"all_permissive": false
} |
ansible_role | mohamadhoseinmoradi/Probemesh | a7a7245ab8990da8aa56a62eb6cf1f68fefe6c0a | 0 | roles/telegraf | 5,997 | [
"no_license"
] | [
{
"path": "roles/telegraf/tasks/main.yml",
"content": "---\n# tasks file for telegraf\n - name: install transport-https\n apt:\n name: apt-transport-https\n state: present\n\n - name: add telegraf apt-key\n apt_key:\n url: https://repos.influxdata.com/influxdb.key\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 692,
"all_permissive": false
} |
ansible_role | mohamadhoseinmoradi/Probemesh | a7a7245ab8990da8aa56a62eb6cf1f68fefe6c0a | 0 | roles/ufw | 5,997 | [
"no_license"
] | [
{
"path": "roles/ufw/tasks/main.yml",
"content": "---\n# tasks file for ufw\n\n - name: Configure UFW\n ufw:\n rule: allow\n port: \"x\"\n proto: tcp\n src: \"x.x.x.x/x\"\n comment: \"\"\n policy: allow\n state: reloaded\n tags: \"ufw\"\n\n",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 230,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/agama | 5,997 | [
"no_license"
] | [
{
"path": "roles/agama/tasks/main.yaml",
"content": "- name: Install python3-flask-sqlalchemy & python3-pymysql\n ansible.builtin.apt:\n name:\n - python3-flask-sqlalchemy\n - python3-pymysql\n update_cache: yes\n \n- name: Add the user 'agama'\n user:\n name: agama\n\n- name: Create... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1004,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/agama_client | 5,997 | [
"no_license"
] | [
{
"path": "roles/agama_client/templates/agama-client.conf.j2",
"content": "database_url=http://influxdb:8086\ndatabase_name=latency\nsubnet=192.168.42.0/23\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 79
},
{
"path": "roles/agama_client/tasks/main.yaml",
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1537,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/backup | 5,997 | [
"no_license"
] | [
{
"path": "roles/backup/tasks/main.yaml",
"content": "- name: Create backup user\n user:\n name: backup\n home: /home/backup\n shell: /bin/bash\n generate_ssh_key: yes\n ssh_key_bits: 2048\n ssh_key_file: .ssh/id_rsa\n \n- name: Update known hosts\n template:\n owner: backup\n g... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 324,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/bind | 5,997 | [
"no_license"
] | [
{
"path": "roles/bind/tasks/main.yaml",
"content": "- name: Install bind9\n apt:\n name:\n - bind9\n - python3-dnspython\n \n- name: Start bind9\n service:\n name: bind9\n state: started\n enabled: yes\n \n- name: Copy the config file\n template:\n src: ../templates/named... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4819,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/dns | 5,997 | [
"no_license"
] | [
{
"path": "roles/dns/tasks/main.yaml",
"content": "- name: Disable systemd-resolved\n ansible.builtin.service:\n name: systemd-resolved\n state: stopped\n enabled: no\n\n- name: Move resolv.conf\n ansible.builtin.template:\n dest: /etc/resolv.conf\n src: resolv.conf.j2\n \n",
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 497,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/docker | 5,997 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yaml",
"content": "- name: install docker package\n ansible.builtin.apt:\n name:\n - docker.io\n - python3-docker\n\n- name: Start and enable docker service\n ansible.builtin.service:\n name: docker\n state: started\n enabled: yes\n",
"license_t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 226,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/grafana | 5,997 | [
"no_license"
] | [
{
"path": "roles/grafana/tasks/apt.yaml",
"content": "- name: Add keys\n ansible.builtin.apt_key:\n url: https://packages.grafana.com/gpg.key\n\n- name: Add grafana repo\n ansible.builtin.apt_repository:\n repo: deb https://packages.grafana.com/oss/deb stable main\n notify:\n - apt update\n\n- n... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 19601,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/haproxy | 5,997 | [
"no_license"
] | [
{
"path": "roles/haproxy/tasks/main.yaml",
"content": "- name: Install haproxy\n apt:\n name: haproxy\n state: latest\n \n- name: Update haproxy config\n template:\n src: haproxy.cfg.j2\n dest: /etc/haproxy/haproxy.cfg\n notify: restart haproxy\n \n- name: Start haproxy\n service:\n n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1765,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/influxdb | 5,997 | [
"no_license"
] | [
{
"path": "roles/influxdb/handlers/main.yaml",
"content": "- name: apt update\n ansible.builtin.apt:\n update_cache: yes\n\n- name: restart influxdb\n ansible.builtin.service:\n name: influxdb\n state: restarted\n\n- name: restart telegraf\n ansible.builtin.service:\n name: telegraf\n stat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2712,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/init | 5,997 | [
"no_license"
] | [
{
"path": "roles/init/handlers/main.yaml",
"content": "- name: Restart prometheus\n ansible.builtin.service:\n name: prometheus\n state: restarted\n \n- name: Restart nginx\n ansible.builtin.service:\n name: nginx\n state: restarted\n enabled: yes\n \n- name: Restart node_exporter\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1686,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/keepalived | 5,997 | [
"no_license"
] | [
{
"path": "roles/keepalived/tasks/main.yaml",
"content": "- name: Install keepalived\n apt:\n name: keepalived\n state: latest\n \n- name: Create script directory\n file:\n path: /home/keepalived_script\n state: directory\n mode: '0755'\n \n- name: Upload keepalived script\n template:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3455,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/mysql | 5,997 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yaml",
"content": "- name: Install mysql-server\n ansible.builtin.apt:\n name: mysql-server\n\n- name: Install python3-pymysql\n ansible.builtin.apt:\n name: python3-pymysql\n\n- name: Start service mysql, if not started\n ansible.builtin.service:\n name: mysql\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4181,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/nginx | 5,997 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yaml",
"content": "- name: install nginx\n apt:\n name: nginx\n state: latest\n update_cache: yes\n\n- name: nginx config\n ansible.builtin.template:\n src: ../nginx/templates/default\n dest: /etc/nginx/sites-enabled/default\n notify:\n - Restart nginx\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 663,
"all_permissive": false
} |
ansible_role | timnet238/ica0002 | ce2a3ec072a77ec441aab94adadd2ffec96ec053 | 0 | roles/prometheus | 5,997 | [
"no_license"
] | [
{
"path": "roles/prometheus/tasks/main.yaml",
"content": "- name: Install prometheus\n ansible.builtin.apt:\n name: prometheus\n state: present\n\n- name: Start and enable prometheus service\n ansible.builtin.service:\n name: prometheus\n state: started\n enabled: yes\n\n#- name: Install ng... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2675,
"all_permissive": false
} |
ansible_role | gth828r/sandbox | ef695f937d7d2b210c2017f1eba7dc1990c8f8d5 | 0 | haproxy/ansible/roles/tuptysite | 5,997 | [
"no_license"
] | [
{
"path": "haproxy/ansible/roles/tuptysite/tasks/main.yml",
"content": "---\n- name: Create web root\n file: dest={{ webroot }} mode=775 state=directory\n owner={{ webuser }} group={{ webgroup }}\n register: webrootcreated\n\n- name: Install index\n template: src=tupty.j2 dest={{ webroot }}/index.... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 511,
"all_permissive": false
} |
ansible_role | urjeetpatel/kubernetes-vagrant-ansible | a0739688841b96b50938603cfc4dd054196dd234 | 0 | kubernetes-setup/roles/docker | 5,997 | [
"no_license"
] | [
{
"path": "kubernetes-setup/roles/docker/tasks/main.yml",
"content": "---\n- name: Install packages that allow apt to be used over HTTPS\n apt:\n name: \"{{ packages }}\"\n state: present\n update_cache: yes\n vars:\n packages:\n - apt-transport-https\n - ca-certificates\n - curl\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 917,
"all_permissive": false
} |
ansible_role | vikas17a/ansible-awsvpc | 103e8a5c91075faf489402dfab1751ef9eb6821b | 0 | roles/vpc | 5,997 | [
"no_license"
] | [
{
"path": "roles/vpc/vars/main.yml",
"content": "---\n# vars file for vpc\n\nVPC_NAME: ansible-awsvpc\nVPC_REGION: ap-south-1 # N.Virginia\nVPC_CIDR: \"172.25.0.0/16\"\nVPC_CLASS_DEFAULT: \"172.25\"\nENVIRONMENT: TEST\nKEY_PAIR: vikas-original\n\n# Variables for VPC\nvpc_name: \"{{ VPC_NAME }}\"\nvpc_region... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 4512,
"all_permissive": false
} |
ansible_role | Cirilus/AnsbileInfra | acb6ece0536407bc53cf046fc9d983d46fb136ed | 0 | roles/certbot | 5,997 | [
"no_license"
] | [
{
"path": "roles/certbot/vars/main.yml",
"content": "email:\ndomain_name:\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 21
},
{
"path": "roles/certbot/tasks/main.yml",
"content": "- name: Update apt packages\n apt:\n upgrade: yes\n update_cache: ye... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 599,
"all_permissive": false
} |
ansible_role | Cirilus/AnsbileInfra | acb6ece0536407bc53cf046fc9d983d46fb136ed | 0 | roles/docker | 5,997 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "- name: Install aptitude\n apt:\n name: aptitude\n state: latest\n update_cache: true\n become: true\n\n- name: Install required system packages\n apt:\n pkg:\n - apt-transport-https\n - ca-certificates\n - curl\n - soft... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 795,
"all_permissive": false
} |
ansible_role | Cirilus/AnsbileInfra | acb6ece0536407bc53cf046fc9d983d46fb136ed | 0 | roles/nvidia_docker_runtime | 5,997 | [
"no_license"
] | [
{
"path": "roles/nvidia_docker_runtime/tasks/main.yml",
"content": "- name: Check NVIDIA GPU status\n command: nvidia-smi\n register: nvidia_smi_output\n ignore_errors: yes\n become: true\n\n- name: Display NVIDIA driver information\n debug:\n var: nvidia_smi_output.stdout\n when: nvidia_smi_output... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1937,
"all_permissive": false
} |
ansible_role | vikas4786/playbooks | ca6ad5fd0154a6280ec45a7a2e7d26d2f6d63b99 | 0 | roles/myvhost | 5,997 | [
"no_license"
] | [
{
"path": "roles/myvhost/tasks/main.yml",
"content": "---\n- yum: name=httpd state=latest\n\n- service: name=httpd state=started enabled=yes\n\n- template:\n src: vhosts.conf.j2\n dest: \"/etc/httpd/conf.d/{{ ansible_hostname }}.conf\"\n force: yes\n owner: root\n group: root\n mode: 0644\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 546,
"all_permissive": false
} |
ansible_role | seawolf82/mongo4_tomcat9_centos_ansible | 778da4644e7c4c966b03d695782f6b51d2118bc0 | 0 | roles/disable-thp | 5,997 | [
"no_license"
] | [
{
"path": "roles/disable-thp/tasks/main.yaml",
"content": "- name: Disabling Transparent Huge Pages to Improve Performance\n copy:\n src: disable-thp.service\n dest: /etc/systemd/system/disable-thp.service\n owner: root\n group: root\n mode: u=rw,g=r,o=r\n tags: mongodb\n\n\n- name: systemd... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1152,
"all_permissive": false
} |
ansible_role | seawolf82/mongo4_tomcat9_centos_ansible | 778da4644e7c4c966b03d695782f6b51d2118bc0 | 0 | roles/disable-thp_uninstall | 5,997 | [
"no_license"
] | [
{
"path": "roles/disable-thp_uninstall/tasks/main.yaml",
"content": "---\n\n- name: Disable service disable-thp at boot and stop\n systemd:\n name: disable-thp.service\n state: stopped\n enabled: False\n tags: mongodb\n\n- name: Remove Transparent Huge Pages to Improve Performance from /etc/syste... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 530,
"all_permissive": false
} |
ansible_role | seawolf82/mongo4_tomcat9_centos_ansible | 778da4644e7c4c966b03d695782f6b51d2118bc0 | 0 | roles/mongodb | 5,997 | [
"no_license"
] | [
{
"path": "roles/mongodb/tasks/main.yaml",
"content": "---\n\n- name: Copy mongodb repository into /etc/yum.repos.d for EL7-EL8\n copy:\n src: mongodb-org.repo\n dest: /etc/yum.repos.d/mongodb-org.repo\n owner: root\n group: root\n mode: u=rw,g=r,o=r\n when: (ansible_facts['os_family'] == \... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1614,
"all_permissive": false
} |
ansible_role | seawolf82/mongo4_tomcat9_centos_ansible | 778da4644e7c4c966b03d695782f6b51d2118bc0 | 0 | roles/mongodb_uninstall | 5,997 | [
"no_license"
] | [
{
"path": "roles/mongodb_uninstall/tasks/main.yaml",
"content": "---\n\n- name: disable MongoDB service\n systemd:\n name: mongod\n enabled: false\n tags: mongodb \n\n- name: Make sure MongoDB service is stopped\n systemd:\n state: stopped\n name: mongod\n tags: mongodb \n\n- name: main | ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1789,
"all_permissive": false
} |
ansible_role | melkypie/bigip-as3-ansible | 8edf0cb03ee4a0a8e78e0c5b8faa456a39319954 | 5 | roles/bigip_as3_deploy | 5,997 | [
"no_license"
] | [
{
"path": "roles/bigip_as3_deploy/tasks/main.yml",
"content": "- name: Deploy AS3 to BIGIP\n uri:\n url: \"https://{{ hostvars[inventory_hostname].ansible_host }}/mgmt/shared/appsvcs/declare?async=true\"\n method: POST\n user: \"{{ admin_user }}\"\n password: \"{{ <PASSWORD> }}\"\n validate_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1206,
"all_permissive": false
} |
ansible_role | melkypie/bigip-as3-ansible | 8edf0cb03ee4a0a8e78e0c5b8faa456a39319954 | 5 | roles/bigip_as3_gen | 5,997 | [
"no_license"
] | [
{
"path": "roles/bigip_as3_gen/templates/app/objects/service_tcp.j2",
"content": "{{ vars.name }}:\n class: Service_TCP\n pool: {{ vars.pool.name }}\n virtualPort: {{ vars.port }}\n virtualAddresses:\n{% for vip in vars.vips %}\n{% if vip.source is defined %}\n - [{{ vip.ip }}, {{ vip... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 18,
"total_bytes": 17419,
"all_permissive": false
} |
ansible_role | john24rel/nagiosxi | 7b90a8632db9638b22cd12e85f514c80025c3d8d | 0 | roles/ansible-role-prerequisites | 5,937 | [
"no_license"
] | [
{
"path": "roles/ansible-role-prerequisites/defaults/main.yml",
"content": "---\n# defaults file for ansible-role-prerequisites\nrepo_nagios: \"https://repo.nagios.com/nagios/7/nagios-repo-7-4.el7.noarch.rpm\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 130
},
{
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 354,
"all_permissive": false
} |
ansible_role | john24rel/nagiosxi | 7b90a8632db9638b22cd12e85f514c80025c3d8d | 0 | roles/ansible_role_nagiosxi | 5,937 | [
"no_license"
] | [
{
"path": "roles/ansible_role_nagiosxi/defaults/main.yml",
"content": "---\n# defaults file for ansible-role-prerequisites\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 51
},
{
"path": "roles/ansible_role_nagiosxi/tasks/main.yml",
"content": "---\n# tasks f... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 659,
"all_permissive": false
} |
ansible_role | githubckgoh1439/zarb-deploy-ansible-example | 77ba7404bbcb9a17b289da0d809644b6e87b025b | 0 | roles/zarb_host | 5,937 | [
"no_license"
] | [
{
"path": "roles/zarb_host/tasks/main.yml",
"content": "- name: Deploy zarb node user-group\n group: name=\"{{groupId}}\"\n become: true\n\n- name: Deploy zarb node user\n user:\n name: \"{{userId}}\"\n group: \"{{groupId}}\"\n system: yes\n shell: \"/sbin/nologin\"\n comment: \"{{userId}}... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2005,
"all_permissive": false
} |
ansible_role | asnov/FreeTON-Rust-Node | 5cb3f11df7869de63b44a62ca380e6c18d399989 | 0 | ansible/roles/monitoring-server | 5,937 | [
"no_license"
] | [
{
"path": "ansible/roles/monitoring-server/files/grafana/provisioning/dashboards/validator_logs.json",
"content": "{\n \"annotations\": {\n \"list\": [\n {\n \"builtIn\": 1,\n \"datasource\": \"-- Grafana --\",\n \"enable\": true,\n \"hide\": true,\n \"iconColor\"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 18711,
"all_permissive": false
} |
ansible_role | asnov/FreeTON-Rust-Node | 5cb3f11df7869de63b44a62ca380e6c18d399989 | 0 | ansible/roles/nodeexporter | 5,937 | [
"no_license"
] | [
{
"path": "ansible/roles/nodeexporter/vars/main.yml",
"content": "---\nnode_exporter_version: 0.18.1\nnode_exporter_binary_local_dir: \"\"\nnode_exporter_binary_install_dir: \"/usr/local/bin\"\nnode_exporter_web_listen_address: \"0.0.0.0:9100\"\n\nnode_exporter_system_group: \"node-exp\"\nnode_exporter_syst... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 6006,
"all_permissive": false
} |
ansible_role | asnov/FreeTON-Rust-Node | 5cb3f11df7869de63b44a62ca380e6c18d399989 | 0 | ansible/roles/pre-install | 5,937 | [
"no_license"
] | [
{
"path": "ansible/roles/pre-install/tasks/main.yml",
"content": "---\n- name: Remove Scripts dir\n file:\n state: absent\n path: \"{{ item }}/\"\n with_items:\n - \"{{ scripts_dir }}\"\n tags:\n - upgrade\n - reinstall\n\n- name: create rust user group\n group:\n name: rust\n tags:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 773,
"all_permissive": false
} |
ansible_role | asnov/FreeTON-Rust-Node | 5cb3f11df7869de63b44a62ca380e6c18d399989 | 0 | ansible/roles/rustnode | 5,937 | [
"no_license"
] | [
{
"path": "ansible/roles/rustnode/templates/log_cfg.yml.j2",
"content": "# Scan this file for changes every 30 seconds\n# https://docs.rs/log4rs/0.8.3/log4rs/encode/pattern/index.html\nrefresh_rate: 30 seconds\n\nappenders:\n stdout:\n kind: console\n encoder:\n pattern: \"{d(%s.%f)} {l} [{h({t}... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2509,
"all_permissive": false
} |
ansible_role | asnov/FreeTON-Rust-Node | 5cb3f11df7869de63b44a62ca380e6c18d399989 | 0 | ansible/roles/rustvalidator | 5,937 | [
"no_license"
] | [
{
"path": "ansible/roles/rustvalidator/tasks/main.yml",
"content": "---\n# tasks file for rustnode\n#- name: Remove config dir\n# import_tasks: cleanup.yml\n\n- name: Install tonos-cli and all dependencies\n import_tasks: install.yml\n\n- name: Start Rust Node Validator\n import_tasks: start.yml\n",
... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 4765,
"all_permissive": false
} |
ansible_role | JhoniFarias/ansible | f2c96baacf167b1e39e06df50695acb8fe7d39cb | 0 | roles/wordpress | 5,937 | [
"no_license"
] | [
{
"path": "roles/wordpress/tasks/main.yml",
"content": " \n---\n - name: Create dir wordpress\n ansible.builtin.file:\n path: /srv/www\n state: directory\n owner: www-data\n group: www-data\n become: yes\n - name: DownloadWordPress and unpackage\n ansible.bui... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2907,
"all_permissive": false
} |
ansible_role | shokhrukh89/ansible | 9662e27f1134f7eba1d661b61aedbc33d416ab89 | 0 | roles/oleg.nagios-client | 5,937 | [
"no_license"
] | [
{
"path": "roles/oleg.nagios-client/tasks/main.yml",
"content": "---\n# tasks file for roles/oleg.nagios-client\n- name: Install epel-release\n yum:\n name: epel-release\n state: latest\n\n- name: Install Nrpe and plugins\n yum:\n name: \"{{ item }}\"\n state: latest\n loop: [\"nrpe\", \"nagi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 292,
"all_permissive": false
} |
ansible_role | BElluu/Pur | f76301656456149077b6c21c7951a65563010ebe | 0 | roles/apt_without_passwd | 5,937 | [
"no_license"
] | [
{
"path": "roles/apt_without_passwd/tasks/main.yml",
"content": "---\n- name: Add user to sudo\n blockinfile:\n path: '/etc/sudoers.d/{{ user }}'\n line: '{{ item }}'\n mode: '0440'\n create: true\n with_items:\n - '{{ user }} ALL=(ALL) NOPASSWD: /usr/bin/apt'\n - '{{ user }} ALL=(... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 551,
"all_permissive": false
} |
ansible_role | BElluu/Pur | f76301656456149077b6c21c7951a65563010ebe | 0 | roles/flatpak | 5,937 | [
"no_license"
] | [
{
"path": "roles/flatpak/tasks/main.yml",
"content": "---\n- name: Install flatpak in Ubuntu system\n apt:\n name: ['flatpak', 'gnome-software-plugin-flatpak']\n state: present\n when: ansible_facts['os_family']|lower == 'ubuntu'\n\n- name: Add the Flathub repository\n shell: flatpak remote-add --i... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 352,
"all_permissive": false
} |
ansible_role | BElluu/Pur | f76301656456149077b6c21c7951a65563010ebe | 0 | roles/java | 5,937 | [
"no_license"
] | [
{
"path": "roles/java/tasks/main.yml",
"content": "---\n- name: Ensure the apt repository key is present for Oracle JDK 14\n apt_key:\n id: '{{ oracle_java_apt_repository_key }}'\n keyserver: keyserver.ubuntu.com\n state: present\n when: oracle_java_apt_repository_key is defined\n become: true\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1784,
"all_permissive": false
} |
ansible_role | BElluu/Pur | f76301656456149077b6c21c7951a65563010ebe | 0 | roles/packages | 5,937 | [
"no_license"
] | [
{
"path": "roles/packages/tasks/main.yml",
"content": "---\n- name: i386 architecture is enabled (for wine)\n shell: sudo dpkg --add-architecture i386\n\n- name: Repositories cache is up to date\n package:\n name: '*'\n update_cache: true\n cache_valid_time: 3600\n become: true\n\n- name: Unwant... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 669,
"all_permissive": false
} |
ansible_role | BElluu/Pur | f76301656456149077b6c21c7951a65563010ebe | 0 | roles/pip | 5,937 | [
"no_license"
] | [
{
"path": "roles/pip/tasks/main.yml",
"content": "---\n- name: Ensure Pip is installed.\n package:\n name: python3-pip\n state: present\n\n- name: Ensure setuptools are installed.\n pip:\n executable: pip3\n name: setuptools\n become: true\n",
"license_type": "no_license",
"detected_l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 195,
"all_permissive": false
} |
ansible_role | BElluu/Pur | f76301656456149077b6c21c7951a65563010ebe | 0 | roles/tor | 5,937 | [
"no_license"
] | [
{
"path": "roles/tor/tasks/main.yml",
"content": "---\n- name: TOR is installed\n package:\n name: ['tor', 'tor-geoipdb', 'torsocks']\n become: true\n\n- name: TOR is enabled\n service:\n name: tor\n enabled: true\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 167,
"all_permissive": false
} |
ansible_role | OpenDataEnterprise/impact-map | ca94f6fdc722d2c784f551007b6c397f70b38d7d | 5 | vm/ansible/roles/common | 5,937 | [
"no_license"
] | [
{
"path": "vm/ansible/roles/common/tasks/main.yml",
"content": "---\n- name: Workaround for apt-transport-https when running apt update.\n file:\n force: \"yes\"\n src: \"/usr/lib/apt/methods/http\"\n dest: \"/usr/lib/apt/methods/https\"\n owner: \"root\"\n group: \"root\"\n state: \"link... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 522,
"all_permissive": false
} |
ansible_role | OpenDataEnterprise/impact-map | ca94f6fdc722d2c784f551007b6c397f70b38d7d | 5 | vm/ansible/roles/nginx | 5,937 | [
"no_license"
] | [
{
"path": "vm/ansible/roles/nginx/templates/web.j2",
"content": "server {\n listen 80;\n listen [::]:80;\n\n root /srv/impact-map;\n\n index index.html index.htm index.php;\n\n server_name localhost;\n\n location / {\n # First attempt to serve request as file, then\n # as directory, then as a PH... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1108,
"all_permissive": false
} |
ansible_role | OpenDataEnterprise/impact-map | ca94f6fdc722d2c784f551007b6c397f70b38d7d | 5 | vm/ansible/roles/yarn | 5,937 | [
"no_license"
] | [
{
"path": "vm/ansible/roles/yarn/tasks/main.yml",
"content": "---\n- name: Add Yarn repository GPG key.\n apt_key: url=https://dl.yarnpkg.com/debian/pubkey.gpg\n\n- name: Add Yarn repository.\n apt_repository:\n repo: \"deb https://dl.yarnpkg.com/debian/ stable main\"\n state: present\n\n- name: Ins... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 544,
"all_permissive": false
} |
ansible_role | NashTech-Labs/filebeat_ansible_role_dcos | 341549dbe442497b6dde9b0171c5906a2e660a90 | 0 | roles/filebeat | 5,937 | [
"no_license"
] | [
{
"path": "roles/filebeat/tasks/main.yml",
"content": "---\n\n- name: Creating a dcos log directory\n file:\n path: \"{{ item }}\"\n state: directory\n with_items:\n - /var/log/dcos/\n when: \"'master' in group_names\"\n\n- import_tasks: master.yml\n when: \"'master' in group_names\"\n tags: s... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 753,
"all_permissive": false
} |
ansible_role | dbkegley/ansibleVaultBlog | 080e22125b0f615ec53d89d13faa36105ec4eea7 | 2 | roles/example | 5,937 | [
"no_license"
] | [
{
"path": "roles/example/tasks/main.yml",
"content": "- name: ec2 key\n include: key.yml\n tags:\n - key\n\n- name: Launch ec2\n include: ec2.yml\n tags:\n - ec2\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 110
},
{
"path": "roles/example/tasks/key.y... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2983,
"all_permissive": false
} |
ansible_role | shendeam/ansible_docker_installation | 9c3aee8b50c78a9510c37c58976ffa28fd6d2a6e | 0 | roles/deploy | 5,937 | [
"no_license"
] | [
{
"path": "roles/deploy/tasks/main.yml",
"content": "---\n\n- name: stop container\n shell: docker stop {{ container_name }}\n ignore_errors: True\n\n\n- name: remove container\n shell: docker rm {{ container_name }}\n ignore_errors: True\n\n\n\n#- name: romove image\n# shell: docker rmi {{ registry_ur... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 871,
"all_permissive": false
} |
ansible_role | Dosanov2002/nfs | c1df897583a35a9ac0c3dd5a756fedc93b8b8ba6 | 1 | inventories/roles/nfs_client | 5,937 | [
"no_license"
] | [
{
"path": "inventories/roles/nfs_client/tasks/main.yml",
"content": "- name: Install NFS client packages\n apt:\n name: nfs-common\n state: present\n update_cache: yes\n\n- name: Create mount point\n file:\n path: /mnt/nfs_share\n state: directory\n\n- name: Mount NFS share\n mount:\n p... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 333,
"all_permissive": false
} |
ansible_role | Dosanov2002/nfs | c1df897583a35a9ac0c3dd5a756fedc93b8b8ba6 | 1 | roles/nfs_server | 5,937 | [
"no_license"
] | [
{
"path": "roles/nfs_server/tasks/main.yml",
"content": "- name: Install NFS server packages\n apt:\n name: nfs-kernel-server\n state: present\n update_cache: yes\n\n- name: Create mount directory\n file:\n path: /data/nfs_share\n state: directory\n\n- name: Format unpartitioned disk as XFS... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 775,
"all_permissive": false
} |
ansible_role | ialdoshin/nginx | 79e66321e894f6eda3c681248d541a2bea462560 | 0 | ansible/roles/amiable | 5,937 | [
"no_license"
] | [
{
"path": "ansible/roles/amiable/tasks/main.yaml",
"content": "- name: Copy Nginx configuration file\n template:\n src: nginx.conf.j2\n dest: /etc/nginx/nginx.conf\n notify:\n - Reload Nginx\n\n- name: Copy HTML page\n copy:\n src: index.html\n dest: /var/www/html/index.html\n",
"licen... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 221,
"all_permissive": false
} |
ansible_role | lima-emanuel/curso-ansible | 05ac052416333fd0fe20309fbdd3fa6520a43dde | 0 | roles/curso | 5,937 | [
"no_license"
] | [
{
"path": "roles/curso/tasks/main.yml",
"content": "---\n# tasks file for roles/curso\n- name: Deploy index.html\n template:\n src: templates/index.html\n dest: /var/www/html/index.html\n vars:\n sistema: SISTEMA!\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_byte... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 167,
"all_permissive": false
} |
ansible_role | mekanix/jail-opigno | 8b9006f9fe23c8adb3fc61922cf30c60095b076b | 0 | ansible/roles/opigno | 5,937 | [
"no_license"
] | [
{
"path": "ansible/roles/opigno/tasks/main.yml",
"content": "---\n- name: install opigno packages\n with_items: \"{{ opigno_packages }}\"\n package:\n name: \"{{ item.name }}\"\n notify:\n - restart php fpm\n\n- name: create www root directory\n file:\n path: /usr/local/www/opigno\n owner: w... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2224,
"all_permissive": false
} |
ansible_role | SkylarScaling/63269-argo-hub | 5d070d5b2c0eb16b5e86a614035fb36bf19a2704 | 0 | automation/roles/install_openshift_gitops | 5,937 | [
"permissive"
] | [
{
"path": "automation/roles/install_openshift_gitops/tasks/main.yaml",
"content": "---\n- include_role:\n name: admin_oc_login\n\n- name: Create GitOps Namespace\n kubernetes.core.k8s:\n host: \"https://api.{{ cluster_address }}:{{ k8s_port }}\"\n state: \"{{ state }}\"\n definition:\n api... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2663,
"all_permissive": true
} |
ansible_role | llh1/cyf-ansible | 7a472e8ce0b6a25a41069919f55f5e8d8c74283e | 1 | roles/cyf | 5,937 | [
"no_license"
] | [
{
"path": "roles/cyf/tasks/mongodb.yml",
"content": "- name: install MongoDB\n apt:\n name: mongodb\n state: present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 68
},
{
"path": "roles/cyf/tasks/git.yml",
"content": "- name: add git-core repository\... | {
"task_files": 10,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 11,
"total_bytes": 3656,
"all_permissive": false
} |
ansible_role | sydon7/obmp-utils | b56c2024e9240596dc02fb4f6d2d87aa93d7f634 | 0 | roles/docker | 5,937 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "\n- name: install pre-reqs\n apt:\n state: present\n name: ['apt-transport-https','ca-certificates','curl','software-properties-common','gnupg','lsb-release']\n when: ansible_distribution == \"Ubuntu\"\n\n- name: Add Docker GPG apt Key\n apt_key:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1730,
"all_permissive": false
} |
ansible_role | sydon7/obmp-utils | b56c2024e9240596dc02fb4f6d2d87aa93d7f634 | 0 | roles/openbmp | 5,937 | [
"no_license"
] | [
{
"path": "roles/openbmp/tasks/main.yml",
"content": " - name: setup working directory\n ansible.builtin.file:\n path: \"{{ code_dir }}\"\n state: directory\n\n\n - name: backup existing docker-compose.yml if there is a file there\n ansible.builtin.copy:\n src: \"{{ co... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2040,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/disable-cron-mail | 5,937 | [
"no_license"
] | [
{
"path": "roles/disable-cron-mail/tasks/main.yml",
"content": "- include: disable-cron-mail.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 33
},
{
"path": "roles/disable-cron-mail/tasks/disable-cron-mail.yml",
"content": "- name: 'Check {{ ROOT_CRON }}'... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 943,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/disable-selinux | 5,937 | [
"no_license"
] | [
{
"path": "roles/disable-selinux/tasks/disable-selinux.yml",
"content": "- name: 'Disable SELinux - getenforce'\n tags: 'disable-selinux'\n shell:\n cmd: 'getenforce'\n register: task_output\n\n- name: 'Disable SELinux - setenforce'\n tags: 'disable-selinux'\n shell:\n cmd: 'setenforce 0'\n when... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 481,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/enable-root | 5,937 | [
"no_license"
] | [
{
"path": "roles/enable-root/tasks/ansible-key.yml",
"content": "- name: 'Copy Ansible root SSH Public Key to Host'\n tags: 'ansible-key'\n authorized_key:\n comment: 'Ansible'\n user: root\n key: \"{{ lookup('file', '../files/ansible-key.pub') }}\"\n state: present\n",
"license_type": "no... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1305,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/install-pkgs-co7 | 5,937 | [
"no_license"
] | [
{
"path": "roles/install-pkgs-co7/tasks/change-repo.yml",
"content": "- name: 'Change YUM Base Repo for CentOS 7'\n tags: 'change-repo-co7'\n copy:\n src: 'CentOS-Base.repo.co7'\n dest: '/etc/yum.repos.d/CentOS-Base.repo'\n backup: yes\n mode: 0644\n owner: root\n group: root\n when: an... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1236,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/install-pkgs-debian11 | 5,937 | [
"no_license"
] | [
{
"path": "roles/install-pkgs-debian11/tasks/install-pkgs.yml",
"content": "- name: 'Install Packages for Debian 11'\n tags: 'install-pkgs-debian11'\n apt:\n name: \"{{ PKGS }}\"\n state: present\n update_cache: yes\n register: task_output\n when: ansible_distribution == 'Debian' and \n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 993,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/install-pkgs-u2004 | 5,937 | [
"no_license"
] | [
{
"path": "roles/install-pkgs-u2004/tasks/install-pkgs.yml",
"content": "- name: 'Install Packages for Ubuntu 20.04'\n tags: 'install-pkgs-ubuntu-20.04'\n apt:\n name: \"{{ PKGS }}\"\n state: present\n update_cache: yes\n register: task_output\n when: ansible_distribution == 'Ubuntu' and \n ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 884,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/mute-bell | 5,937 | [
"no_license"
] | [
{
"path": "roles/mute-bell/tasks/main.yml",
"content": "- include: mute-bell.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 25
},
{
"path": "roles/mute-bell/tasks/mute-bell.yml",
"content": "- name: 'Set Do Not Bell on Tab-Completion'\n tags: 'mute-bell... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 216,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/opt-limits | 5,937 | [
"no_license"
] | [
{
"path": "roles/opt-limits/tasks/main.yml",
"content": "- include: opt-limits.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 26
},
{
"path": "roles/opt-limits/tasks/opt-limits.yml",
"content": "- name: 'Optimize System Limits Config File'\n tags: 'opt-... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 652,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/opt-sysctl | 5,937 | [
"no_license"
] | [
{
"path": "roles/opt-sysctl/tasks/opt-sysctl.yml",
"content": "- name: 'opt-sysctl'\n tags: 'opt-sysctl'\n template:\n src: 'moss-opt-sysctl.conf.template'\n dest: '/etc/sysctl.d/moss-opt-sysctl.conf'\n mode: 0644\n notify:\n - 'Apply sysctl'\n",
"license_type": "no_license",
"detecte... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 214,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/remove-cloud-init | 5,937 | [
"no_license"
] | [
{
"path": "roles/remove-cloud-init/tasks/main.yml",
"content": "- include: remove-cloud-init.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 33
},
{
"path": "roles/remove-cloud-init/tasks/remove-cloud-init.yml",
"content": "- name: 'Remove cloud-init Serv... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 445,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/remove-snapd | 5,937 | [
"no_license"
] | [
{
"path": "roles/remove-snapd/tasks/remove-snapd.yml",
"content": "- name: 'Remove snaps'\n tags: 'remove-snapd'\n shell:\n cmd: \"{{ item }}\"\n with_items:\n - 'snap remove --purge lxd'\n - 'snap remove --purge core18'\n - 'snap remove --purge snapd'\n register: task_output\n ignore_error... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 615,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/set-bashrc | 5,937 | [
"no_license"
] | [
{
"path": "roles/set-bashrc/tasks/main.yml",
"content": "- include: set-bashrc.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 26
},
{
"path": "roles/set-bashrc/vars/main.yml",
"content": "BASHRC: \"{{ '/etc/bash.bashrc' if ansible_distribution == 'Ubuntu... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1004,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/set-bbr | 5,937 | [
"no_license"
] | [
{
"path": "roles/set-bbr/tasks/set-bbr.yml",
"content": "- name: 'Set BBR: {{ BBR }}'\n tags: 'set-bbr'\n template:\n src: '10-moss-bbr.conf.template'\n dest: '/etc/sysctl.d/10-moss-bbr.conf'\n mode: 0644\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 154
}... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 177,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/set-hostname | 5,937 | [
"no_license"
] | [
{
"path": "roles/set-hostname/tasks/set-hostname.yml",
"content": "- name: 'Set Hostname'\n tags: 'set-hostname'\n hostname:\n name: \"{{ HOSTNAME }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 85
},
{
"path": "roles/set-hostname/tasks/main.yml",
"... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 113,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/set-ipv6 | 5,937 | [
"no_license"
] | [
{
"path": "roles/set-ipv6/handlers/main.yml",
"content": "- name: 'Apply sysctl'\n shell:\n cmd: 'sysctl --system'\n ignore_errors: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 80
},
{
"path": "roles/set-ipv6/tasks/main.yml",
"content": "- include... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 294,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/set-ntp | 5,937 | [
"no_license"
] | [
{
"path": "roles/set-ntp/tasks/main.yml",
"content": "- include: set-ntp.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 23
},
{
"path": "roles/set-ntp/tasks/set-ntp.yml",
"content": "- name: 'Install NTP Package'\n tags: 'set-ntp'\n package:\n name:... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 777,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/set-profile | 5,937 | [
"no_license"
] | [
{
"path": "roles/set-profile/tasks/set-profile.yml",
"content": "- name: 'Set Profile'\n tags: 'set-profile'\n template:\n src: \"{{ item.src }}\"\n dest: \"{{ item.dest }}\"\n mode: 0644\n with_items:\n - { 'src':'history.sh.template', 'dest':'/etc/profile.d/history.sh' }\n - { 'src':'pat... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 380,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/set-timesyncd | 5,937 | [
"no_license"
] | [
{
"path": "roles/set-timesyncd/tasks/main.yml",
"content": "- include: set-timesyncd.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 29
},
{
"path": "roles/set-timesyncd/handlers/main.yml",
"content": "- name: 'Restart timesyncd Service'\n service:\n ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 509,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/set-timezone | 5,937 | [
"no_license"
] | [
{
"path": "roles/set-timezone/tasks/main.yml",
"content": "- include: set-timezone.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 28
},
{
"path": "roles/set-timezone/tasks/set-timezone.yml",
"content": "- name: 'Set Timezone to {{ TIMEZONE }}'\n tags: '... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 259,
"all_permissive": false
} |
ansible_role | leonanu/moss-ng | cd90101e95a3ffb1e3bd0bf6c1afe5d315c0c963 | 0 | roles/set-vimrc | 5,937 | [
"no_license"
] | [
{
"path": "roles/set-vimrc/tasks/main.yml",
"content": "- include: set-vimrc.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 25
},
{
"path": "roles/set-vimrc/tasks/set-vimrc.yml",
"content": "- name: 'Get {{ VIMRC }} Content'\n tags: 'set-vimrc'\n shell... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 797,
"all_permissive": false
} |
ansible_role | nbr23/bistrobot-ansible | 6ef679ac81a493cf63acb93c3178a95ed40bfa9b | 0 | roles/bistrobot | 5,917 | [
"no_license"
] | [
{
"path": "roles/bistrobot/tasks/main.yml",
"content": "---\n- name: Install python3-pip\n package:\n name: python3-pip\n become: true\n\n- name: Install bistrobot from git repo\n pip:\n name: git+https://github.com/nbr23/bistrobot.git\n\n- name: Add ansible_user to gpio group\n ansible.builtin.us... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 342,
"all_permissive": false
} |
ansible_role | Tkrishnaveni/ansible_prac | 389077767faec7da73127f6633ec187e418592b6 | 0 | nginx_role/roles/nginx | 5,917 | [
"no_license"
] | [
{
"path": "nginx_role/roles/nginx/vars/main.yml",
"content": "pack1: nginx",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 12
},
{
"path": "nginx_role/roles/nginx/tasks/main.yml",
"content": "- name: install {{ pack1}}\n ansible.builtin.dnf:\n name: \"{{ pac... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 106,
"all_permissive": false
} |
ansible_role | arunkumar261/roboshop-ansible-roles-dev | 89f45038b1e84d386a2d0f1d2bf7d2ac6563f5cd | 0 | roles/cart | 5,917 | [
"no_license"
] | [
{
"path": "roles/cart/tasks/main.yaml",
"content": "- name: App setup \n ansible.builtin.import_role:\n name: common\n task_from: app-setup\n\n- name: Nodejs setup \n ansible.builtin.import_role:\n name: common\n task_from: nodejs-setup\n\n- name: system restart setup \n ansible.builtin.impor... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 300,
"all_permissive": false
} |
ansible_role | arunkumar261/roboshop-ansible-roles-dev | 89f45038b1e84d386a2d0f1d2bf7d2ac6563f5cd | 0 | roles/common | 5,917 | [
"no_license"
] | [
{
"path": "roles/common/tasks/nodejs-setup.yaml",
"content": "- name: Disabling old nodejs package\n ansible.builtin.shell: |\n dnf module disable nodejs -y\n dnf module enable nodejs:18 -y\n\n- name: Installing nodejs:18 package\n ansible.builtin.package:\n name: nodejs\n state: present\n \n... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3012,
"all_permissive": false
} |
ansible_role | arunkumar261/roboshop-ansible-roles-dev | 89f45038b1e84d386a2d0f1d2bf7d2ac6563f5cd | 0 | roles/dispatch | 5,917 | [
"no_license"
] | [
{
"path": "roles/dispatch/tasks/main.yaml",
"content": "- name: App setup \n ansible.builtin.import_role:\n name: common\n task_from: app-setup\n\n- name: GO-LANG setup \n ansible.builtin.import_role:\n name: common\n task_from: golang-setup.yaml\n\n- name: system restart setup \n ansible.bui... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 306,
"all_permissive": false
} |
ansible_role | arunkumar261/roboshop-ansible-roles-dev | 89f45038b1e84d386a2d0f1d2bf7d2ac6563f5cd | 0 | roles/payment | 5,917 | [
"no_license"
] | [
{
"path": "roles/payment/tasks/main.yaml",
"content": "- name: App setup \n ansible.builtin.import_role:\n name: common\n task_from: app-setup\n\n- name: Python setup \n ansible.builtin.import_role:\n name: common\n task_from: python-setup\n\n- name: system restart setup \n ansible.builtin.im... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 300,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.