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 | aisforaaron/parefull-devops | 5f76fdb2a692a984bc3ef7d1a3c0ba600b21e4a8 | 0 | roles/mongodb | 7,816 | [
"no_license"
] | [
{
"path": "roles/mongodb/tasks/main.yml",
"content": "---\n- apt_key: keyserver=hkp://keyserver.ubuntu.com:80 id=7F0CEB10\n sudo: yes\n tags: mongo\n\n- name: Mongo | Add mongodb repo\n sudo: yes\n apt_repository:\n repo: 'deb http://repo.mongodb.org/apt/ubuntu precise/mongodb-org/3.0 multiverse'\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1746,
"all_permissive": false
} |
ansible_role | aisforaaron/parefull-devops | 5f76fdb2a692a984bc3ef7d1a3c0ba600b21e4a8 | 0 | roles/nodejs | 7,816 | [
"no_license"
] | [
{
"path": "roles/nodejs/tasks/nvm.yml",
"content": "---\n- name: Install dependencies\n sudo: yes\n apt: pkg={{ item }} update_cache=yes\n with_items:\n - git\n - curl\n - build-essential\n - libssl-dev\n tags: nvm\n\n- name: Install nvm \n sudo: yes\n sudo_user: \"{{ ansible_user_id }}\"\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 5701,
"all_permissive": false
} |
ansible_role | m-stojanovic/ansible-automation | f4420a5e9f6c987accd067f1d05aa6ed27550d12 | 1 | roles/apache | 7,816 | [
"no_license"
] | [
{
"path": "roles/apache/handlers/main.yml",
"content": "---\n# handlers file for /etc/ansible/roles/apache\n- name: restart_apache\n service:\n name: apache2\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 123
},
{
"path": "roles/apache/... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 852,
"all_permissive": false
} |
ansible_role | m-stojanovic/ansible-automation | f4420a5e9f6c987accd067f1d05aa6ed27550d12 | 1 | roles/aws | 7,816 | [
"no_license"
] | [
{
"path": "roles/aws/tasks/createkey.yml",
"content": "---\n- hosts: localhost\n gather_facts: yes\n vars_files:\n - keys.yml\n tasks:\n - name: craete a new ec2 keypair\n ec2_key:\n aws_access_key: \"{{ AWS_ACCESS_KEY_ID }}\"\n aws_secret_key: \"{{ AWS_SECRET_ACCESS_KEY }}\"\n ... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3812,
"all_permissive": false
} |
ansible_role | m-stojanovic/ansible-automation | f4420a5e9f6c987accd067f1d05aa6ed27550d12 | 1 | roles/basics_debian | 7,816 | [
"no_license"
] | [
{
"path": "roles/basics_debian/handlers/main.yml",
"content": "---\n- name: update nfs exports\n command: exportfs -avr\n listen: update nfs\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 77
},
{
"path": "roles/basics_debian/tasks/domainname.yml",
"content... | {
"task_files": 9,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 13,
"total_bytes": 3291,
"all_permissive": false
} |
ansible_role | m-stojanovic/ansible-automation | f4420a5e9f6c987accd067f1d05aa6ed27550d12 | 1 | roles/docker | 7,816 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/copy.yml",
"content": "---\n- name: Create required directory\n file:\n path: \"{{ item }}\"\n owner: \"{{ user }}\"\n group: \"{{ user }}\"\n recurse: yes\n state: directory\n loop:\n - /home/{{ user }}/docker-compose/{{ service }}\n \n- name: Copy docker-... | {
"task_files": 9,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 10348,
"all_permissive": false
} |
ansible_role | m-stojanovic/ansible-automation | f4420a5e9f6c987accd067f1d05aa6ed27550d12 | 1 | roles/mount | 7,816 | [
"no_license"
] | [
{
"path": "roles/mount/tasks/main.yml",
"content": "- import_tasks: create.yml\n- import_tasks: mount.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 53
},
{
"path": "roles/mount/tasks/mount.yml",
"content": "- name: Format the disk\n filesystem:\n de... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 439,
"all_permissive": false
} |
ansible_role | m-stojanovic/ansible-automation | f4420a5e9f6c987accd067f1d05aa6ed27550d12 | 1 | roles/network_configuration | 7,816 | [
"no_license"
] | [
{
"path": "roles/network_configuration/templates/ifupdown.j2",
"content": "{{ ansible_managed | comment }}\n\n{% for interface, options in ifupdown_interfaces.items() %}\n{% if options.auto is defined and options.auto|bool %}\nauto {{ options.device }}\n{% endif %}\niface {{ options.device }} inet {{ option... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 4759,
"all_permissive": false
} |
ansible_role | m-stojanovic/ansible-automation | f4420a5e9f6c987accd067f1d05aa6ed27550d12 | 1 | roles/nullmailer | 7,816 | [
"no_license"
] | [
{
"path": "roles/nullmailer/templates/msmtprc.j2",
"content": "{{ ansible_managed | comment }}\n\ndefaults\n\n{% if nullmailer_host is defined and nullmailer_host|length %}\nhost {{ nullmailer_host }}\n{% endif %}\n\n{% if nullmailer_port is defined and nullmailer_port|int %}\nport {{ nullmailer_port }}\n{%... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 3507,
"all_permissive": false
} |
ansible_role | m-stojanovic/ansible-automation | f4420a5e9f6c987accd067f1d05aa6ed27550d12 | 1 | roles/sshkeys | 7,816 | [
"no_license"
] | [
{
"path": "roles/sshkeys/tasks/setup.yml",
"content": " - name: Check does file authorized_keys exists\n stat:\n path: ~/.ssh/authorized_keys\n register: file_status\n\n - debug:\n msg: \"File already exists!\"\n when: file_status.stat.exists\n\n - name: Create authoriz... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1137,
"all_permissive": false
} |
ansible_role | m-stojanovic/ansible-automation | f4420a5e9f6c987accd067f1d05aa6ed27550d12 | 1 | roles/ssmtp | 7,816 | [
"no_license"
] | [
{
"path": "roles/ssmtp/tasks/main.yml",
"content": "---\n- name: disable debian configuration\n debconf:\n name: ssmtp\n question: ssmtp/overwriteconfig\n value: \"false\"\n vtype: boolean\n notify:\n - 'Rebuild ssmtp'\n\n- name: install SSMTP\n apt:\n name: ssmtp\n state: present\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2447,
"all_permissive": false
} |
ansible_role | m-stojanovic/ansible-automation | f4420a5e9f6c987accd067f1d05aa6ed27550d12 | 1 | roles/webservers | 7,816 | [
"no_license"
] | [
{
"path": "roles/webservers/tasks/configuration.yml",
"content": "- name: configure virtual host\n template:\n src: 'vhost.conf.j2'\n dest: /etc/apache2/sites-enabled\n notify:\n - apache2service\n tags:\n - vhost\n\n- name: configure site auth\n template:\n src: 'htpasswd.j2'\n dest: ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 921,
"all_permissive": false
} |
ansible_role | lofyer/ServerPerformanceTest_k8s_vdbench | 696b9ca47f30c3147a1b9e3dd24fd50176a25067 | 0 | workloads/storage/ansible/roles/vdbench | 7,816 | [
"no_license"
] | [
{
"path": "workloads/storage/ansible/roles/vdbench/defaults/main.yaml",
"content": "---\ninstall_jvm: no\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 20
},
{
"path": "workloads/storage/ansible/roles/vdbench/tasks/main.yaml",
"content": "---\n- name: instal... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 497,
"all_permissive": false
} |
ansible_role | PascalLeMerrer/bleu-vanille | 826ce9b7f1d4c59a9a5100c94948e8b291556f81 | 0 | roles/checkout | 7,816 | [
"no_license"
] | [
{
"path": "roles/checkout/vars/main.yml",
"content": "node_modules_directory: ../node_modules",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 39
},
{
"path": "roles/checkout/tasks/main.yml",
"content": "########## App checkout and build ##########\n\n# - name:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1182,
"all_permissive": false
} |
ansible_role | PascalLeMerrer/bleu-vanille | 826ce9b7f1d4c59a9a5100c94948e8b291556f81 | 0 | roles/package | 7,816 | [
"no_license"
] | [
{
"path": "roles/package/tasks/main.yml",
"content": "########## App packaging ##########\n\n- name: Get the sha1 of the current git commit\n command: >\n chdir=\"{{ tmp_directory }}\"\n git rev-parse HEAD\n register: result\n tags: ['deploy']\n\n- name: Set the sha1 variable\n set_fact: sha1={{ ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1233,
"all_permissive": false
} |
ansible_role | PascalLeMerrer/bleu-vanille | 826ce9b7f1d4c59a9a5100c94948e8b291556f81 | 0 | roles/supervisor | 7,816 | [
"no_license"
] | [
{
"path": "roles/supervisor/vars/main.yml",
"content": "logs_dir: /var/log\nsupervisor_config_dir: /etc/supervisor\ncurrent_version_dir: /home/pascal/bleuvanille",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 103
},
{
"path": "roles/supervisor/tasks/main.yml",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 4888,
"all_permissive": false
} |
ansible_role | pli01/ansible-cloud | 4c94e1cd0feb717b1c9d1dd3095205f333a650c1 | 0 | roles/create_instances | 7,816 | [
"no_license"
] | [
{
"path": "roles/create_instances/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - create_instances",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 74
},
{
"path": "roles/create_instances/vars/main.yml",
"content": "---... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 2361,
"all_permissive": false
} |
ansible_role | pli01/ansible-cloud | 4c94e1cd0feb717b1c9d1dd3095205f333a650c1 | 0 | roles/docker | 7,816 | [
"no_license"
] | [
{
"path": "roles/docker/handlers/main.yml",
"content": "---\n- name: restart docker\n service: name={{ docker_service_name }} state=restarted\n\n- name: reload docker\n service: name={{ docker_service_name }} state=reloaded\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3344,
"all_permissive": false
} |
ansible_role | pli01/ansible-cloud | 4c94e1cd0feb717b1c9d1dd3095205f333a650c1 | 0 | roles/ping | 7,816 | [
"no_license"
] | [
{
"path": "roles/ping/tasks/main.yml",
"content": "---\n- name: ping instances\n ping:\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 35
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 35,
"all_permissive": false
} |
ansible_role | pli01/ansible-cloud | 4c94e1cd0feb717b1c9d1dd3095205f333a650c1 | 0 | roles/shade | 7,816 | [
"no_license"
] | [
{
"path": "roles/shade/tests/test.yaml",
"content": "# Copyright 2015 Red Hat, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICE... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 4855,
"all_permissive": false
} |
ansible_role | rguillebert/laptop_ansible_playbook | 040a56c129f71b145b128df57a486f035ab29511 | 0 | roles/cli | 7,816 | [
"no_license"
] | [
{
"path": "roles/cli/tasks/main.yml",
"content": "- name: install cli apps\n become: true\n apt:\n name: \"{{ item }}\"\n with_items: \"{{ cli_apps }}\"\n\n- name: set vim up\n block:\n - copy:\n src: \".vimrc\"\n dest: \"/home/{{ username }}/.vimrc\"\n name: Copy vimr... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 873,
"all_permissive": false
} |
ansible_role | rguillebert/laptop_ansible_playbook | 040a56c129f71b145b128df57a486f035ab29511 | 0 | roles/gui | 7,816 | [
"no_license"
] | [
{
"path": "roles/gui/defaults/main.yml",
"content": "gui_apps:\n - i3\n - shutter\n - redshift\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 48
},
{
"path": "roles/gui/tasks/main.yml",
"content": "- name: Install gui packages\n apt:\n name: \... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 393,
"all_permissive": false
} |
ansible_role | sunvisor/airenv.server | 911e6fce2d5745248188169dbea88828968e6c25 | 0 | ansible/roles/apache | 7,816 | [
"no_license"
] | [
{
"path": "ansible/roles/apache/tasks/main.yml",
"content": "---\n- name: make www group\n group: name={{ www_user }} gid=2000 state=present\n\n- name: make webmaster group\n group: name={{ webmaster_user }} gid=2001 state=present\n\n- name: make www user\n user: name={{ www_user }} group={{ www_user }} ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 937,
"all_permissive": false
} |
ansible_role | sunvisor/airenv.server | 911e6fce2d5745248188169dbea88828968e6c25 | 0 | ansible/roles/application | 7,816 | [
"no_license"
] | [
{
"path": "ansible/roles/application/templates/.env",
"content": "APP_ENV=prod\nAPP_SECRET={{ secret }}\nDATABASE_URL=pgsql://www:www@localhost:5432/airenv\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 88
},
{
"path": "ansible/roles/application/templates/hosts"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 7493,
"all_permissive": false
} |
ansible_role | sunvisor/airenv.server | 911e6fce2d5745248188169dbea88828968e6c25 | 0 | ansible/roles/basic | 7,816 | [
"no_license"
] | [
{
"path": "ansible/roles/basic/tasks/main.yml",
"content": "# 基本部分のインストール\n- name: EPEL/Remi\n yum:\n name:\n - epel-release\n - http://rpms.famillecollet.com/enterprise/remi-release-7.rpm\n become: true\n\n- name: general tool\n yum:\n name:\n - gcc\n - zip\n - unzip\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 332,
"all_permissive": false
} |
ansible_role | sunvisor/airenv.server | 911e6fce2d5745248188169dbea88828968e6c25 | 0 | ansible/roles/composer | 7,816 | [
"no_license"
] | [
{
"path": "ansible/roles/composer/defaults/main.yml",
"content": "---\ncomposer_path: /usr/local/bin\nphp_path: /usr/bin\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 53
},
{
"path": "ansible/roles/composer/tasks/main.yml",
"content": "---\n- name: check co... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 697,
"all_permissive": false
} |
ansible_role | sunvisor/airenv.server | 911e6fce2d5745248188169dbea88828968e6c25 | 0 | ansible/roles/php | 7,816 | [
"no_license"
] | [
{
"path": "ansible/roles/php/tasks/main.yml",
"content": "# PHP のインストール\n- name: PHP\n yum:\n enablerepo: remi,remi-php{{ php_version | replace('.','') }}\n name:\n - php\n - php-devel\n - php-mbstring\n - php-pdo\n - php-pgsql\n - php-gd\n - php-xml\n - php-mc... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 365,
"all_permissive": false
} |
ansible_role | sunvisor/airenv.server | 911e6fce2d5745248188169dbea88828968e6c25 | 0 | ansible/roles/postgres | 7,816 | [
"no_license"
] | [
{
"path": "ansible/roles/postgres/defaults/main.yml",
"content": "---\npostgres_version: 11\npostgres_repo: https://download.postgresql.org/pub/repos/yum/{{ postgres_version }}/redhat/rhel-6-x86_64/pgdg-redhat-repo-latest.noarch.rpm\npostgres_user: postgres\npostgres_bin: /usr/pgsql-{{ postgres_version }}/b... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 958,
"all_permissive": false
} |
ansible_role | avojak/gitlab-fargate-demo | a5527e4d8bfd6aa99fa25b0792eb620612008e56 | 0 | ansible/roles/runner | 8,016 | [
"no_license"
] | [
{
"path": "ansible/roles/runner/tasks/main.yml",
"content": "---\n- name: Check if runner is already installed\n stat: path=/usr/bin/gitlab-runner\n register: runner_file\n\n- name: Create runner directories\n file:\n path: \"{{ runner_install_dir }}/{{ item }}\"\n state: directory\n mode: '0755... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4101,
"all_permissive": false
} |
ansible_role | andrew-oppon/jenkins-sample-project | 4d06ce0bbd6578043ce3bb4c7a7433cb73586ec2 | 0 | ansible/roles/jenkins-ec2 | 8,016 | [
"no_license"
] | [
{
"path": "ansible/roles/jenkins-ec2/tasks/main.yml",
"content": "---\n\n- name: Install docker\n yum:\n name: docker\n state: latest\n\n- name: Create jenkins directory\n file:\n state: directory\n owner: 1000\n group: 1000\n path: /share/jenkins\n\n- name: Install docker pip\n pip:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 727,
"all_permissive": false
} |
ansible_role | Alexandrov92/ansible | 84f7ce9669c489fc627d4ed4a17e7b032d41f81f | 0 | roles/deploy_site | 8,016 | [
"no_license"
] | [
{
"path": "roles/deploy_site/vars/main.yml",
"content": "---\n# vars file for deploy_site\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 32
},
{
"path": "roles/deploy_site/defaults/main.yml",
"content": "---\n# defaults file for deploy_site\ndestination : /v... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 742,
"all_permissive": false
} |
ansible_role | jopofe/k8s-app-azure | 6884212c7be7282a5ccce9de2d304b911e583f9a | 0 | ansible/roles/app | 8,016 | [
"no_license"
] | [
{
"path": "ansible/roles/app/files/nfs-pv.yaml",
"content": "apiVersion: v1\nkind: PersistentVolume\nmetadata:\n name: nfs-pv\n namespace: pozuelo\nspec:\n capacity:\n storage: 5Gi\n volumeMode: Filesystem\n accessModes:\n - ReadWriteMany\n persistentVolumeReclaimPolicy: Recycle\n storageClassN... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 3127,
"all_permissive": false
} |
ansible_role | jopofe/k8s-app-azure | 6884212c7be7282a5ccce9de2d304b911e583f9a | 0 | ansible/roles/k8s | 8,016 | [
"no_license"
] | [
{
"path": "ansible/roles/k8s/vars/main.yml",
"content": "---\n# vars file for k8s\n\npackages: ['kubelet', 'kubeadm', 'kubectl']",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 68
},
{
"path": "ansible/roles/k8s/tasks/k8s.yml",
"content": "---\n\n# tasks file f... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3255,
"all_permissive": false
} |
ansible_role | jopofe/k8s-app-azure | 6884212c7be7282a5ccce9de2d304b911e583f9a | 0 | ansible/roles/master | 8,016 | [
"no_license"
] | [
{
"path": "ansible/roles/master/tasks/main.yml",
"content": "---\n# tasks file for master\n\n- include_tasks: master.yml",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 56
},
{
"path": "ansible/roles/master/tasks/master.yml",
"content": "---\n# tasks file for m... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3165,
"all_permissive": false
} |
ansible_role | jopofe/k8s-app-azure | 6884212c7be7282a5ccce9de2d304b911e583f9a | 0 | ansible/roles/nfs | 8,016 | [
"no_license"
] | [
{
"path": "ansible/roles/nfs/tasks/nfs.yml",
"content": "---\n\n# NFS Role\n# https://docs.ansible.com/ansible/2.9/modules/dnf_module.html\n\n# Manage Hostname\n# https://docs.ansible.com/ansible/latest/collections/ansible/builtin/hostname_module.html\n- name: Set hostname\n hostname:\n name: \"{{ nfsHo... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1381,
"all_permissive": false
} |
ansible_role | jopofe/k8s-app-azure | 6884212c7be7282a5ccce9de2d304b911e583f9a | 0 | ansible/roles/worker | 8,016 | [
"no_license"
] | [
{
"path": "ansible/roles/worker/tasks/worker.yml",
"content": "---\n# tasks file for worker\n- name: Set hostname\n hostname:\n name: \"{{ workerHostname }}\"\n\n# Permitir en el cortafuegos el tráfico necesario para el servicio:\n- name: Allow FW ports\n firewalld:\n permanent: yes\n immediate: ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1123,
"all_permissive": false
} |
ansible_role | jianzhangbjz/sample-operator | 7b61d00c58e89f7ecfc8b20bf4c6d8cf0a74b1e9 | 1 | roles/sample | 8,016 | [
"no_license"
] | [
{
"path": "roles/sample/tasks/main.yml",
"content": "---\n# tasks file for Sample\n- name: start sample\n kubernetes.core.k8s:\n definition:\n kind: Deployment\n apiVersion: apps/v1\n metadata:\n name: '{{ ansible_operator_meta.name }}-sample'\n namespace: '{{ ansible_operat... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 821,
"all_permissive": false
} |
ansible_role | anu1910/playbooks | 7a5810211ee5670efede2589535929ae76b2d24c | 0 | roles/user-create | 8,016 | [
"no_license"
] | [
{
"path": "roles/user-create/tasks/main.yml",
"content": "---\n- name: Creating the users.\n user:\n name: \"{{ sname }}\"\n password: \"{{' <PASSWORD> | password_bash('<PASSWORD>') }}\"\n comment: \"{{ sfull }}\"\n shell: /bin/bash\n group: wheel\n groups: wheel\n home: /home/{{ sname }}\n\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 233,
"all_permissive": false
} |
ansible_role | jwronquillo/Final_Exam_Ronquillo | 8e6932c0947c78db24327241d4f3ebcc49e2af44 | 0 | roles/CentOS | 8,016 | [
"no_license"
] | [
{
"path": "roles/CentOS/tasks/main.yml",
"content": "---\n\n- name: Install httpd and php for CentOS\n dnf:\n name:\n - httpd\n - php\n state: latest\n when: ansible_distribution == \"CentOS\"\n\n- name: httpd Restarting/Enabling\n service:\n name: httpd\n state: restarted\n enab... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 652,
"all_permissive": false
} |
ansible_role | jwronquillo/Final_Exam_Ronquillo | 8e6932c0947c78db24327241d4f3ebcc49e2af44 | 0 | roles/Ubuntu | 8,016 | [
"no_license"
] | [
{
"path": "roles/Ubuntu/tasks/main.yml",
"content": "---\n\n- name: Install apache and php\n apt:\n name:\n - apache2\n - libapache2-mod-php\n state: latest\n update_cache: yes\n when: ansible_distribution == \"Ubuntu\"\n\n- name: Install Mariadb service\n apt:\n name: mariadb-serve... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 560,
"all_permissive": false
} |
ansible_role | below9k/savi-kb | cbd6f3e3423ba2a81dbae867f024d215970f2be9 | 0 | deployment/ansible/roles/savi.kb | 8,016 | [
"no_license"
] | [
{
"path": "deployment/ansible/roles/savi.kb/tasks/main.yml",
"content": "- name: Download the docker image tgz\n shell: AWS_ACCESS_KEY_ID={{AWS_ACCESS_KEY_ID}} AWS_SECRET_ACCESS_KEY={{AWS_SECRET_ACCESS_KEY}} aws s3 cp s3://savi-docker-images/savi-kb/savi-kb_{{KB_TAG}}.tgz /tmp/savi-kb_{{KB_TAG}}.tgz\n\n- n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 883,
"all_permissive": false
} |
ansible_role | eliarms/ansible | c9efe97de1d9531ad23c4834fa4ef98ad861d20e | 0 | roles/webservers | 8,016 | [
"no_license"
] | [
{
"path": "roles/webservers/tasks/main.yml",
"content": "---\n# tasks file for roles/webservers\n - name: Upload application\n copy:\n src: ../files/index.php\n dest: \"{{ path_to_app }}\"\n mode: 0755 \n\n\n - name: Configure php.ini file\n lineinfile:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 365,
"all_permissive": false
} |
ansible_role | caige-kelly/k8s_lab | 5695b4bffa3c48c69a6a815e6b341096333456ff | 0 | src/ansible/roles/common | 8,016 | [
"no_license"
] | [
{
"path": "src/ansible/roles/common/tasks/main.yaml",
"content": "---\n- name: update system\n ansible.builtin.command:\n cmd: apt-get update\n\n- name: upgrade system\n ansible.builtin.command:\n cmd: apt-get upgrade -y\n\n- name: install dependencies\n become: yes\n ansible.builtin.command:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2984,
"all_permissive": false
} |
ansible_role | caige-kelly/k8s_lab | 5695b4bffa3c48c69a6a815e6b341096333456ff | 0 | src/ansible/roles/control_plane | 8,016 | [
"no_license"
] | [
{
"path": "src/ansible/roles/control_plane/tasks/main.yaml",
"content": "---\n- name: update /etc/hosts\n ansible.builtin.shell:\n cmd: echo \"$(hostname -i) k8scp\" >> /etc/hosts\n\n- name: copy kubeadm conf over\n ansible.builtin.copy:\n src: artifacts/kubeadm-config.yaml\n dest: /home/ubuntu\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2527,
"all_permissive": false
} |
ansible_role | caige-kelly/k8s_lab | 5695b4bffa3c48c69a6a815e6b341096333456ff | 0 | src/ansible/roles/create_nfs_volume | 8,016 | [
"no_license"
] | [
{
"path": "src/ansible/roles/create_nfs_volume/tasks/main.yaml",
"content": "- name: create nfs volume\n ansible.builtin.shell:\n cmd: |\n apt-get install -y nfs-kernel-server\n mkdir /opt/sfw\n chmod 1777 /opt/sfw\n echo '/opt/sfw/ *(rw,sync,no_root_squash,subtree_check)' >> /etc/e... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 250,
"all_permissive": false
} |
ansible_role | caige-kelly/k8s_lab | 5695b4bffa3c48c69a6a815e6b341096333456ff | 0 | src/ansible/roles/worker | 8,016 | [
"no_license"
] | [
{
"path": "src/ansible/roles/worker/tasks/main.yaml",
"content": "--- \n- name: Add cp /etc/hosts\n ansible.builtin.shell:\n cmd: echo {{ hostvars['DUMMY_HOST']['IP'] }} >> /etc/hosts\n\n- name: Join cluster\n ansible.builtin.shell:\n cmd: \"{{ hostvars['DUMMY_HOST']['JOIN'] }}\"\n",
"license_ty... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 214,
"all_permissive": false
} |
ansible_role | DermanskIIII/patroni-test-01 | 084eaca48162a2a829d8422c6a94b38bea13e36b | 0 | roles/bouncer | 8,016 | [
"no_license"
] | [
{
"path": "roles/bouncer/templates/keepalived.conf.j2",
"content": "global_defs {\n router_id {{ inventory_hostname }}\n}\n\nvrrp_script chk_haproxy {\n script \"killall -0 haproxy\"\n interval 1\n weight -20\n debug\n fall 2\n rise 2\n}\n\nvrrp_instance {{ invent... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2673,
"all_permissive": false
} |
ansible_role | DermanskIIII/patroni-test-01 | 084eaca48162a2a829d8422c6a94b38bea13e36b | 0 | roles/etcd | 8,016 | [
"no_license"
] | [
{
"path": "roles/etcd/tasks/main.yml",
"content": "---\n- name: put etcd binaries\n block:\n - name: unarchive\n ansible.builtin.unarchive:\n remote_src: no\n src: etcd-v3.5.7-linux-amd64.tar.gz\n dest: /tmp\n - name: copy files\n ansible.builtin.copy:\n remote_s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3190,
"all_permissive": false
} |
ansible_role | DermanskIIII/patroni-test-01 | 084eaca48162a2a829d8422c6a94b38bea13e36b | 0 | roles/patroni | 8,016 | [
"no_license"
] | [
{
"path": "roles/patroni/templates/patroni.yml.j2",
"content": "scope: pgsql\nnamespace: /cluster/\nname: {{ inventory_hostname }}\n\nrestapi:\n listen: {{ hostvars[inventory_hostname].ansible_default_ipv4.address }}:8008\n connect_address: {{ hostvars[inventory_hostname].ansible_default_ipv4.address ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3508,
"all_permissive": false
} |
ansible_role | DermanskIIII/patroni-test-01 | 084eaca48162a2a829d8422c6a94b38bea13e36b | 0 | roles/run | 8,016 | [
"no_license"
] | [
{
"path": "roles/run/tasks/main.yml",
"content": "---\n- name: enable and start patroni-service\n ansible.builtin.systemd:\n daemon_reload: true\n name: patroni\n enabled: true\n state: started\n tags:\n - patroni-start\n\n- name: wait for init cluster\n ansible.builtin.pause:\n seconds... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 278,
"all_permissive": false
} |
ansible_role | munnnnet/azuracast---001 | aecf6c95733a02918a46e9e31cf97911fbe62c39 | 0 | util/ansible/roles/azuracast-cron | 7,976 | [
"no_license"
] | [
{
"path": "util/ansible/roles/azuracast-cron/tasks/main.yml",
"content": "---\n- name: Install cron-related packages\n apt:\n name:\n - cron\n - tmpreaper\n\n- name: Generate Cron Template\n template:\n src: azuracast_cron.j2\n dest: \"{{ tmp_base }}/azuracast_cron\"\n force: true\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 715,
"all_permissive": false
} |
ansible_role | munnnnet/azuracast---001 | aecf6c95733a02918a46e9e31cf97911fbe62c39 | 0 | util/ansible/roles/azuracast-radio | 7,976 | [
"no_license"
] | [
{
"path": "util/ansible/roles/azuracast-radio/tasks/liquidsoap_legacy.yml",
"content": "---\n- name: Clear OPAM directory\n file:\n path: \"{{ app_base }}/.opam\"\n state: absent\n\n- name: Add OPAM/OCaml Repository\n apt_repository:\n repo: \"ppa:avsm/ppa\"\n update_cache: true\n\n- name: Ins... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2259,
"all_permissive": false
} |
ansible_role | munnnnet/azuracast---001 | aecf6c95733a02918a46e9e31cf97911fbe62c39 | 0 | util/ansible/roles/beanstalkd | 7,976 | [
"no_license"
] | [
{
"path": "util/ansible/roles/beanstalkd/tasks/main.yml",
"content": "---\n- name: Install Beanstalkd\n apt:\n name: beanstalkd\n\n- name: Extend default message size.\n template:\n src: etc_default_beanstalkd.j2\n dest: /etc/default/beanstalkd\n force: true\n mode: 0644\n",
"license_ty... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 209,
"all_permissive": false
} |
ansible_role | munnnnet/azuracast---001 | aecf6c95733a02918a46e9e31cf97911fbe62c39 | 0 | util/ansible/roles/init | 7,976 | [
"no_license"
] | [
{
"path": "util/ansible/roles/init/tasks/main.yml",
"content": "---\n- name: Running context\n debug:\n msg: >-\n Running Ansible on {{ inventory_hostname }} with OS {{ ansible_distribution }}\n {{ ansible_distribution_release }} {{ ansible_distribution_version }} {{ ansible_architecture }} ({... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2218,
"all_permissive": false
} |
ansible_role | munnnnet/azuracast---001 | aecf6c95733a02918a46e9e31cf97911fbe62c39 | 0 | util/ansible/roles/mariadb | 7,976 | [
"no_license"
] | [
{
"path": "util/ansible/roles/mariadb/tasks/main.yml",
"content": "---\n- name: Update MariaDB Dependencies\n shell: >-\n curl -sSL https://downloads.mariadb.com/MariaDB/mariadb_repo_setup\n | bash -s -- --mariadb-server-version=\"mariadb-10.5\"\n\n- name: Install MariaDB\n apt:\n name: \"{{ pack... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 447,
"all_permissive": false
} |
ansible_role | munnnnet/azuracast---001 | aecf6c95733a02918a46e9e31cf97911fbe62c39 | 0 | util/ansible/roles/nginx | 7,976 | [
"no_license"
] | [
{
"path": "util/ansible/roles/nginx/tasks/main.yml",
"content": "---\n- name: Uninstall web server packages that may conflict with nginx\n apt:\n name:\n - apache2\n - lighttpd\n state: absent\n\n- name: Unhold nginx-related packages for updates\n dpkg_selections:\n name: \"{{ nginx_pkg... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1803,
"all_permissive": false
} |
ansible_role | munnnnet/azuracast---001 | aecf6c95733a02918a46e9e31cf97911fbe62c39 | 0 | util/ansible/roles/redis | 7,976 | [
"no_license"
] | [
{
"path": "util/ansible/roles/redis/tasks/main.yml",
"content": "---\n- name: Add Redis PPA repository\n apt_repository:\n repo: \"ppa:chris-lea/redis-server\"\n update_cache: true\n\n- name: Install Redis\n apt:\n name: redis-server\n\n- name: Enable and restart all core services\n service:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 429,
"all_permissive": false
} |
ansible_role | munnnnet/azuracast---001 | aecf6c95733a02918a46e9e31cf97911fbe62c39 | 0 | util/ansible/roles/services | 7,976 | [
"no_license"
] | [
{
"path": "util/ansible/roles/services/tasks/main.yml",
"content": "---\n- name: Enable and restart all core services\n service:\n name: \"{{ item }}\"\n enabled: true\n state: restarted\n ignore_errors: true\n with_items:\n - \"mysql\"\n - \"php8.1-fpm\"\n - \"nginx\"\n - \"redis-se... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 259,
"all_permissive": false
} |
ansible_role | munnnnet/azuracast---001 | aecf6c95733a02918a46e9e31cf97911fbe62c39 | 0 | util/ansible/roles/supervisord | 7,976 | [
"no_license"
] | [
{
"path": "util/ansible/roles/supervisord/tasks/main.yml",
"content": "---\n- name: Install supervisord from repo\n apt:\n name: supervisor\n register: supervisord_install\n\n- name: Change supervisord configuration\n template:\n src: supervisord.conf.j2\n dest: /etc/supervisor/supervisord.conf\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 907,
"all_permissive": false
} |
ansible_role | shreebadiger/jenkins-jobs | f6c93d363eb8ca29983617f887a9770528064134 | 0 | roles/jobs | 7,976 | [
"no_license"
] | [
{
"path": "roles/jobs/tasks/main.yml",
"content": "- name: Create a folder\n community.general.jenkins_job:\n config: \"{{ lookup('file', 'templates/folder.xml') }}\"\n name: \"{{item.name}}\"\n password: <PASSWORD>\n url: http://172.31.40.166:8080\n user: admin\n loop: \"{{folders}}\"\n\n-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1084,
"all_permissive": false
} |
ansible_role | Syringe89/ansible-demo | d0806c43e61d449c4c918451704b6c114446ccf6 | 0 | roles/build | 7,976 | [
"no_license"
] | [
{
"path": "roles/build/tasks/main.yml",
"content": "- name: Git clone\n ansible.builtin.git:\n repo: 'https://github.com/AlariCode/docker-demo.git'\n dest: \"{{ git_folder }}\"\n version: block-14\n\n- name: Build image\n community.docker.docker_image:\n name: \"{{ registry_name }}{{ item.name... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 784,
"all_permissive": false
} |
ansible_role | Syringe89/ansible-demo | d0806c43e61d449c4c918451704b6c114446ccf6 | 0 | roles/deploy | 7,976 | [
"no_license"
] | [
{
"path": "roles/deploy/tasks/main.yml",
"content": "- name: Create network\n community.docker.docker_network:\n name: \"{{ network_name }}\"\n driver: overlay\n\n- name: Deploy services\n include_tasks:\n file: \"../services/{{ item.name }}/service.yml\"\n vars:\n - name: \"{{ item.name }}\"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 10,
"total_bytes": 3967,
"all_permissive": false
} |
ansible_role | Syringe89/ansible-demo | d0806c43e61d449c4c918451704b6c114446ccf6 | 0 | roles/node_leave | 7,976 | [
"no_license"
] | [
{
"path": "roles/node_leave/meta/main.yml",
"content": "galaxy_info:\n role_name: node_leave\n description: Disconnect node from swarm\n author: Syringe\n license: MIT\n min_ansible_version: 2.9\n platforms:\n - name: ubuntu\n version:\n - all\n",
"license_type": "no_license",
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 836,
"all_permissive": false
} |
ansible_role | Syringe89/ansible-demo | d0806c43e61d449c4c918451704b6c114446ccf6 | 0 | roles/preconfig | 7,976 | [
"no_license"
] | [
{
"path": "roles/preconfig/meta/main.yml",
"content": "galaxy_info:\n role_name: preconfig\n description: Configuration servers for Docker\n author: Syringe\n license: MIT\n min_ansible_version: 2.9\n platforms:\n - name: ubuntu\n version:\n - all\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2262,
"all_permissive": false
} |
ansible_role | Syringe89/ansible-demo | d0806c43e61d449c4c918451704b6c114446ccf6 | 0 | roles/swarm_init | 7,976 | [
"no_license"
] | [
{
"path": "roles/swarm_init/tasks/main.yml",
"content": "- name: Swarm init\n community.docker.docker_swarm:\n state: present\n advertise_addr: \"{{ advertise_addr }}\"\n register: token\n\n- name: Save tokens\n set_fact:\n token_manager: \"{{ token.swarm_facts.JoinTokens.Manager }}\"\n token... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1002,
"all_permissive": false
} |
ansible_role | alaeddineboukhriss/angularproject | 3e0bf5e9489fcd827103001bed6e623b7f7f2cf0 | 0 | ansible/roles/build | 7,976 | [
"no_license"
] | [
{
"path": "ansible/roles/build/tasks/main.yml",
"content": "---\n# tasks file for build\n- name: build app\n shell: ng build && chmod 777 -R /var/lib/jenkins/workspace/angularproject/dist/\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 128
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 128,
"all_permissive": false
} |
ansible_role | alaeddineboukhriss/angularproject | 3e0bf5e9489fcd827103001bed6e623b7f7f2cf0 | 0 | ansible/roles/docker | 7,976 | [
"no_license"
] | [
{
"path": "ansible/roles/docker/tasks/main.yml",
"content": "---\n# tasks file for docker\n- name: create image docker\n docker_image:\n name: alaboukhris/devops:latest\n build:\n path: /var/lib/jenkins/workspace/angularproject\n pull: no\n source: build\n state: present\n force_sour... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 411,
"all_permissive": false
} |
ansible_role | alaeddineboukhriss/angularproject | 3e0bf5e9489fcd827103001bed6e623b7f7f2cf0 | 0 | ansible/roles/docker-registry | 7,976 | [
"no_license"
] | [
{
"path": "ansible/roles/docker-registry/tasks/main.yml",
"content": "---\n# tasks file for docker\n- name: push image to hub\n shell: docker push alaboukhris/devops:latest",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 100
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 100,
"all_permissive": false
} |
ansible_role | tobbie/anisble-projects | 662a82f06c70a435249b43f124068fb31c3d79a9 | 1 | flask-web-mariadb-play/roles/python | 7,976 | [
"no_license"
] | [
{
"path": "flask-web-mariadb-play/roles/python/tasks/main.yml",
"content": "---\n# tasks file for python\n - name: Install all required dependencies\n dnf:\n name: '{{ item }}'\n state: present\n with_items:\n - python\n - python-setuptools\n -... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 293,
"all_permissive": false
} |
ansible_role | ritarock/dotfiles | 5875d6129d681190f0d31b015a18fd966151afb3 | 0 | roles/configs | 7,976 | [
"no_license"
] | [
{
"path": "roles/configs/files/zsh/.zshrc",
"content": "eval \"$(starship init zsh)\"\neval \"$(sheldon source)\"\n\nbindkey -v\n\nHISTSIZE=100000\nSAVEHIST=100000\n\nZSH_DIR=\"${HOME}/.config/zsh\"\n\nif [ -d $ZSH_DIR ] && [ -r $ZSH_DIR ] && [ -x $ZSH_DIR ]; then\n for file in ${ZSH_DIR}/*.zsh; do\n [ ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 15,
"total_bytes": 10864,
"all_permissive": false
} |
ansible_role | ritarock/dotfiles | 5875d6129d681190f0d31b015a18fd966151afb3 | 0 | roles/homebrew | 7,976 | [
"no_license"
] | [
{
"path": "roles/homebrew/defaults/main.yml",
"content": "job: false\nextra: false\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 24
},
{
"path": "roles/homebrew/tasks/main.yml",
"content": "---\n - name: brew update & upgrade\n community.general.homebre... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 899,
"all_permissive": false
} |
ansible_role | ritarock/dotfiles | 5875d6129d681190f0d31b015a18fd966151afb3 | 0 | roles/homebrew_cask | 7,976 | [
"no_license"
] | [
{
"path": "roles/homebrew_cask/vars/main.yml",
"content": "brew_cask_packages:\n - alacritty\n - docker\n - font-jetbrains-mono\n - fuwari # スクリーンショットを付箋にする\n - google-chrome\n - google-japanese-ime\n - notion\n - obsidian\n - postman\n - raycast\n - visual-studio-code\n\nbrew_job_cask_packages:\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 937,
"all_permissive": false
} |
ansible_role | mhemeryck/evok2mqtt-ansible | 2dc32bde56067686aebfdc73bfaeaadf9acbcd9b | 0 | roles/account | 7,976 | [
"no_license"
] | [
{
"path": "roles/account/tasks/main.yaml",
"content": "---\n- name: add my own user\n become: yes\n user:\n name: \"{{ username }}\"\n groups: \"sudo\"\n shell: \"/bin/bash\"\n state: present\n- name: allow user passwordless sudo\n become: yes\n lineinfile:\n path: \"/etc/sudoers.d/{{ use... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 527,
"all_permissive": false
} |
ansible_role | mhemeryck/evok2mqtt-ansible | 2dc32bde56067686aebfdc73bfaeaadf9acbcd9b | 0 | roles/evok2mqtt | 7,976 | [
"no_license"
] | [
{
"path": "roles/evok2mqtt/handlers/main.yaml",
"content": "---\n- name: start evok2mqtt service\n become: yes\n systemd:\n name: evok2mqtt\n state: started\n daemon_reload: yes\n enabled: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 140
},
{
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1032,
"all_permissive": false
} |
ansible_role | mhemeryck/evok2mqtt-ansible | 2dc32bde56067686aebfdc73bfaeaadf9acbcd9b | 0 | roles/hostname | 7,976 | [
"no_license"
] | [
{
"path": "roles/hostname/tasks/main.yaml",
"content": "---\n- name: Load mapping from external file\n include_vars:\n file: hostnames.yaml\n name: names\n- name: Update hostname based on host\n become: yes\n hostname:\n name: \"{{ names[ansible_host] }}\"\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 203,
"all_permissive": false
} |
ansible_role | mhemeryck/evok2mqtt-ansible | 2dc32bde56067686aebfdc73bfaeaadf9acbcd9b | 0 | roles/security | 7,976 | [
"no_license"
] | [
{
"path": "roles/security/tasks/main.yaml",
"content": "---\n- name: disable password-based login\n become: yes\n lineinfile:\n path: /etc/ssh/sshd_config\n regexp: \"^(#)?{{ item }}\"\n line: \"{{ item }} no\"\n loop:\n - ChallengeResponseAuthentication\n - PasswordAuthentication\n - P... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 764,
"all_permissive": false
} |
ansible_role | mhemeryck/evok2mqtt-ansible | 2dc32bde56067686aebfdc73bfaeaadf9acbcd9b | 0 | roles/wifi | 7,976 | [
"no_license"
] | [
{
"path": "roles/wifi/tasks/main.yaml",
"content": "---\n- name: calculate salted wpa passphrase\n become: yes\n shell: |\n set -o pipefail && echo \"{{ wifi_passphrase|quote }}\" | wpa_passphrase \"{{ wifi_ssd|quote }}\"\n args:\n executable: /bin/bash\n register: wpa_pass_output\n changed_when:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1187,
"all_permissive": false
} |
ansible_role | shashang13/jenkins | 58171064a5de03f2be0e8ecb6910f9de317e0a04 | 0 | roles/jenkins-jobs | 7,976 | [
"no_license"
] | [
{
"path": "roles/jenkins-jobs/tasks/main.yml",
"content": "- name: Check Jenkins Connection\n shell: \"{{ JENKINS_CLI_PREFIX }} who-am-i\"\n\n- name: Create Jenkins folder Job\n ansible.builtin.include_tasks:\n file: folders-job.yml\n loop:\n - {name: \"CI-Pipelines\", description: \"ALL CI Pipelin... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1735,
"all_permissive": false
} |
ansible_role | filex5/robertfil.pl | b65eae31c9e03274242e050079a74eccbfa339d1 | 0 | roles/jenkins.autoinstall | 7,976 | [
"no_license"
] | [
{
"path": "roles/jenkins.autoinstall/defaults/main.yml",
"content": "---\n# defaults file for jenkins.autoinstall",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 43
},
{
"path": "roles/jenkins.autoinstall/handlers/main.yml",
"content": "---\n# handlers file for... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 949,
"all_permissive": false
} |
ansible_role | filex5/robertfil.pl | b65eae31c9e03274242e050079a74eccbfa339d1 | 0 | roles/nginx | 7,976 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "- name: Add repository Nginx\n yum_repository:\n name: nginx\n description: Nginx\n baseurl: http://nginx.org/packages/centos/$releasever/$basearch/\n gpgkey: https://nginx.org/keys/nginx_signing.key\n gpgcheck: yes\n- name: Install Nginx\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1621,
"all_permissive": false
} |
ansible_role | filex5/robertfil.pl | b65eae31c9e03274242e050079a74eccbfa339d1 | 0 | roles/postgreSQL | 7,976 | [
"no_license"
] | [
{
"path": "roles/postgreSQL/handlers/main.yml",
"content": "---\n# handlers file for postgreSQL\n- name: Restart bazy PostgreSQL\n service:\n name: postgresql\n state: restarted\n become: true",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 132
},
{
"path": "... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1388,
"all_permissive": false
} |
ansible_role | kodal035/Ansible-Roles-Galaxy-and-SlackMessageIntegration | ef803f9afc3f61137debd22f01c0c4af9fdf00eb | 0 | ansible/roles/apache | 7,976 | [
"no_license"
] | [
{
"path": "ansible/roles/apache/tasks/main.yml",
"content": "- name: installing apache\n yum:\n name: httpd\n state: latest\n\n- name: index.html\n copy:\n content: \"<h1>Hello, Mr. Abdullah-KODAL</h1>\"\n dest: /var/www/html/index.html\n\n- name: restart apache2\n service:\n name: httpd\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 269,
"all_permissive": false
} |
ansible_role | adkbhoje/tomcat-centos-6-repo4 | 0e491acdefe35e3c7db50b92bed42aede506121e | 0 | roles/selinux | 7,976 | [
"no_license"
] | [
{
"path": "roles/selinux/tasks/main.yml",
"content": "---\n\n##Download and install EPE for Centos/RHEL version 6\n\n- name: Download EPEL Repo - Centos/RHEL6\n get_url: url=http://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm dest=/tmp/epel-release-latest-6.noarch.rpm\n when: \"ansible_o... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 988,
"all_permissive": false
} |
ansible_role | masaki-furuta/openshift-sno-automation-ansible | a600ba4df169aea258520f456d112fb54fff9058 | 1 | roles/base_setup | 8,096 | [
"permissive"
] | [
{
"path": "roles/base_setup/tasks/main.yaml",
"content": "---\n- name: Enable RPMFusion free repository\n ansible.builtin.dnf:\n name: \"https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ ansible_facts['distribution_major_version'] }}.noarch.rpm\"\n state: present\n disable_gpg_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 5297,
"all_permissive": true
} |
ansible_role | masaki-furuta/openshift-sno-automation-ansible | a600ba4df169aea258520f456d112fb54fff9058 | 1 | roles/common | 8,096 | [
"permissive"
] | [
{
"path": "roles/common/tasks/main.yaml",
"content": "---\n- name: Start timer\n include_tasks: timer_start.yaml\n\n# 必要に応じて他の共通処理を追加\n- name: End timer\n include_tasks: timer_end.yaml\n\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 128
},
... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1250,
"all_permissive": true
} |
ansible_role | masaki-furuta/openshift-sno-automation-ansible | a600ba4df169aea258520f456d112fb54fff9058 | 1 | roles/openshift_cli | 8,096 | [
"permissive"
] | [
{
"path": "roles/openshift_cli/tasks/main.yaml",
"content": "---\n- name: Ensure ~/.local/bin exists\n file:\n path: \"{{ ansible_env.HOME }}/.local/bin\"\n state: directory\n mode: '0755'\n\n- name: Download butane\n shell: |\n curl -fsSL https://mirror.openshift.com/pub/openshift-v4/x86_64/c... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2778,
"all_permissive": true
} |
ansible_role | masaki-furuta/openshift-sno-automation-ansible | a600ba4df169aea258520f456d112fb54fff9058 | 1 | roles/pre_install | 8,096 | [
"permissive"
] | [
{
"path": "roles/pre_install/tasks/generate_timestamp.yaml",
"content": "---\n- name: Generate timestamp variable and save to file\n set_fact:\n timestamp: \"{{ lookup('pipe', 'date +%Y-%m-%d_%H-%M-%S') }}\"\n delegate_to: localhost\n\n- name: Save timestamp to file\n copy:\n content: \"{{ timestam... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2514,
"all_permissive": true
} |
ansible_role | masaki-furuta/openshift-sno-automation-ansible | a600ba4df169aea258520f456d112fb54fff9058 | 1 | roles/sno_install | 8,096 | [
"permissive"
] | [
{
"path": "roles/sno_install/tasks/check_node_ready.yaml",
"content": "---\n# roles/sno_install/tasks/check_node_ready.yaml\n\n- name: Wait until cluster version becomes Available=True\n shell: |\n oc get clusterversion version -o jsonpath=\"{.status.conditions[?(@.type=='Available')].status}\" --kubeco... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 11414,
"all_permissive": true
} |
ansible_role | masaki-furuta/openshift-sno-automation-ansible | a600ba4df169aea258520f456d112fb54fff9058 | 1 | roles/virtualbox | 8,096 | [
"permissive"
] | [
{
"path": "roles/virtualbox/tasks/main.yaml",
"content": "---\n- name: List running VirtualBox VMs\n shell: VBoxManage list runningvms | awk '{print $1}' | tr -d '\"'\n register: running_vms\n changed_when: false\n\n- name: Stop all running VirtualBox VMs\n shell: VBoxManage controlvm \"{{ item }}\" pow... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3660,
"all_permissive": true
} |
ansible_role | gconfs/ansible | a237500c87363a712cdb1f6c70cb1d1b6261fe2f | 0 | roles/base | 8,096 | [
"no_license"
] | [
{
"path": "roles/base/files/etc/nginx/nginx.conf",
"content": "server {\n\tlisten 80 default_server;\n\tlisten [::]:80 default_server;\n\n\troot /var/www/html;\n\tindex index.html index.htm;\n\tserver_name _;\n\n\tlocation /.well-known {\n\t\talias /srv/letsencrypt/.well-known;\n\t}\n}\n",
"license_type... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 6595,
"all_permissive": false
} |
ansible_role | gconfs/ansible | a237500c87363a712cdb1f6c70cb1d1b6261fe2f | 0 | roles/gitit | 8,096 | [
"no_license"
] | [
{
"path": "roles/gitit/tasks/main.yml",
"content": "---\n\n- name: install packages\n package:\n name: nginx,gitit\n state: present\n\n- name: install nginx vhost for gitit\n copy:\n src: etc/nginx.conf\n dest: /etc/nginx/sites-enabled/gitit\n\n- name: install gitit configuration\n copy:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2537,
"all_permissive": false
} |
ansible_role | gconfs/ansible | a237500c87363a712cdb1f6c70cb1d1b6261fe2f | 0 | roles/jdmi | 8,096 | [
"no_license"
] | [
{
"path": "roles/jdmi/files/etc/nginx.conf",
"content": "server {\n\tlisten 80;\n\tlisten [::]:80;\n\tserver_name jdmi.gconfs.fr;\n\treturn 302 https://$server_name/$request_uri;\n}\n\nserver {\n\tlisten 443 ssl;\n\tlisten [::]:443 ssl;\n\tssl_certificate /etc/letsencrypt/live/gconfs.fr/fullchain.pem;\n\tss... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1291,
"all_permissive": false
} |
ansible_role | gconfs/ansible | a237500c87363a712cdb1f6c70cb1d1b6261fe2f | 0 | roles/old | 8,096 | [
"no_license"
] | [
{
"path": "roles/old/files/etc/nginx.conf",
"content": "server {\n\tlisten 80;\n\tlisten [::]:80;\n\tserver_name old.gconfs.fr;\n\n\tlocation / {\n\treturn 302 https://$server_name$request_uri;\n\t}\n}\n\nserver {\n\tlisten 443 ssl;\n\tlisten [::]:443 ssl;\n\tssl_certificate /etc/letsencrypt/live/gconfs.fr/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1532,
"all_permissive": false
} |
ansible_role | gconfs/ansible | a237500c87363a712cdb1f6c70cb1d1b6261fe2f | 0 | roles/pad | 8,096 | [
"no_license"
] | [
{
"path": "roles/pad/files/pad.nginx",
"content": "server {\n\tlisten 80;\n\tlisten [::]:80;\n\tserver_name pad.gconfs.fr;\n\treturn 302 https://$server_name/$request_uri;\n}\n\nserver {\n\tlisten 443 ssl;\n\tlisten [::]:443 ssl;\n\tssl_certificate /etc/letsencrypt/live/gconfs.fr/fullchain.pem;\n\tssl_certi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2841,
"all_permissive": false
} |
ansible_role | gconfs/ansible | a237500c87363a712cdb1f6c70cb1d1b6261fe2f | 0 | roles/passbolt | 8,096 | [
"no_license"
] | [
{
"path": "roles/passbolt/templates/etc/passbolt.php",
"content": "<?php\n\nreturn\n[\n\t'App' => [\n\t\t'fullBaseURL' => 'https://vault.gconfs.fr',\n\t],\n\n\t// Database configuration.\n\t'Datasources' => [\n\t\t'default' => [\n\t\t\t'host' => 'localhost',\n\t\t\t'username' => 'passbolt',\n\t\t\t'password... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4440,
"all_permissive": false
} |
ansible_role | gconfs/ansible | a237500c87363a712cdb1f6c70cb1d1b6261fe2f | 0 | roles/vault | 8,096 | [
"no_license"
] | [
{
"path": "roles/vault/tasks/main.yml",
"content": "---\n\n- name: create vault system group\n group:\n name: 'vault'\n system: true\n\n- name: create vault system user\n user:\n name: 'vault'\n system: true\n shell: '/sbin/nologin'\n group: 'vault'\n createhome: true\n home: '/var... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 291,
"all_permissive": false
} |
ansible_role | gconfs/ansible | a237500c87363a712cdb1f6c70cb1d1b6261fe2f | 0 | roles/website | 8,096 | [
"no_license"
] | [
{
"path": "roles/website/tasks/main.yml",
"content": "- name: install packages\n package:\n name: nginx,python3-pip,python3-venv,uwsgi,uwsgi-plugin-python3,default-libmysqlclient-dev,python3-setuptools\n state: present\n\n- name: install nginx vhost for django website\n copy:\n src: etc/nginx... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4393,
"all_permissive": false
} |
ansible_role | gconfs/ansible | a237500c87363a712cdb1f6c70cb1d1b6261fe2f | 0 | roles/wiki | 8,096 | [
"no_license"
] | [
{
"path": "roles/wiki/tasks/main.yml",
"content": "---\n\n- name: install dependencies\n apt:\n pkg:\n - nginx\n - mysql-common\n - php\n - php-tidy\n - php-gd\n - php-xml\n - php-mbstring\n - php-curl \n - php-mysql\n - php-fpm\n state: present\n\n- name: clone bookstac... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2505,
"all_permissive": false
} |
ansible_role | gunab5502/ansible | 773fc77900591d33f1db4b2ec1c0e6f73f0d4191 | 0 | roles/jenkins | 8,096 | [
"no_license"
] | [
{
"path": "roles/jenkins/tasks/main.yml",
"content": "--- \n- name: \"Check the OS details\"\n debug:\n msg: \"OS: {{ ansible_distribution }} {{ ansible_distribution_version }} ({{ ansible_distribution_release }})\"\n\n- name: \"Server update and upgrade\"\n apt:\n update_cache: yes\n upgrade: y... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1594,
"all_permissive": false
} |
ansible_role | agileek/docker-ansible | 8277dc1ba8cfd400de91f94bb2c5c5e44d7f906a | 16 | ansible/roles/locales | 8,096 | [
"no_license"
] | [
{
"path": "ansible/roles/locales/tasks/main.yml",
"content": "---\n- apt: pkg=locales state=latest\n- apt: pkg=language-pack-fr state=latest\n- command: /usr/sbin/update-locale creates=/etc/default/locale\n- copy: dest=/etc/locale.gen content=\"{{default_locale}} UTF-8\" mode=0644\n register: locale_gen\n-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 841,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.