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 | devopswise/dwtools | 64b05f2168aa82b52cd1ba4f216089b7d5e9cdda | 2 | roles/openldap | 322 | [
"no_license"
] | [
{
"path": "roles/openldap/templates/docker-compose.yml.j2",
"content": "version: '2'\nservices:\n ldap:\n image: \"{{ openldap_registry_url }}{{ openldap_image_name }}:{{ openldap_version }}\"\n restart: always\n expose:\n - \"389\"\n ports:\n - \"389:389/tcp\"\n environment:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 5058,
"all_permissive": false
} |
ansible_role | devopswise/dwtools | 64b05f2168aa82b52cd1ba4f216089b7d5e9cdda | 2 | roles/smtp_relay | 322 | [
"no_license"
] | [
{
"path": "roles/smtp_relay/templates/docker-compose.yml.j2",
"content": "version: '2'\nservices:\n smtp:\n image: \"{{ registry_url }}namshi/smtp:{{ smtp_relay_version }}\"\n environment:\n GMAIL_USER: \"{{ smtp_relay_gmail_user }}\"\n GMAIL_PASSWORD: \"{{ smtp_relay_gmail_pass }}\"\n p... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1303,
"all_permissive": false
} |
ansible_role | devopswise/dwtools | 64b05f2168aa82b52cd1ba4f216089b7d5e9cdda | 2 | roles/squid | 322 | [
"no_license"
] | [
{
"path": "roles/squid/templates/docker-compose.yml.j2",
"content": "version: '2'\nservices:\n web_proxy:\n image: \"{{ registry_url }}sameersbn/squid:{{ squid_version }}\"\n restart: always\n volumes:\n - \"{{ docker_volumes }}/{{ squid_service_name }}/squid.conf:/etc/squid3/squid3.conf\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1579,
"all_permissive": false
} |
ansible_role | devopswise/dwtools | 64b05f2168aa82b52cd1ba4f216089b7d5e9cdda | 2 | roles/traefik | 322 | [
"no_license"
] | [
{
"path": "roles/traefik/templates/docker-compose.yml.j2",
"content": "version: '2'\nservices:\n traefik:\n image: \"{{ registry_url }}traefik:{{ traefik_version }}\"\n command: '-c /traefik.toml --docker --logLevel=DEBUG'\n restart: always\n privileged: true\n volumes:\n - '/var/run/do... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3482,
"all_permissive": false
} |
ansible_role | devopswise/dwtools | 64b05f2168aa82b52cd1ba4f216089b7d5e9cdda | 2 | roles/wordpress | 322 | [
"no_license"
] | [
{
"path": "roles/wordpress/templates/docker-compose.yml.j2",
"content": "version: '2'\nservices:\n homepage:\n image: \"{{ wordpress_registry_url }}{{ wordpress_image_name }}:{{ wordpress_version }}\"\n restart: always\n environment:\n http_proxy: \"{{ http_proxy }}\"\n https_proxy: \"{{... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3790,
"all_permissive": false
} |
ansible_role | Veuge/ansible-laravel | 391ca952a42fcfd7b6292e3c7f8301ec85a5003b | 0 | roles/composer-laravel | 322 | [
"no_license"
] | [
{
"path": "roles/composer-laravel/tasks/main.yml",
"content": "---\n - name: Download composer installer\n get_url:\n url: https://getcomposer.org/installer\n dest: composer-setup.php\n mode: 0755\n\n - name: Execute installer\n command:\n \"php composer-s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 548,
"all_permissive": false
} |
ansible_role | Veuge/ansible-laravel | 391ca952a42fcfd7b6292e3c7f8301ec85a5003b | 0 | roles/deploy | 322 | [
"no_license"
] | [
{
"path": "roles/deploy/tasks/main.yml",
"content": "---\n - name: Clone laravel project\n git:\n clone: yes\n repo: https://github.com/Veuge/somerepo.git\n dest: /var/www/html\n register: cloned\n notify:\n - Apache config file\n\n - name: Change gro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 589,
"all_permissive": false
} |
ansible_role | Veuge/ansible-laravel | 391ca952a42fcfd7b6292e3c7f8301ec85a5003b | 0 | roles/init | 322 | [
"no_license"
] | [
{
"path": "roles/init/tasks/main.yml",
"content": "---\n - name: Add dotdeb repository\n apt_repository:\n repo: deb http://packages.dotdeb.org jessie all\n state: present\n\n - name: Add dotdeb src repository\n apt_repository:\n repo: deb-src http://packages.dotde... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 720,
"all_permissive": false
} |
ansible_role | Veuge/ansible-laravel | 391ca952a42fcfd7b6292e3c7f8301ec85a5003b | 0 | roles/php7-apache2 | 322 | [
"no_license"
] | [
{
"path": "roles/php7-apache2/tasks/main.yml",
"content": "---\n - name: Install apache2 and php7\n apt:\n name: \"{{ item }}\"\n install_recommends: yes\n state: present\n with_items:\n - apache2\n - libapache2-mod-php7.0\n - php-pear\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1094,
"all_permissive": false
} |
ansible_role | zeus911/Jumpserver_automation | af363198bc498ce5279bbdecec6a71cdc5238b1c | 0 | roles/jumpserver-agent | 322 | [
"no_license"
] | [
{
"path": "roles/jumpserver-agent/tasks/main.yml",
"content": "---\n# file: main.yml\n\n- include: ensure_python26.yml\n- include: install_ldapclient.yml\n- include: sudo_by_ldap_agent.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 121
},
{
"path": "roles/ju... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 2508,
"all_permissive": false
} |
ansible_role | zeus911/Jumpserver_automation | af363198bc498ce5279bbdecec6a71cdc5238b1c | 0 | roles/jumpserver-master | 322 | [
"no_license"
] | [
{
"path": "roles/jumpserver-master/files/nodejs_install.sh",
"content": "#!/bin/bash\n# Function : install latest Nodejs\n# CTime : 2015.01.27\n# Author : Jason.Yu\n\ncd $1\n./configure --prefix=$2/node/\nmake\nmake install\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes":... | {
"task_files": 9,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 25,
"total_bytes": 16033,
"all_permissive": false
} |
ansible_role | wguilherme/platform | 26956d5b91384a63b36430c77fb5ef2f4717a91d | 0 | homelab-v5/ansible/roles/k3s | 322 | [
"no_license"
] | [
{
"path": "homelab-v5/ansible/roles/k3s/tasks/install-server.yml",
"content": "---\n- name: Check if K3s is already installed\n stat:\n path: /usr/local/bin/k3s\n register: k3s_binary\n\n- name: Build K3s install command\n set_fact:\n k3s_install_cmd: >-\n curl -sfL https://get.k3s.io | \n ... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 7646,
"all_permissive": false
} |
ansible_role | wguilherme/platform | 26956d5b91384a63b36430c77fb5ef2f4717a91d | 0 | homelab-v5/ansible/roles/nginx-ingress | 322 | [
"no_license"
] | [
{
"path": "homelab-v5/ansible/roles/nginx-ingress/templates/helm-values.yaml.j2",
"content": "controller:\n replicaCount: {{ nginx_ingress_controller_replicas }}\n \n service:\n type: {{ nginx_ingress_service_type }}\n{% if nginx_ingress_service_type == \"NodePort\" %}\n nodePorts:\n http: {{ ... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 6177,
"all_permissive": false
} |
ansible_role | kuzilnx/automation | 6db9bb2c562fc016fb5f1edb497a7d7dc82451e6 | 0 | nfs_dns_web/roles/dns | 317 | [
"no_license"
] | [
{
"path": "nfs_dns_web/roles/dns/tasks/main.yml",
"content": "---\n# tasks file for dns\n\n- name: Disable SELinux\n selinux: state=disabled\n\n- name: Installing DNS software\n yum:\n name: \"{{ item }}\"\n state: present\n loop: \"{{ packages }}\"\n\n- name: Configuring DNS to listen on interface... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2044,
"all_permissive": false
} |
ansible_role | kuzilnx/automation | 6db9bb2c562fc016fb5f1edb497a7d7dc82451e6 | 0 | nfs_dns_web/roles/nfs | 317 | [
"no_license"
] | [
{
"path": "nfs_dns_web/roles/nfs/tasks/main.yml",
"content": "---\n# tasks file for nfs\n- name: disable SELinux\n selinux: state=disabled\n\n- name: installing needed software\n yum: \n name: \"{{ item }}\"\n state: present\n loop: \"{{ tools }}\"\n\n- name: making paritions of lvm for pv \n par... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1588,
"all_permissive": false
} |
ansible_role | kuzilnx/automation | 6db9bb2c562fc016fb5f1edb497a7d7dc82451e6 | 0 | nfs_dns_web/roles/web | 317 | [
"no_license"
] | [
{
"path": "nfs_dns_web/roles/web/templates/flask.wsgi.j2",
"content": "#!/usr/bin/python3\n\nimport sys\nimport logging\n\nlogging.basicConfig(stream=sys.stderr)\nsys.path.append(\"/var/www/html/flask/\")\n\nfrom app import app as application",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2220,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/deploy/roles/backend | 317 | [
"no_license"
] | [
{
"path": "playbook/deploy/roles/backend/tasks/main.yml",
"content": "- name: Stop and remove existing Django container\n community.docker.docker_container:\n name: couchpydemo\n state: absent\n force_kill: yes\n- name: Remove existing docker image\n community.docker.docker_image:\n name: couc... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 882,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/deploy/roles/clusters | 317 | [
"no_license"
] | [
{
"path": "playbook/deploy/roles/clusters/tasks/main.yml",
"content": "- name: Add nodes to CouchDB cluster\n uri:\n url: http://{{master_node}}:5984/_cluster_setup\n method: POST\n user: \"{{ db_user }}\"\n password: \"{{ <PASSWORD> }}\"\n force_basic_auth: yes\n status_code: 200, 201\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2050,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/deploy/roles/db | 317 | [
"no_license"
] | [
{
"path": "playbook/deploy/roles/db/tasks/main.yml",
"content": "- name: Create Docker volume for CouchDB data\n docker_volume:\n name: couchdb-data\n\n- name: Stop and remove existing CouchDB container\n docker_container:\n name: couchdb\n state: absent\n force_kill: yes\n\n- name: Deploy Cou... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 717,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/deploy/roles/frontend | 317 | [
"no_license"
] | [
{
"path": "playbook/deploy/roles/frontend/tasks/main.yml",
"content": "- name: Stop and remove existing React app container\n community.docker.docker_container:\n name: react-app\n state: absent\n force_kill: yes\n\n- name: Remove existing React app image\n community.docker.docker_image:\n nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 850,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/deploy/roles/gittasks | 317 | [
"no_license"
] | [
{
"path": "playbook/deploy/roles/gittasks/tasks/main.yml",
"content": "- name: Check if frontend repository exists\n stat:\n path: \"{{ root_path }}{{ react_path }}\"\n register: frontend_status\n- name: Update basic-react-app\n git:\n repo: \"{{frondend_repo}}\"\n dest: \"{{ root_path }}{{ reac... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1663,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/deploy/roles/mastodon_au | 317 | [
"no_license"
] | [
{
"path": "playbook/deploy/roles/mastodon_au/tasks/main.yml",
"content": "- name: Stop and remove existing Mastodon AU harvester\n community.docker.docker_container:\n name: mas-au\n state: absent\n force_kill: yes\n\n- name: Remove existing Mastodon AU harvester image\n community.docker.docker_i... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 854,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/deploy/roles/nginx | 317 | [
"no_license"
] | [
{
"path": "playbook/deploy/roles/nginx/tasks/main.yml",
"content": "- name: Pull nginx image\n community.docker.docker_image:\n name: nginx:latest\n source: pull\n\n- name: Copy nginx.conf file\n template:\n src: /Users/lewisan/Desktop/COMP90024/A2/awesome-backend/playbook/deploy/nginx.conf.j2\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 584,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/scale/roles/cluster | 317 | [
"no_license"
] | [
{
"path": "playbook/scale/roles/cluster/tasks/main.yml",
"content": "- name: Remove a swarm manager\n community.docker.docker_swarm:\n state: absent\n force: true\n\n- name: Ensure Docker Swarm is initialized\n community.docker.docker_swarm:\n state: present\n advertise_addr: \"{{ swarm_manage... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1250,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/scale/roles/gittasks | 317 | [
"no_license"
] | [
{
"path": "playbook/scale/roles/gittasks/tasks/main.yml",
"content": "- name: Check if awesome-spider repository exists\n stat:\n path: \"{{ root_path }}{{ spiders_path }}\"\n register: spiders_status\n\n- name: Update awesome-spider repo\n git:\n repo: \"{{spiders_repo}}\"\n dest: \"{{ root_pat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 523,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/scale/roles/mastodon_nyc | 317 | [
"no_license"
] | [
{
"path": "playbook/scale/roles/mastodon_nyc/tasks/main.yml",
"content": "- name: Stop and remove existing Mastodon NYC harvester\n community.docker.docker_container:\n name: mas-nyc\n state: absent\n force_kill: yes\n\n- name: Remove existing Mastodon NYC harvester image\n community.docker.docke... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 864,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/scale/roles/mastodon_uk | 317 | [
"no_license"
] | [
{
"path": "playbook/scale/roles/mastodon_uk/tasks/main.yml",
"content": "- name: Stop and remove existing Mastodon UK harvester\n community.docker.docker_container:\n name: mas-uk\n state: absent\n force_kill: yes\n\n- name: Remove existing Mastodon UK harvester image\n community.docker.docker_im... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 855,
"all_permissive": false
} |
ansible_role | comp90024-group70/awesome-backend | a56a4e1280bd7ad08e44ad845e60cbca20d849b1 | 0 | playbook/scale/roles/pretasks | 317 | [
"no_license"
] | [
{
"path": "playbook/scale/roles/pretasks/tasks/main.yml",
"content": "- name: Update apt cache\n apt:\n update_cache: yes\n\n- name: Install necessary software\n apt:\n name:\n - git\n - docker.io\n - nodejs\n - pip\n state: present\n\n- name: Install docker package\n pip:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 571,
"all_permissive": false
} |
ansible_role | Sviatka322/wordpress-ansible | 397d84a5adf94874db6e4cfea37d2e1184f2d9b6 | 0 | roles/apache | 317 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/main.yaml",
"content": "- name: Install apache service\n apt:\n name: apache2\n update_cache: yes\n state: latest\n\n- name: Install apache-utils\n apt:\n name: apache2-utils\n update_cache: yes\n state: latest\n\n- name: Start httpd service\n systemd:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 390,
"all_permissive": false
} |
ansible_role | Sviatka322/wordpress-ansible | 397d84a5adf94874db6e4cfea37d2e1184f2d9b6 | 0 | roles/mariadb | 317 | [
"no_license"
] | [
{
"path": "roles/mariadb/tasks/main.yaml",
"content": "- name: Install mariadb-server service\n apt:\n name: mariadb-server\n update_cache: yes\n state: latest\n\n- name: Install mariadb-client service\n apt:\n name: mariadb-client\n update_cache: yes\n state: latest\n\n- name: Change ro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1403,
"all_permissive": false
} |
ansible_role | Sviatka322/wordpress-ansible | 397d84a5adf94874db6e4cfea37d2e1184f2d9b6 | 0 | roles/php | 317 | [
"no_license"
] | [
{
"path": "roles/php/tasks/main.yaml",
"content": "- name: Install php modules\n apt:\n name: \"{{ item }}\"\n update_cache: yes\n state: latest\n loop: \"{{ php_modules }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 126
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 126,
"all_permissive": false
} |
ansible_role | Sviatka322/wordpress-ansible | 397d84a5adf94874db6e4cfea37d2e1184f2d9b6 | 0 | roles/wordpress | 317 | [
"no_license"
] | [
{
"path": "roles/wordpress/tasks/main.yaml",
"content": "- name: Download wordpress\n unarchive:\n src: https://wordpress.org/latest.tar.gz\n dest: \"/var/www/html/\"\n remote_src: yes\n\n- name: Recursively change ownership of a /var/www/html/wordpres dir\n ansible.builtin.file:\n path: /var/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 349,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-backup | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-backup/tasks/cumulus.yml",
"content": "---\n- name: Download FRR running config\n command: sudo vtysh -c 'show run'\n register: backup\n\n- name: Save to local file\n local_action: \n module: copy\n content: \"{{backup.stdout}}\"\n dest: \"configs/{{ansible_network_os}}/{{in... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 823,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-bgp-isl | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-bgp-isl/tasks/nxos.yml",
"content": "---\n- name: Configure Numbered ISL Ports (NXOS)\n connection: network_cli\n cli_config:\n config: |\n int {{ item }}\n no switchport\n no shut\n mtu 9216\n ip address {{ ebgp_cfg[ansible_network_os][inventory_ho... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1488,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-dcedge-bgp | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-dcedge-bgp/tasks/main.yml",
"content": "---\n- name: Configure DC Edge\n include_tasks: \"{{ ansible_network_os }}.yml\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 78
},
{
"path": "roles/cfg-dcedge-bgp/tasks/cumulus.yml",
"content":... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1786,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-dual-attach-servers | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-dual-attach-servers/templates/netplan.j2",
"content": "network:\n version: 2\n renderer: networkd\n ethernets:\n eth1:\n dhcp4: no\n eth2:\n dhcp4: no\n bonds:\n bond0:\n dhcp4: false\n interfaces:\n - eth1\n - eth2\n addresses: [ {{ s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1735,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-ebgp-underlay | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-ebgp-underlay/tasks/cumulus.yml",
"content": "---\n- name: Configure Unnumbered BGP underlay (Cumulus)\n become: yes\n blockinfile:\n path: /etc/frr/frr.conf\n create: yes\n block: |\n router bgp {{ bgp_asn }}\n no bgp default ipv4-unicast\n bgp bestpath as... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 3609,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-evpn | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-evpn/tasks/cumulus.yml",
"content": "---\n- name: Configure L3 VNI in FRR (Cumulus)\n become: yes\n blockinfile:\n path: /etc/frr/frr.conf\n block: |\n vrf {{ item.vrf }}\n vni {{ item.vnid }}\n marker: \"! {mark} l3vni-{{ item.vnid }}\"\n with_items: \"{{ evpn_... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 9225,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-exit-bgp | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-exit-bgp/tasks/eos.yml",
"content": "---\n- name: eBGP base config for FW in default VRF (EOS)\n connection: network_cli\n cli_config:\n config: |\n router bgp {{ ibgp_asn }}\n neighbor FW peer-group\n address-family ipv4\n neighbor FW activate\n\n- name... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 10703,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-exit-isl | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-exit-isl/templates/eos.j2",
"content": "{% for port in default_vrf_firewall_ports[ansible_network_os] %}\nint {{ port.iface }}\n no shut\n encapsulation dot1q vlan {{ port.vlan }}\n ip address {{ port.address }}\n{% endfor %}\n!\n{% for portlist in [evpn_vrf_firewall_ports, internet_... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 7267,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-features | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-features/tasks/cumulus.yml",
"content": "---\n- name: Enable OSPF/BGP in FRR\n become: yes\n copy: src=daemons dest=/etc/frr/\n\n- name: Add vagrant as a user to run net commands\n become: yes\n lineinfile:\n path: /etc/netd.conf\n regexp: '^users_with_show = root, cumulus'\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1232,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-fw-frr | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-fw-frr/templates/frr.conf.j2",
"content": "! We use datacenter to avoid configuring additional BGP policies for tx/rx advt\nfrr defaults datacenter\nhostname edge01\nip forwarding\nipv6 forwarding\n!\nservice integrated-vtysh-config\n!\nlog file /var/log/frr/frr.log\n!\nrouter bgp {{ bg... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1024,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-fw-interfaces | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-fw-interfaces/tasks/main.yml",
"content": "---\n- name: copy interfaces\n template: src=templates/interfaces.j2 dest=/etc/network/interfaces\n notify:\n - ifup interfaces\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 129
},
{
"path": "... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 382,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-hostname | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-hostname/tasks/cumulus.yml",
"content": "---\n- name: Set hostname (Cumulus)\n hostname:\n name: \"{{inventory_hostname}}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 82
},
{
"path": "roles/cfg-hostname/tasks/junos.yml",
"content... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 559,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-lldp | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-lldp/tasks/junos.yml",
"content": "---\n- name: Configure LLDP (Junos)\n connection: network_cli\n cli_config:\n config: |\n set protocols lldp interface all\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 129
},
{
"path": "roles/... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 404,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-lo | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-lo/tasks/eos.yml",
"content": "---\n- name: Configure loopback IP (EOS)\n connection: network_cli\n cli_config:\n config: |\n int loopback0\n ip address {{ loopback_ip }}\n\n- name: Configure additional VTEP IP, if any (EOS)\n connection: network_cli\n cli_config:\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2004,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-mlag | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-mlag/tasks/nxos.yml",
"content": "---\n- name: Configure VPC (NXOS)\n connection: network_cli\n cli_config:\n config: |\n vpc domain {{ mlag_info.vpc_domainid }}\n peer-keepalive destination {{ hostvars[mlag_info.peer_switch].ansible_host }} source {{ ansible_host }}\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 6355,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-num-isl | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-num-isl/tasks/junos.yml",
"content": "---\n- name: Configure ISL ports (JunOS)\n connection: network_cli\n cli_config:\n config: |\n delete interfaces {{ item.iface }} unit 0 family inet dhcp\n set interfaces {{ item.iface }} unit 0 family inet address {{ item.address }}\... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 730,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-ospf-isl | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-ospf-isl/tasks/junos.yml",
"content": "---\n- name: Configure ISL ports (JunOS)\n connection: network_cli\n cli_config:\n config: |\n set interfaces {{ item }} mtu 9214\n delete interfaces {{ item }} unit 0 family inet dhcp\n set interfaces {{ item }} unit 0 family i... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2510,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-ospf-underlay | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-ospf-underlay/tasks/eos.yml",
"content": "---\n- name: Configure OSPF underlay (EOS)\n connection: network_cli\n cli_config:\n config: |\n interface Loopback 0\n ip ospf area 0.0.0.0\n !\n {% if vtep_iface != \"Loopback0\" %}\n interface {{ vtep_iface }}... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1560,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-reboot | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-reboot/tasks/main.yml",
"content": "---\n- name: Reload the system\n include_tasks: \"{{ ansible_network_os }}.yml\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 78
},
{
"path": "roles/cfg-reboot/tasks/cumulus.yml",
"content": "---\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 800,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-save | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-save/tasks/eos.yml",
"content": "---\n- name: Save running-config to startup-config\n connection: network_cli\n cli_config:\n config: |\n copy running-config startup-config\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 146
},
{
... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 499,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-server-ports | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-server-ports/tasks/cumulus.yml",
"content": "---\n- name: Configure server-facing ports (Cumulus)\n become: yes\n blockinfile:\n path: /etc/network/interfaces\n block: |\n auto {{ item.iface }}\n iface {{ item.iface }}\n mtu 9000\n bridge-access {{ item... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3500,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-servers | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-servers/templates/netplan.j2",
"content": "network:\n version: 2\n renderer: networkd\n ethernets:\n eth1:\n dhcp4: false\n addresses: [ {{ server_ip }} ]\n mtu: 9216\n routes:\n - to: 172.16.0.0/16\n via: {{ gateway }}\n",
"license_type": "... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 663,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/cfg-vxlan | 317 | [
"no_license"
] | [
{
"path": "roles/cfg-vxlan/tasks/cumulus.yml",
"content": "---\n- name: Configure VNIs (Cumulus)\n become: yes\n blockinfile:\n path: /etc/network/interfaces\n block: |\n auto {{ ['vni', l2_networks[item.vlanid].vnid|string]|join('') }}\n iface {{ ['vni', l2_networks[item.vlanid].vnid|stri... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 8669,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/install-frr | 317 | [
"no_license"
] | [
{
"path": "roles/install-frr/tasks/main.yml",
"content": "\n---\n - name: Add FRR repo key\n apt_key:\n url: https://deb.frrouting.org/frr/keys.asc\n state: present\n\n - name: Add FRR repo\n apt_repository:\n repo: deb https://deb.frrouting.org/frr focal frr-stable\n state: present\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 408,
"all_permissive": false
} |
ansible_role | netenglabs/automatic-for-the-people | 4cfa309d7d826d9a6c736a1d3c07d3a1ec1dbdec | 18 | roles/pingtest | 317 | [
"no_license"
] | [
{
"path": "roles/pingtest/tasks/main.yml",
"content": "---\n - name: populate service facts\n service_facts:\n\n - name: Ping gateway\n command: ping -c 1 {{ ping_gateway[inventory_hostname] }}\n when: ansible_facts.services['docker.service'] is not defined or ansible_facts.services['docker.servi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1100,
"all_permissive": false
} |
ansible_role | hd150795/ansible-playbook | ae8efdcdf5b232109470eddfec86441120bde25b | 0 | roles/ganglia-client | 317 | [
"no_license"
] | [
{
"path": "roles/ganglia-client/handlers/main.yml",
"content": "---\n- name: Restart Gmond\n service: name=ganglia-monitor state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 74
},
{
"path": "roles/ganglia-client/vars/main.yml",
"content": "---\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 377,
"all_permissive": false
} |
ansible_role | hd150795/ansible-playbook | ae8efdcdf5b232109470eddfec86441120bde25b | 0 | roles/ganglia-server | 317 | [
"no_license"
] | [
{
"path": "roles/ganglia-server/tasks/main.yml",
"content": "---\n- name: Install Ganglia monitor, RRDtool, Gmetad, and the Ganglia web front end\n apt: name={{ item }} update_cache=yes state=present\n with_items:\n - ganglia-monitor\n - rrdtool\n - gmetad\n - ganglia-webfrontend\n\n- name: Co... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 939,
"all_permissive": false
} |
ansible_role | hd150795/ansible-playbook | ae8efdcdf5b232109470eddfec86441120bde25b | 0 | roles/tomcat-setup | 317 | [
"no_license"
] | [
{
"path": "roles/tomcat-setup/templates/index.j2",
"content": "<html>\n\n<head>\n <meta http-equiv=\"refresh\" content=0;URL=\"http://{{ inventory_hostname }}:8080/SpringMVCSecurityXML\">\n</head>\n\n<body>\n</body>\n\n</html>\n",
"license_type": "no_license",
"detected_licenses": [],
"size_b... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 597,
"all_permissive": false
} |
ansible_role | polarspb/epam | 5a72bd6520b6ade89d31546827685ed82c501539 | 0 | lessons/wspace/roles/wspace | 317 | [
"no_license"
] | [
{
"path": "lessons/wspace/roles/wspace/files/bashrc",
"content": "#Ansible vault\nfunction fview {\n ansible-vault view --vault-password-file=~/.genosity_vault_pass $1\n}\n \nfunction fenc {\n ansible-vault encrypt --vault-password-file=~/.genosity_vault_pass $1\n}\n \nfunction fdec {\n ansible-vau... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 5167,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/chrome | 317 | [
"no_license"
] | [
{
"path": "roles/chrome/tasks/main.yml",
"content": "---\n- include: fedora.yml\n when: ansible_distribution == \"Fedora\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 67
},
{
"path": "roles/chrome/tasks/fedora.yml",
"content": "---\n\n- name: fedora | ad... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 331,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/docker | 317 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/clean_fedora.yml",
"content": "---\n- name: fedora | remove docker\n dnf:\n name: docker-engine\n state: absent\n sudo: yes\n\n- name: fedora | remove docker repo\n file:\n path: \"{{docker__repofile_dst}}\"\n state: absent\n",
"license_type": "no_license",
... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 4421,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/elementary-theme | 317 | [
"no_license"
] | [
{
"path": "roles/elementary-theme/templates/.gtkrc-2.0.j2",
"content": "# place customisations in ~/.gtkrc-2.0.override\ninclude \"~/.gtkrc-2.0.override\"\ngtk-theme-name=\"elementary\"\ngtk-icon-theme-name=\"hicolor\"\ngtk-font-name=\"Sans 10\"\ngtk-cursor-theme-name=\"DMZ-White\"\ngtk-cursor-theme-size=0\... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2911,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/emacs | 317 | [
"no_license"
] | [
{
"path": "roles/emacs/defaults/main.yml",
"content": "---\n# Directories within 'templates'/'files' whose\n# structure are exactly replicated\ntmpl_root: \"user_dir\"\nfile_root: \"user_dir\"\n# The root directory into which the structure and files\n# of '{tmpl,file}_root' will be installed\ninst_root: \"{... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 10,
"total_bytes": 5687,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/font-awesome | 317 | [
"no_license"
] | [
{
"path": "roles/font-awesome/defaults/main.yml",
"content": "---\n\nfont_awesome__version: 4.5.0\nfont_awesome__url: \"http://fortawesome.github.io/Font-Awesome/assets/font-awesome-{{font_awesome__version}}.zip\"\nfont_awesome__pkg_dst: \"/tmp/font-awesome-{{font_awesome__version}}.zip\"\n\nfont_awesome__f... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1333,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/font-hack | 317 | [
"no_license"
] | [
{
"path": "roles/font-hack/defaults/main.yml",
"content": "---\n\nfont_hack__base_url: \"https://github.com/chrissimpkins/Hack/raw/master/build/otf/\"\nfont_hack__fonts_dir: \"{{ ansible_user_dir }}/.local/share/fonts\"\nfont_hack__font_dir: \"{{ font_hack__fonts_dir }}/font-hack\"",
"license_type": "no... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 749,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/font-source-code-pro | 317 | [
"no_license"
] | [
{
"path": "roles/font-source-code-pro/defaults/main.yml",
"content": "---\n\nfont_scp__pkg_dstdir: \"/tmp/ansible\"\n\n# !! don't leave w/o quotes as ansible(python) will interpret it as a number.\nfont_scp__ver_roman: \"2.010\"\nfont_scp__ver_it: \"1.030\"\n\nfont_scp__pkg_fname: \"font-source-code-pro.tar... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1397,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/fsharp | 317 | [
"no_license"
] | [
{
"path": "roles/fsharp/tasks/cleanup.yml",
"content": "#- name: cleanup | remove install dir\n# file:\n# state: absent\n# path: \"{{ item }}\"\n# with_items:\n# - \"{{ fsharp__install_dir }}\"\n# - \"{{ fsharp__zsh_env_file_dstdir }}/{{ fsharp__zsh_env_file_name }}\"\n\n- debug: msg=\"Cannot ... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 4893,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/gnome-terminal | 317 | [
"no_license"
] | [
{
"path": "roles/gnome-terminal/meta/main.yml",
"content": "---\ndependencies:\n - { role: font-hack }",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 41
},
{
"path": "roles/gnome-terminal/tasks/main.yml",
"content": "---\n#dconf dump /org/gnome/terminal/\n#dc... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1733,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/godev | 317 | [
"no_license"
] | [
{
"path": "roles/godev/defaults/main.yml",
"content": "---\ngodev__pkg_arch: amd64\ngodev__pkg_ver: 1.4.2\ngodev__pkg_url: \"https://storage.googleapis.com/golang/go{{ godev__pkg_ver }}.linux-{{ godev__pkg_arch }}.tar.gz\"\ngodev__pkg_dst: \"/tmp/golang-{{ godev__pkg_ver }}-linux.{{ godev__pkg_arch }}.tar.g... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 4059,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/i3 | 317 | [
"no_license"
] | [
{
"path": "roles/i3/tasks/clean_debian.yml",
"content": "---\n- name: debian | remove software\n apt:\n state: absent\n name: \"{{ item }}\"\n with_items:\n - i3\n - dmenu\n sudo: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 132
},
{
"path":... | {
"task_files": 8,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 11126,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/jvm | 317 | [
"no_license"
] | [
{
"path": "roles/jvm/defaults/main.yml",
"content": "---\n#present|absent\njvm__state: present\n\n#Note these values from the download page\n# (http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html)\n\n#jdk|jre -- jre should suffice for clojure distribution\njvm__type: jdk\n# x... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 3793,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/mono | 317 | [
"no_license"
] | [
{
"path": "roles/mono/tasks/main.yml",
"content": "---\n\n- include: cleanup.yml\n when: mono__state == \"absent\"\n\n- include: setup.yml\n when: mono__state == \"present\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 114
},
{
"path": "roles/mono/tasks/cleanu... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 4284,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/mysql-workbench | 317 | [
"no_license"
] | [
{
"path": "roles/mysql-workbench/tasks/clean_fedora.yml",
"content": "---\n# Remove the software itself and the repo which provided it\n- name: fedora | remove software\n dnf:\n name: \"{{item}}\"\n state: absent\n with_items:\n - mysql-community-release\n - mysql-workbench-community\n sudo: ... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 1380,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/nodejs | 317 | [
"no_license"
] | [
{
"path": "roles/nodejs/defaults/main.yml",
"content": "---\n#present|absent\nnodejs__state: present\n\n# version number taken from https://nodejs.org/en/download\nnodejs__pkg_ver: v4.2.6\nnodejs__arch: x64\nnodejs__pkg_name: \"node-{{nodejs__pkg_ver}}-linux-{{nodejs__arch}}\"\nnodejs__pkg_url: \"http://nod... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 3194,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/oh-my-zsh | 317 | [
"no_license"
] | [
{
"path": "roles/oh-my-zsh/tasks/main.yml",
"content": "---\n- name: fedora | install | install ZSH shell\n dnf: name=zsh state=present\n when: \"{{ansible_distribution|lower == 'fedora'}}\"\n sudo: yes\n\n- name: debian/ubuntu | install | install ZSH shell\n apt: name=zsh state=present cache_valid_time... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3204,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/racket | 317 | [
"no_license"
] | [
{
"path": "roles/racket/tasks/inst_debian.yml",
"content": "---\n\n- name: config | debian | install package build dependencies\n apt:\n pkg: \"{{ item }}\"\n state: installed\n update_cache: true\n cache_valid_time: 3600\n with_items:\n - \"libglib2.0-dev\"\n - \"libglib2.0-dev\"\n -... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1817,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/rpmfusion | 317 | [
"no_license"
] | [
{
"path": "roles/rpmfusion/tasks/setup.yml",
"content": "---\n- name: install the rpmfusion repo packages\n dnf: name={{ item }}\n state=present\n with_items:\n - http://download1.rpmfusion.org/free/fedora/{{ rpmfusion__free }}-{{ fedora_current }}.noarch.rpm\n - http://download1.rpmfusion.org... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 848,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/software | 317 | [
"no_license"
] | [
{
"path": "roles/software/meta/main.yml",
"content": "---\ndependencies:\n - { role: rpmfusion, rpmfusion__state: present }\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 69
},
{
"path": "roles/software/defaults/main.yml",
"content": "fedora_current: 22\n\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 990,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/spotify | 317 | [
"no_license"
] | [
{
"path": "roles/spotify/tasks/fedora.yml",
"content": "---\n\n- name: fedora | adding repo\n get_url:\n url: http://negativo17.org/repos/fedora-spotify.repo\n dest: /etc/yum.repos.d/spotify.repo\n mode: 0644\n owner: root\n group: root\n\n- name: fedora | install chrome\n dnf:\n name: s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 273,
"all_permissive": false
} |
ansible_role | jwdevantier/ansible | 6580238f3caa2049b5c613cd168d5062ec9c8837 | 0 | roles/workstation | 317 | [
"no_license"
] | [
{
"path": "roles/workstation/tasks/main.yml",
"content": "---\n #ansible-playbook workpc_playbook.yml --user=pseudo --ask-sudo-pass\n- name: install the rpmfusion repo packages\n dnf:\n name: \"{{ item }}\"\n state: present\n with_items:\n - http://download1.rpmfusion.org/free/fedora/rpmfusion-fr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 511,
"all_permissive": false
} |
ansible_role | krishnendu432/Playbook | 5c9f41379c201cf6d267ea76746223949f7379b2 | 0 | roles/myservice | 317 | [
"no_license"
] | [
{
"path": "roles/myservice/tasks/main.yml",
"content": "- name: install nodejs in ubuntu system\n apt:\n name: nodejs\n state: present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 95
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 95,
"all_permissive": false
} |
ansible_role | Ouranosinc/ouranos-ansible | 85a7a3e96592c6bc57bd591ab73ad775b9fbf5c9 | 0 | ansible/roles/gitlab-ce | 328 | [
"permissive"
] | [
{
"path": "ansible/roles/gitlab-ce/tasks/main.yml",
"content": "---\n# tasks file for gitlab-ce\n\n- name: Install gettext for envsubst used in wrapper script\n ansible.builtin.package:\n name: gettext\n state: present\n\n- name: checkout repo\n git:\n repo: https://github.com/Ouranosinc/gitlab-c... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3512,
"all_permissive": true
} |
ansible_role | lenappartement/devops | b18ba32efc8586636145228a999ba357ea5ec128 | 0 | ansible/roles/app | 328 | [
"no_license"
] | [
{
"path": "ansible/roles/app/vars/main.yml",
"content": "---\n# vars file for roles/app\ndatabase_network: app-network\nproxy_network: proxy-network",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 88
},
{
"path": "ansible/roles/app/README.md",
"content": "App\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 707,
"all_permissive": false
} |
ansible_role | lenappartement/devops | b18ba32efc8586636145228a999ba357ea5ec128 | 0 | ansible/roles/database | 328 | [
"no_license"
] | [
{
"path": "ansible/roles/database/README.md",
"content": "Database\n=========\n\nDémarre la BDD\n\nRole Variables\n--------------\n\n* env_file\n\n* docker_network\n\n* docker_volume",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 112
},
{
"path": "ansible/roles/da... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 715,
"all_permissive": false
} |
ansible_role | lenappartement/devops | b18ba32efc8586636145228a999ba357ea5ec128 | 0 | ansible/roles/env | 328 | [
"no_license"
] | [
{
"path": "ansible/roles/env/tasks/main.yml",
"content": "---\n# tasks file for roles/env\n- name: Copier .env sur le serveur\n ansible.builtin.copy:\n src: /home/lena/Documents/DevOps/devops/.env\n dest: /home/admin/.env",
"license_type": "no_license",
"detected_licenses": [],
"size_byte... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 222,
"all_permissive": false
} |
ansible_role | lenappartement/devops | b18ba32efc8586636145228a999ba357ea5ec128 | 0 | ansible/roles/frontend | 328 | [
"no_license"
] | [
{
"path": "ansible/roles/frontend/tasks/main.yml",
"content": "---\n# tasks file for roles/frontend\n- name: Start frontend\n docker_container:\n name: front-main\n image: lenappartement/front-main:latest\n pull: yes # Permet de toujours récupérer l'image docker à chaque lancement de la task\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 412,
"all_permissive": false
} |
ansible_role | lenappartement/devops | b18ba32efc8586636145228a999ba357ea5ec128 | 0 | ansible/roles/network | 328 | [
"no_license"
] | [
{
"path": "ansible/roles/network/tasks/main.yml",
"content": "---\n# Install prerequisites for Network\n- name: Create network\n docker_network:\n name: \"{{database_network}}\"\n state: present # Permet de ne pas recréer le network s'il existe déjà\n\n- name: Create network\n docker_network:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 540,
"all_permissive": false
} |
ansible_role | lenappartement/devops | b18ba32efc8586636145228a999ba357ea5ec128 | 0 | ansible/roles/proxy | 328 | [
"no_license"
] | [
{
"path": "ansible/roles/proxy/tasks/main.yml",
"content": "---\n# tasks file for roles/proxy\n- name: Start proxy\n docker_container:\n name: proxy\n image: lenappartement/frontend:latest\n pull: yes # Permet de toujours récupérer l'image docker à chaque lancement de la task\n ports:\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 483,
"all_permissive": false
} |
ansible_role | lenappartement/devops | b18ba32efc8586636145228a999ba357ea5ec128 | 0 | ansible/roles/volume | 328 | [
"no_license"
] | [
{
"path": "ansible/roles/volume/vars/main.yml",
"content": "---\n# vars file for roles/volume\ndocker_volume: devops-volume",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 61
},
{
"path": "ansible/roles/volume/tasks/main.yml",
"content": "---\n# Install prerequ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 591,
"all_permissive": false
} |
ansible_role | stephendubayquiz/testansible | 836f11a5eb641f6a598d55e35d2e693f97233fdf | 0 | workstation-setup/roles/azure_cli | 328 | [
"no_license"
] | [
{
"path": "workstation-setup/roles/azure_cli/tasks/main.yml",
"content": "- name: Add Microsoft package repository\n shell: |\n curl -sL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg\n sudo mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/\n sudo sh -c 'echo \"de... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 432,
"all_permissive": false
} |
ansible_role | stephendubayquiz/testansible | 836f11a5eb641f6a598d55e35d2e693f97233fdf | 0 | workstation-setup/roles/common | 328 | [
"no_license"
] | [
{
"path": "workstation-setup/roles/common/tasks/main.yml",
"content": "- name: Update apt package manager\n apt:\n update_cache: yes\n\n- name: Install common tools and networking tools\n apt:\n name:\n - curl\n - unzip\n - git\n - software-properties-common\n - wget\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 319,
"all_permissive": false
} |
ansible_role | stephendubayquiz/testansible | 836f11a5eb641f6a598d55e35d2e693f97233fdf | 0 | workstation-setup/roles/terraform | 328 | [
"no_license"
] | [
{
"path": "workstation-setup/roles/terraform/tasks/main.yml",
"content": "- name: Download Terraform binary\n get_url:\n url: \"https://releases.hashicorp.com/terraform/1.5.7/terraform_1.5.7_linux_amd64.zip\"\n dest: \"/tmp/terraform.zip\"\n\n- name: Extract Terraform binary\n unarchive:\n src: \... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 393,
"all_permissive": false
} |
ansible_role | Nosikov-studio/r056h5-ansible | d33b290cad24404612538e4c82bab19972b2752c | 0 | roles/client | 328 | [
"no_license"
] | [
{
"path": "roles/client/tasks/main.yml",
"content": "---\n\n#---------------------------------------------------------\n\n - name: Copy nginx config file for truruki\n copy:\n src: files/truruky\n dest: /etc/nginx/sites-available/truruky\n mode: 0777\n#--------------------------... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 520,
"all_permissive": false
} |
ansible_role | Nosikov-studio/r056h5-ansible | d33b290cad24404612538e4c82bab19972b2752c | 0 | roles/pm2 | 328 | [
"no_license"
] | [
{
"path": "roles/pm2/tasks/main.yml",
"content": "---\n#---------------------------------------------------------2\n - name: Install pm2 globally\n ansible.builtin.npm:\n name: pm2\n global: yes\n\n\n#---------------------------------------------------------2\n # - name: delete webs... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1077,
"all_permissive": false
} |
ansible_role | saidsouteh/collection_molecule_docker | 499cd6f5b3e7816a45722a770c2d95a573740b08 | 0 | roles/molecule_docker | 328 | [
"no_license"
] | [
{
"path": "roles/molecule_docker/vars/main.yml",
"content": "---\n# vars file for molecule_docker",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 35
},
{
"path": "roles/molecule_docker/handlers/main.yml",
"content": "---\n# handlers file for molecule_docker",
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 1984,
"all_permissive": false
} |
ansible_role | bondalex96/dockerized-docker-registry | 61045be423a6ee3b49093cf68942b6696131aac6 | 0 | provisioning/roles/docker-prune-periodic | 328 | [
"no_license"
] | [
{
"path": "provisioning/roles/docker-prune-periodic/tasks/main.yml",
"content": "- name: Set periodic Docker prune\n cron:\n name: docker-prune\n job: 'docker system prune -af --filter until=720h'\n minute: '0'\n hour: '1'\n",
"license_type": "no_license",
"detected_licenses... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 162,
"all_permissive": false
} |
ansible_role | bondalex96/dockerized-docker-registry | 61045be423a6ee3b49093cf68942b6696131aac6 | 0 | provisioning/roles/install-gnupg2 | 328 | [
"no_license"
] | [
{
"path": "provisioning/roles/install-gnupg2/tasks/main.yml",
"content": "- name: Update repositories cache and install \"gnupg2\" package\n apt:\n name: gnupg2\n update_cache: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 109
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 109,
"all_permissive": false
} |
ansible_role | bondalex96/dockerized-docker-registry | 61045be423a6ee3b49093cf68942b6696131aac6 | 0 | provisioning/roles/ssh-user | 328 | [
"no_license"
] | [
{
"path": "provisioning/roles/ssh-user/tasks/main.yml",
"content": "- name: Add a new user named {{ user_name }}\n user:\n name: \"{{ user_name }}\"\n shell: /bin/bash\n password: '!'\n groups: \"{{ user_groups }}\"\n state: present\n\n- name: Add {{ user_name }} user to the sudoer... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 504,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.