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 | hsjhita1/QAProject2 | e46af4274ae7535ed8b1299b615830ddec4bf727 | 1 | roles/nginx | 405 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yaml",
"content": "---\n- name: 'NGINX'\n apt:\n name: nginx\n state: latest\n update_cache: true\n- name: 'Start NGINX'\n service:\n name: nginx\n state: started",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 151
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 151,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/apache | 405 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/main.yml",
"content": "- name: Installed\n apt:\n name: apache2\n update_cache: yes\n\n- name: Project directories exist\n file:\n path: \"/var/www/html/{{ item }}\"\n state: directory\n owner: www-data\n group: www-data\n with_items: \"{{ directories }}\"\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 548,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/backup-pruner | 405 | [
"no_license"
] | [
{
"path": "roles/backup-pruner/tasks/main.yml",
"content": "- name: Container is running\n docker_container:\n image: \"{{ image }}\"\n name: backup-pruner\n state: started\n privileged: yes\n network_mode: host\n env:\n OPTIMAL_COUNT_CONFIG: \"{{ optimalCountConfig }}\"\n STORA... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1238,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/docker | 405 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "- name: Check if Docker is installed\n command: dpkg-query -W docker-ce\n register: docker_check_deb\n failed_when: docker_check_deb.rc > 1\n changed_when: docker_check_deb.rc == 1\n\n- name: Download Docker\n get_url:\n url=\"{{ packageUrlBase }}... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 733,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/gitlab | 405 | [
"no_license"
] | [
{
"path": "roles/gitlab/defaults/main.yml",
"content": "ports:\n - \"11443:443\"\n - \"1180:80\"\n - \"1122:22\"\nbaseDir: /srv/gitlab\nbackup: {}\nbaseUrl: gitlab.example.com\nsmtp:\n hostname: mail.example.com\n domain: example.com\n port: 465\n user: <EMAIL>\n password: <PASSWORD>\n useTls: true... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4180,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/jenkins | 405 | [
"no_license"
] | [
{
"path": "roles/jenkins/templates/init.groovy.d/credentials.groovy",
"content": "import jenkins.model.*\nimport com.cloudbees.plugins.credentials.*\nimport com.cloudbees.plugins.credentials.domains.*\nimport com.cloudbees.plugins.credentials.impl.*\n\ndef jenkins = Jenkins.getInstance()\ndef domain = Domai... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3066,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/mail | 405 | [
"no_license"
] | [
{
"path": "roles/mail/tasks/main.yml",
"content": "- name: Admin user created\n shell: \"docker run -v /srv/mail/config:/tmp/docker-mailserver --entrypoint /usr/local/bin/addmailuser {{image}} {{item.user}}@{{domainname}} {{item.password}} || echo error\"\n no_log: true\n with_items: \"{{accounts}}\"\n\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 937,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/mc | 405 | [
"no_license"
] | [
{
"path": "roles/mc/tasks/main.yml",
"content": "- name: is installed\n apt:\n name: mc\n update_cache: yes",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 62
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 62,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/minio | 405 | [
"no_license"
] | [
{
"path": "roles/minio/tasks/main.yml",
"content": "- name: Buckets created\n file:\n path: \"{{ dataDirectory }}/{{ item }}\"\n state: directory\n with_items:\n \"{{ buckets }}\"\n\n- name: Container is running\n docker_container:\n image: \"{{ image }}\"\n name: minio\n state: started... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 619,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/pip | 405 | [
"no_license"
] | [
{
"path": "roles/pip/tasks/main.yml",
"content": "- name: Python pip installed\n apt:\n name: python-pip\n update_cache: yes",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 78
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 78,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/proxy | 405 | [
"no_license"
] | [
{
"path": "roles/proxy/files/docker/config/nginx.conf",
"content": "events {\n worker_connections 1024;\n}\n\nhttp {\n\tserver_names_hash_bucket_size 64;\n\tinclude includes/*.conf;\n client_max_body_size 8m;\n}",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 140
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 853,
"all_permissive": false
} |
ansible_role | pr83/dev-server | a335b15486f059521324a976aab9ec2478488bfb | 0 | roles/users | 405 | [
"no_license"
] | [
{
"path": "roles/users/tasks/main.yml",
"content": "- name: Users exist\n user:\n name: \"{{ item }}\"\n shell: \"/bin/bash\"\n with_items:\n \"{{ users }}\"\n\n- name: Users sudoers\n lineinfile:\n dest: /etc/sudoers\n state: present\n regexp: \"^{{ item }}\"\n line: \"{{ item }} A... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 314,
"all_permissive": false
} |
ansible_role | fumiya80/lecture-master | 69e157fadab2962451ee7a032a4b566ce58cbb8b | 0 | ansible/roles/01_yum | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/01_yum/tasks/main.yml",
"content": "- name: yum update\n become: yes\n yum: \n name: \"*\"\n state: latest\n\n- name: install tools\n become: yes\n yum:\n name:\n - git\n - gcc-c++\n - patch\n - bzip2\n - openssl-devel\n - libyaml-devel\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 490,
"all_permissive": false
} |
ansible_role | fumiya80/lecture-master | 69e157fadab2962451ee7a032a4b566ce58cbb8b | 0 | ansible/roles/02_ruby | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/02_ruby/tasks/main.yml",
"content": "---\n# rbenv------------------------------------------------------------\n- name: check rbenv install\n shell: bash -lc \"rbenv --version\"\n register: check_rbenv_installed\n changed_when: no\n ignore_errors: yes\n\n- name: install rbenv\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1361,
"all_permissive": false
} |
ansible_role | fumiya80/lecture-master | 69e157fadab2962451ee7a032a4b566ce58cbb8b | 0 | ansible/roles/03_bundler | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/03_bundler/tasks/main.yml",
"content": "---\n- name: check bundler install\n shell: /home/ec2-user/.rbenv/shims/bundler --version\n register: check_bundler_installed\n changed_when: no\n ignore_errors: yes\n\n- name: install bundler\n gem: \n name: bundler\n version: \"{{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 364,
"all_permissive": false
} |
ansible_role | fumiya80/lecture-master | 69e157fadab2962451ee7a032a4b566ce58cbb8b | 0 | ansible/roles/04_rails | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/04_rails/tasks/main.yml",
"content": "---\n- name: check rails install\n shell: bash -lc \"gem list -e rails | grep {{ rails_version }}\"\n register: check_rails_installed\n changed_when: no\n ignore_errors: yes\n\n- name: install rails\n gem:\n name: rails\n version: \"{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 358,
"all_permissive": false
} |
ansible_role | fumiya80/lecture-master | 69e157fadab2962451ee7a032a4b566ce58cbb8b | 0 | ansible/roles/05_node | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/05_node/tasks/main.yml",
"content": "---\n- name: check node install\n shell: bash -lc \"node --version | grep {{ node_version }}\"\n register: check_node_installed\n changed_when: no\n ignore_errors: yes\n\n- name: install nvm\n ansible.builtin.shell: >\n curl -o- https://r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 506,
"all_permissive": false
} |
ansible_role | fumiya80/lecture-master | 69e157fadab2962451ee7a032a4b566ce58cbb8b | 0 | ansible/roles/06_yarn | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/06_yarn/tasks/main.yml",
"content": "---\n- name: check yarn installed\n shell: bash -lc \"yarn --version | grep {{ yarn_version }}\"\n register: check_yarn_installed\n changed_when: no\n ignore_errors: yes\n\n- name: install yarn\n shell: bash -lc \"npm install --global yarn@{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 293,
"all_permissive": false
} |
ansible_role | fumiya80/lecture-master | 69e157fadab2962451ee7a032a4b566ce58cbb8b | 0 | ansible/roles/07_mysql | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/07_mysql/tasks/main.yml",
"content": "---\n- name: Remove MariaDB\n become: true\n yum:\n name: mariadb-libs\n state: absent\n\n- name: Install MySQL\n become: true\n yum:\n name: 'https://repo.mysql.com//mysql80-community-release-el7-7.noarch.rpm'\n state: present\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 628,
"all_permissive": false
} |
ansible_role | fumiya80/lecture-master | 69e157fadab2962451ee7a032a4b566ce58cbb8b | 0 | ansible/roles/08_app | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/08_app/tasks/main.yml",
"content": "---\n- name: git clone app\n become: true\n git: \n repo: https://github.com/yuta-ushijima/raisetech-live8-sample-app.git\n dest: \"{{ sample_app_dir }}\"\n force: yes\n register: git_clone\n\n- name: bundle install\n shell: bash -lc ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1137,
"all_permissive": false
} |
ansible_role | fumiya80/lecture-master | 69e157fadab2962451ee7a032a4b566ce58cbb8b | 0 | ansible/roles/09_nginx | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/09_nginx/templates/rails.conf.j2",
"content": "client_max_body_size 2G;\n\n\nupstream unicorn {\n server unix://var/www/raisetech-live8-sample-app/unicorn.sock;\n}\n\n\nserver {\n listen 80;\n server_name {{ aws_ec2_host }};\n keepalive_timeout 5;\n access_log /var/log/nginx/ac... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1447,
"all_permissive": false
} |
ansible_role | balves7/descomplicando_ansible | 40cfb5b1792c9adc07e9ed4aca343e7d7df8a82a | 0 | day6/projeto-k8s-cluster/deploy-app-v1/roles/deploy-app | 405 | [
"no_license"
] | [
{
"path": "day6/projeto-k8s-cluster/deploy-app-v1/roles/deploy-app/tasks/deploy-app.yml",
"content": "- name: Criando o diretorio da app Bangu\n file: path={{ item }} state=directory\n with_items: \n - /opt/bangu\n - /opt/bangu/logs\n - /opt/bangu/conf\n register: criando_diretorios\n\n- name: C... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1954,
"all_permissive": false
} |
ansible_role | balves7/descomplicando_ansible | 40cfb5b1792c9adc07e9ed4aca343e7d7df8a82a | 0 | day6/projeto-k8s-cluster/deploy-app-v2/roles/deploy-app-v2 | 405 | [
"no_license"
] | [
{
"path": "day6/projeto-k8s-cluster/deploy-app-v2/roles/deploy-app-v2/templates/app-v2.yml.j2",
"content": "apiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: bangu-v2\nspec:\n replicas: {{ number_replicas_new_version }}\n selector:\n matchLabels:\n app: bangu\n template:\n metadata:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2409,
"all_permissive": false
} |
ansible_role | balves7/descomplicando_ansible | 40cfb5b1792c9adc07e9ed4aca343e7d7df8a82a | 0 | day6/projeto-k8s-cluster/provisioning/roles/criando-instancias | 405 | [
"no_license"
] | [
{
"path": "day6/projeto-k8s-cluster/provisioning/roles/criando-instancias/tasks/provisioning.yml",
"content": "- name: Criando o Security Group BanguLAB\n local_action: \n module: ec2_group\n name: \"{{ sec_group_name }}\"\n description: sg bangu \n profile: \"{{ profile }}\"\n region: \"{{ ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3441,
"all_permissive": false
} |
ansible_role | roboshopsarthak/roboshop-ansible | 58249d87fd5c5ecbcaf2db771ab0e4fa07a9d7b6 | 0 | roles/cart | 406 | [
"no_license"
] | [
{
"path": "roles/cart/tasks/main.yml",
"content": "# - name: Load Nodejs\r\n# ansible.builtin.include_role:\r\n# name: common\r\n# tasks_from: nodejs.yml\r\n\r\n- name: Install Docker\r\n ansible.builtin.include_role:\r\n name: common\r\n tasks_from: docker\r\n\r\n- name: Start app containe... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 975,
"all_permissive": false
} |
ansible_role | roboshopsarthak/roboshop-ansible | 58249d87fd5c5ecbcaf2db771ab0e4fa07a9d7b6 | 0 | roles/catalogue | 406 | [
"no_license"
] | [
{
"path": "roles/catalogue/tasks/main.yml",
"content": "# - name: Load Nodejs\r\n# ansible.builtin.include_role:\r\n# name: common\r\n# tasks_from: nodejs.yml\r\n\r\n# - name: Copy Mongodb repo file\r\n# ansible.builtin.copy:\r\n# src: mongo.repo\r\n# dest: /etc/yum.repos.d/mongo.repo\r\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2166,
"all_permissive": false
} |
ansible_role | roboshopsarthak/roboshop-ansible | 58249d87fd5c5ecbcaf2db771ab0e4fa07a9d7b6 | 0 | roles/common | 406 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "- name: Set Prompt\r\n ansible.builtin.shell: set-prompt {{ component }}-{{ env }}\r\n\r\n- name: Increase disk partition\r\n ansible.builtin.shell: \"growpart /dev/xvda 4\"\r\n ignore_errors: true\r\n\r\n- name: Extend LV Size\r\n ansible.builtin.she... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 357,
"all_permissive": false
} |
ansible_role | roboshopsarthak/roboshop-ansible | 58249d87fd5c5ecbcaf2db771ab0e4fa07a9d7b6 | 0 | roles/frontend | 406 | [
"no_license"
] | [
{
"path": "roles/frontend/tasks/main.yml",
"content": "# - name: Disable default Nginx\r\n# ansible.builtin.shell: dnf module disable nginx -y\r\n\r\n# - name: Enable Nginx 24 version\r\n# ansible.builtin.shell: dnf module enable nginx:1.24 -y\r\n\r\n# - name: Install Nginx\r\n# ansible.builtin.dnf:\r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3268,
"all_permissive": false
} |
ansible_role | roboshopsarthak/roboshop-ansible | 58249d87fd5c5ecbcaf2db771ab0e4fa07a9d7b6 | 0 | roles/payment | 406 | [
"no_license"
] | [
{
"path": "roles/payment/tasks/main.yml",
"content": "# - name: Load Python setup\r\n# ansible.builtin.include_role:\r\n# name: common\r\n# tasks_from: python_setup.yml\r\n\r\n- name: Install Docker\r\n ansible.builtin.include_role:\r\n name: common\r\n tasks_from: docker\r\n\r\n- name: Sta... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1648,
"all_permissive": false
} |
ansible_role | roboshopsarthak/roboshop-ansible | 58249d87fd5c5ecbcaf2db771ab0e4fa07a9d7b6 | 0 | roles/shipping | 406 | [
"no_license"
] | [
{
"path": "roles/shipping/tasks/main.yml",
"content": "# - name: Load Moven\r\n# ansible.builtin.include_role:\r\n# name: common\r\n# tasks_from: maven_setup.yml\r\n\r\n# - name: Install Mysql Server\r\n# ansible.builtin.dnf:\r\n# name: mysql\r\n# state: installed\r\n\r\n# - name: Load t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2588,
"all_permissive": false
} |
ansible_role | roboshopsarthak/roboshop-ansible | 58249d87fd5c5ecbcaf2db771ab0e4fa07a9d7b6 | 0 | roles/user | 406 | [
"no_license"
] | [
{
"path": "roles/user/tasks/main.yml",
"content": "# - name: Load Nodejs\r\n# ansible.builtin.include_role:\r\n# name: common\r\n# tasks_from: nodejs.yml\r\n\r\n- name: Install Docker\r\n ansible.builtin.include_role:\r\n name: common\r\n tasks_from: docker\r\n\r\n- name: Start app containe... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 945,
"all_permissive": false
} |
ansible_role | nlevchuk/deploy_by_ansible | 7138819d7cdadf1f6f27516a5877f5602c64da00 | 0 | roles/app | 406 | [
"no_license"
] | [
{
"path": "roles/app/tasks/systemd.yml",
"content": "---\n\n- name: copy systemd config files\n template:\n src: 'etc/systemd/system/{{ item }}.service.j2'\n dest: '/etc/systemd/system/{{ item }}.service'\n owner: 'root'\n group: 'root'\n mode: '0644'\n with_items:\n - unicorn\n - thi... | {
"task_files": 6,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 6423,
"all_permissive": false
} |
ansible_role | n7nightwing/ffxiv-app | 27e1ec3de5bac1a54ae763c24e748af46c8f9051 | 0 | ansible/roles/web | 406 | [
"no_license"
] | [
{
"path": "ansible/roles/web/tasks/dependencies.yml",
"content": "---\n - name: install python, python tools, nginx\n apt: name={{ item }}\n with_items:\n - python3.6\n - python3-pip\n - build-essential\n - python-dev\n - nginx\n\n - name: install python de... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 421,
"all_permissive": false
} |
ansible_role | mehdiabd02/ansible_tutoriel | 24480ba0ef113c8aa130ddd9444c9614cbacc9b8 | 0 | roles/base | 406 | [
"no_license"
] | [
{
"path": "roles/base/tasks/main.yml",
"content": "- name: Add SSH key for simone\n tags: always\n authorized_key:\n user: simone\n key: \"<KEY>\"\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 99
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 99,
"all_permissive": false
} |
ansible_role | mehdiabd02/ansible_tutoriel | 24480ba0ef113c8aa130ddd9444c9614cbacc9b8 | 0 | roles/db_servers | 406 | [
"no_license"
] | [
{
"path": "roles/db_servers/tasks/main.yml",
"content": "- name: Install MariaDB package (Kali)\n tags: kali, db, mariadb\n apt:\n name: mariadb-server\n state: latest\n when: ansible_distribution == \"Kali\"\n\n- name: Install MariaDB package (Ubuntu)\n tags: db, mariadb, ubuntu\n apt:\n name... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 315,
"all_permissive": false
} |
ansible_role | mehdiabd02/ansible_tutoriel | 24480ba0ef113c8aa130ddd9444c9614cbacc9b8 | 0 | roles/web_servers | 406 | [
"no_license"
] | [
{
"path": "roles/web_servers/tasks/main.yml",
"content": "- name: Install Apache and PHP for Ubuntu\n tags: apache, apache2, ubuntu \n apt:\n name: \n - apache2\n - libapache2-mod-php\n state: latest \n when: ansible_distribution == \"Ubuntu\"\n\n- name: Install Apache and PHP for Kali\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1115,
"all_permissive": false
} |
ansible_role | Hug0Ribeir0/AnsibleDeploys | bbd57028830a7f0564882dd7284b318c57590499 | 0 | roles/configurations | 406 | [
"no_license"
] | [
{
"path": "roles/configurations/tasks/main.yml",
"content": "- name: Install Python\n yum:\n name: python3.9\n become: yes\n\n- name: Install OpenJDK\n yum:\n name: java-latest-openjdk.x86_64\n become: yes\n\n- name: Install JavaSE\n yum:\n name: java-latest-openjdk.x86_64\n become: yes\n\n- ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 278,
"all_permissive": false
} |
ansible_role | Hug0Ribeir0/AnsibleDeploys | bbd57028830a7f0564882dd7284b318c57590499 | 0 | roles/echotest | 406 | [
"no_license"
] | [
{
"path": "roles/echotest/tasks/main.yml",
"content": "- name: Echo\n shell: echo \"ola\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 33
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 33,
"all_permissive": false
} |
ansible_role | Hug0Ribeir0/AnsibleDeploys | bbd57028830a7f0564882dd7284b318c57590499 | 0 | roles/postgres | 406 | [
"no_license"
] | [
{
"path": "roles/postgres/tasks/tasks.yml",
"content": "- name: Add PostgreSQL Yum Repository\n dnf: \n name: \n - https://download.postgresql.org/pub/repos/yum/reporpms/F-35-x86_64/pgdg-fedora-repo-latest.noarch.rpm\n - postgresql11-server\n - postgresql11\n become: yes\n\n#- name: Inst... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1202,
"all_permissive": false
} |
ansible_role | Hug0Ribeir0/AnsibleDeploys | bbd57028830a7f0564882dd7284b318c57590499 | 0 | roles/test | 406 | [
"no_license"
] | [
{
"path": "roles/test/tasks/main.yml",
"content": "- name: test\n shell: echo \"ola\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 33
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 33,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Compute_Etcd | 406 | [
"no_license"
] | [
{
"path": "roles/Compute_Etcd/tasks/main.yml",
"content": "# Installation of ETCD\n - name: Installation of ETCD in Compute (CentOS)\n yum:\n name: etcd\n state: present\n\n - name: Configuration of ETCD in Compute (CentOS)\n blockinfile:\n path: /etc/etcd/etcd.conf\n bl... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1023,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Compute_Memcached | 406 | [
"no_license"
] | [
{
"path": "roles/Compute_Memcached/tasks/main.yml",
"content": "# Installation of Memcached\n - name: Installation of Memcached in Compute (CentOS)\n yum:\n name:\n - memcached\n - python-memcached\n\n - name: Enable and Start Memcached in Compute (CentOS)\n systemd:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 308,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Compute_MessageQueue | 406 | [
"no_license"
] | [
{
"path": "roles/Compute_MessageQueue/tasks/main.yml",
"content": "# Installation of Message Queue\n - name: Installation of Message Queue (RabbitMQ-Server) in Compute (CentOS)\n yum:\n name: rabbitmq-server\n state: present\n\n - name: Remove OpenStack as User for Message Queue in Compu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 888,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Compute_NTP | 406 | [
"no_license"
] | [
{
"path": "roles/Compute_NTP/tasks/main.yml",
"content": "# Installation of NTP\n - name: Installation of NTP (Chrony) in Compute (CentOS)\n yum:\n name: chrony\n state: present\n\n - name: Enable and Start NTP in Compute (CentOS)\n systemd:\n name: chronyd.service\n stat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 277,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Compute_OpenStackPack | 406 | [
"no_license"
] | [
{
"path": "roles/Compute_OpenStackPack/tasks/main.yml",
"content": "# Installation of OpenStack Packages\n - name: Installation of OpenStack Train Release in Compute (CentOS)\n yum:\n name: centos-release-openstack-train\n state: present\n\n - name: Upgrade Packages (CentOS)\n yum:\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 466,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Compute_Pre-requisite | 406 | [
"no_license"
] | [
{
"path": "roles/Compute_Pre-requisite/tasks/main.yml",
"content": "# Prerequisites\n - name: Adding the EPEL Repository to Compute (CentOS)\n yum:\n name:\n - epel-release\n - python34\n - python-devel\n - gcc\n state: present\n\n - name: Enabling EPE... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 465,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Compute_SQL | 406 | [
"no_license"
] | [
{
"path": "roles/Compute_SQL/tasks/main.yml",
"content": "# Installation of MySQL and MariaDB Server\n - name: Installation of MySQL and MariaDB Server in Compute (CentOS)\n yum:\n name:\n - mariadb\n - mariadb-server\n - python2-PyMySQL\n\n - name: Configuration of MyS... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 552,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Controller_Etcd | 406 | [
"no_license"
] | [
{
"path": "roles/Controller_Etcd/tasks/main.yml",
"content": "# Installation of ETCD\n - name: Installation of ETCD in Controller (Ubuntu)\n apt:\n name: etcd\n state: present\n\n - name: Configuration of ETCD in Controller (Ubuntu)\n template:\n src: roles/Controller_Etcd/temp... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 424,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Controller_Memcached | 406 | [
"no_license"
] | [
{
"path": "roles/Controller_Memcached/tasks/main.yml",
"content": "# Installation of Memcached\n - name: Installation of Memcached in Controller (Ubuntu)\n apt:\n name:\n - memcached\n - python3-memcache\n state: present\n\n - name: Creation of Configuration of Memcache... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 537,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Controller_MessageQueue | 406 | [
"no_license"
] | [
{
"path": "roles/Controller_MessageQueue/tasks/main.yml",
"content": "# Installation of Message Queue\n - name: Installation of Message Queue (RabbitMQ-Server) in Controller (Ubuntu)\n apt:\n name: rabbitmq-server\n state: present\n\n - name: Remove OpenStack as User for Message Queue in... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 743,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Controller_NTP | 406 | [
"no_license"
] | [
{
"path": "roles/Controller_NTP/tasks/main.yml",
"content": "# Installation of NTP\n - name: Install NTP (Chrony) in Controller (Ubuntu)\n apt:\n name: chrony\n state: present\n\n - name: Enable and Start NTP in Controller (Ubuntu)\n systemd:\n name: chrony\n state: resta... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 264,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Controller_OpenStackPack | 406 | [
"no_license"
] | [
{
"path": "roles/Controller_OpenStackPack/tasks/main.yml",
"content": "# Installation of OpenStack Packages \n - name: Installation of OpenStack Client in Controller (Ubuntu)\n apt:\n name: python3-openstackclient\n state: present\n\n",
"license_type": "no_license",
"detected_licen... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 175,
"all_permissive": false
} |
ansible_role | TuRonnDraco/CPE232_Act13_Seruelas | ff366088f006f699cea21c6fc8cd56d0a54e54af | 0 | roles/Controller_SQL | 406 | [
"no_license"
] | [
{
"path": "roles/Controller_SQL/tasks/main.yml",
"content": "# Installation of SQL Database\n - name: Installation of MariaDB and MySQL in Controller (Ubuntu)\n apt:\n name:\n - mariadb-server\n - python3-pymysql\n state: present\n\n - name: Creation of Configuration of... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 963,
"all_permissive": false
} |
ansible_role | igia/igia-docs | af84436c0c01f9ff62fbd98d40acb3bf443a97a0 | 3 | ansible/roles/components | 406 | [
"no_license"
] | [
{
"path": "ansible/roles/components/templates/components.md.j2",
"content": "---\nid: components\ntitle: igia Components\nsidebar_label: Component List\n---\n\n{% for component in project_list | sort(attribute='name') %}\n\n## {{ component.name }}\n\n{{ component.description }}\n\n{% if docs_path+'/'+compon... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 12163,
"all_permissive": false
} |
ansible_role | 3ka5-cat/totd_bot | 1bf0f1718e93aa4f8677f7b1a408bd01fa34d2c5 | 0 | ansible/roles/app | 406 | [
"no_license"
] | [
{
"path": "ansible/roles/app/meta/main.yml",
"content": "---\ndependencies: [ ]\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 22
},
{
"path": "ansible/roles/app/tasks/install-setfacl-Debian.yml",
"content": "---\n- name: install setfacl support\n become: y... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2162,
"all_permissive": false
} |
ansible_role | c00k133/ansible | de1c44891313e01a9240ca1639186d0518b952ee | 0 | roles/calibre | 406 | [
"no_license"
] | [
{
"path": "roles/calibre/tasks/template-apache2.yml",
"content": "---\n# NOTE: The Apache configuration on the server may differ.\n# When certificates are created with certbot, it is automatically altered to use the correct certificates.\n- name: Enable the Apache HTTP server for Calibre \"{{ calibre_... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4202,
"all_permissive": false
} |
ansible_role | c00k133/ansible | de1c44891313e01a9240ca1639186d0518b952ee | 0 | roles/git-project-setup | 406 | [
"no_license"
] | [
{
"path": "roles/git-project-setup/templates/post-receive.j2",
"content": "#!/bin/bash\n\nTARGET=\"{{ git_destination }}\"\nGIT_DIR=\"{{ git_directory }}\"\nBRANCH=\"master\"\n\nwhile read oldrev newrev ref; do\n if [[ $ref = refs/heads/$BRANCH ]]; then\n echo \"Ref $ref received. Deploying $BRANC... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1159,
"all_permissive": false
} |
ansible_role | c00k133/ansible | de1c44891313e01a9240ca1639186d0518b952ee | 0 | roles/nextcloud | 406 | [
"no_license"
] | [
{
"path": "roles/nextcloud/templates/etc_apache2_sites-available_nextcloud.j2",
"content": "<VirtualHost *:80>\n ServerName nextcloud.neergaard.dev\n\n ServerAdmin <EMAIL>\n\n ErrorLog /var/log/apache2/domains/nextcloud.neergaard.dev-error.log\n CustomLog /var/log/apache2/domains/nextcloud.neerg... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2163,
"all_permissive": false
} |
ansible_role | c00k133/ansible | de1c44891313e01a9240ca1639186d0518b952ee | 0 | roles/openwrt | 406 | [
"no_license"
] | [
{
"path": "roles/openwrt/tasks/opkg-update.yml",
"content": "---\n- name: Perform opkg update\n raw: opkg update\n register: opkg_update_done\n when: opkg_update_done is undefined\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 118
},
{
"path": "roles/openwrt/... | {
"task_files": 10,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 11,
"total_bytes": 3695,
"all_permissive": false
} |
ansible_role | c00k133/ansible | de1c44891313e01a9240ca1639186d0518b952ee | 0 | roles/password-database | 406 | [
"no_license"
] | [
{
"path": "roles/password-database/vars/keeweb.yml",
"content": "keeweb_archive_source: https://github.com/keeweb/keeweb/archive/gh-pages.zip\nkeeweb_host_destination: /var/www/pass.neergaard.dev/keeweb\nkeeweb_config_filename: kw-config.js\n",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 4890,
"all_permissive": false
} |
ansible_role | c00k133/ansible | de1c44891313e01a9240ca1639186d0518b952ee | 0 | roles/radicale | 406 | [
"no_license"
] | [
{
"path": "roles/radicale/tasks/include-vars.yml",
"content": "---\n- name: Load variables\n include_vars: \"{{ item }}\"\n with_first_found:\n - \"radicale.yml\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 97
},
{
"path": "roles/radicale/tasks/create-do... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 3239,
"all_permissive": false
} |
ansible_role | c00k133/ansible | de1c44891313e01a9240ca1639186d0518b952ee | 0 | roles/syncthing | 406 | [
"no_license"
] | [
{
"path": "roles/syncthing/defaults/main.yml",
"content": "---\nsyncthing_image: ghcr.io/linuxserver/syncthing\nsyncthing_config_dir: /etc/syncthing\nsyncthing_data_dir_root: /var/opt/syncthing\nsyncthing_volumes:\n - \"{{ syncthing_config_dir }}:/config\"\n - \"{{ syncthing_data_dir_root }}/data1:/data1\... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1751,
"all_permissive": false
} |
ansible_role | c00k133/ansible | de1c44891313e01a9240ca1639186d0518b952ee | 0 | roles/wallabag | 406 | [
"no_license"
] | [
{
"path": "roles/wallabag/templates/etc_apache2_sites-available_wallabag.j2",
"content": "<VirtualHost *:80>\n ServerName wallabag.neergaard.dev\n\n ServerAdmin <EMAIL>\n\n ErrorLog /var/log/apache2/domains/wallabag.neergaard.dev-error.log\n CustomLog /var/log/apache2/domains/wallabag.neergaard.... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2199,
"all_permissive": false
} |
ansible_role | yangjtAWS/Ansible | 817319883420c2e6de1f38e08b105b4dd314d7a0 | 0 | roles/nodejs | 406 | [
"no_license"
] | [
{
"path": "roles/nodejs/tasks/main.yml",
"content": "---\n# tasks file for nodejs\n\n- name: Installing node and npm\n become: yes \n shell: yum clean all\n ignore_errors: True\n\n- name: Installing node and npm\n become: yes \n shell: yum -y install nodejs\n ignore_errors: True\n ",
"license_t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 226,
"all_permissive": false
} |
ansible_role | Shh25/Ansible-Devops | 60744e62e8e7573fb12e2e7984696cdb7b23feb4 | 0 | ansible-srv/roles/checkbox | 406 | [
"no_license"
] | [
{
"path": "ansible-srv/roles/checkbox/templates/main.yml",
"content": "- name: Install Checkbox from repository\n git:\n repo: \"{{ checkbox_repo }}\"\n dest: \"{{ checkbox_dest }}\"\n\n- name: Add nginx default file for checkbox location\n shell: cp /checkbox/local-conf/default /etc/nginx/sites-ava... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1256,
"all_permissive": false
} |
ansible_role | Shh25/Ansible-Devops | 60744e62e8e7573fb12e2e7984696cdb7b23feb4 | 0 | ansible-srv/roles/deploy | 406 | [
"no_license"
] | [
{
"path": "ansible-srv/roles/deploy/templates/checkbox.yml",
"content": "---\n- hosts: localhost\n connection: local\n gather_facts: False\n environment:\n DO_API_TOKEN: \"{{API_TOKEN}}\" \n \n vars_files:\n - ./variables.yml\n \n tasks:\n - name: Generate ssh key\n command : ssh-keyg... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 5569,
"all_permissive": false
} |
ansible_role | Shh25/Ansible-Devops | 60744e62e8e7573fb12e2e7984696cdb7b23feb4 | 0 | ansible-srv/roles/fuzzer | 406 | [
"no_license"
] | [
{
"path": "ansible-srv/roles/fuzzer/files/fuzzer_script.py",
"content": "#!/usr/bin/python\n\nimport sys\nimport os, fnmatch\nimport random\n\n# random.seed(233)\n\nitrustPath = sys.argv[1]\n\ndef getFilesByPattern(pattern, directoryPath) :\n result = []\n for root, dirs, files in os.walk(directoryPat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 6122,
"all_permissive": false
} |
ansible_role | Shh25/Ansible-Devops | 60744e62e8e7573fb12e2e7984696cdb7b23feb4 | 0 | ansible-srv/roles/jenkins | 406 | [
"no_license"
] | [
{
"path": "ansible-srv/roles/jenkins/tasks/main.yml",
"content": "---\n- name: Installing jre8\n become: true\n apt:\n name: openjdk-8-jre\n update_cache: yes\n cache_valid_time: 3600\n state: present\n\n- name: Install lxml and pip\n apt: \n name: ['python3-lxml','python-pip', 'python3-pi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3139,
"all_permissive": false
} |
ansible_role | Shh25/Ansible-Devops | 60744e62e8e7573fb12e2e7984696cdb7b23feb4 | 0 | ansible-srv/roles/job-builder | 406 | [
"no_license"
] | [
{
"path": "ansible-srv/roles/job-builder/templates/jobs.yml",
"content": "---\n- job:\n become: true\n name: {{jenkins_job_name_checkbox}} \n description: 'Run Checkbox tests'\n project-type: freestyle\n builders:\n - shell: 'cp -r {{checkbox_dest}}/* /var/lib/jenkins/workspace/{{jenkins... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 4497,
"all_permissive": false
} |
ansible_role | Shh25/Ansible-Devops | 60744e62e8e7573fb12e2e7984696cdb7b23feb4 | 0 | ansible-srv/roles/kubernetes-gcp | 406 | [
"no_license"
] | [
{
"path": "ansible-srv/roles/kubernetes-gcp/templates/create-deployment.yml",
"content": "---\napiVersion: \"extensions/v1beta1\"\nkind: \"Deployment\"\nmetadata:\n name: \"{{ deployment_name }}\"\n namespace: \"default\"\n labels:\n app: \"{{ deployment_name }}\"\nspec:\n replicas: 3\n selector:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 5350,
"all_permissive": false
} |
ansible_role | Shh25/Ansible-Devops | 60744e62e8e7573fb12e2e7984696cdb7b23feb4 | 0 | ansible-srv/roles/monitoring | 406 | [
"no_license"
] | [
{
"path": "ansible-srv/roles/monitoring/templates/loadtest.sh",
"content": " #!/bin/bash\n \n for i in {1..500}\n do\n echo \"Sending 50 requests using process $i\" && time curl -s -X POST http://172.16.31.10/api/design/survey?[1-50] > /dev/null &\n done\n wait\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1092,
"all_permissive": false
} |
ansible_role | Shh25/Ansible-Devops | 60744e62e8e7573fb12e2e7984696cdb7b23feb4 | 0 | ansible-srv/roles/mysql | 406 | [
"no_license"
] | [
{
"path": "ansible-srv/roles/mysql/templates/.my.cnf",
"content": "[client]\nuser={{mysql_user}}\npassword={{<PASSWORD>}}\nlocal_infile=1",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 67
},
{
"path": "ansible-srv/roles/mysql/tasks/main.yml",
"content": "- nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 883,
"all_permissive": false
} |
ansible_role | Shh25/Ansible-Devops | 60744e62e8e7573fb12e2e7984696cdb7b23feb4 | 0 | ansible-srv/roles/test-prioritization | 406 | [
"no_license"
] | [
{
"path": "ansible-srv/roles/test-prioritization/files/test_prioritization.py",
"content": "#!/usr/bin/python3\nimport sys\nfrom prettytable import PrettyTable\n\ntab = PrettyTable()\ntab.field_names = ['Test Name', 'Total Passed', 'Total Failed', 'Average Build Time']\ncombinedLogLocation = sys.argv[1]\nsa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3822,
"all_permissive": false
} |
ansible_role | fnoren17/ansible-desktop | 93f022cd745b38d68e003c2380ea847283c3eda1 | 0 | roles/base | 406 | [
"no_license"
] | [
{
"path": "roles/base/tasks/main.yml",
"content": "- name: Update apt cache\n ansible.builtin.apt:\n update_cache: true\n changed_when: false\n when: ansible_distribution in [\"Debian\", \"Ubuntu\"]\n\n- name: Install dependencies\n ansible.builtin.apt:\n name:\n - curl\n - git\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 938,
"all_permissive": false
} |
ansible_role | fnoren17/ansible-desktop | 93f022cd745b38d68e003c2380ea847283c3eda1 | 0 | roles/work | 406 | [
"no_license"
] | [
{
"path": "roles/work/tasks/main.yml",
"content": "- ansible.builtin.include_vars: \"{{ ansible_distribution }}.yml\"\n tags: always\n\n- block:\n - ansible.builtin.include_tasks: packages/ohmyzsh.yml\n - ansible.builtin.include_tasks: packages/asdf.yml\n - ansible.builtin.include_tasks: software/... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 4341,
"all_permissive": false
} |
ansible_role | egovernments/divoc-installer | 1a04e9fe5cc90bdcd1e1216e044be9c52fa0a8d6 | 0 | ansible-cookbooks/docker-registry/roles/container-registry | 406 | [
"no_license"
] | [
{
"path": "ansible-cookbooks/docker-registry/roles/container-registry/defaults/main.yml",
"content": "---\nSRV_PATH: '/data/srv'\nOPT_PATH: '/opt/divoc'\n\nDOCKER_REGISTRY_PORT: 5000\nDOCKER_REGISTRY_HTPASSWD_ENABLED: false\nDOCKER_REGISTRY_USER: 'root'\nDOCKER_REGISTRY_PASSWORD: '<PASSWORD>'",
"license... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1731,
"all_permissive": false
} |
ansible_role | DevOps-Academy-Org/kubernetes-workshop | f2f6f8eafe00d8c19a22d1c43ec92e257ea56569 | 33 | preparation/roles/da.traefik_k8s | 406 | [
"no_license"
] | [
{
"path": "preparation/roles/da.traefik_k8s/vars/main.yml",
"content": "---\n# vars file for da.traefik_k8s",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 34
},
{
"path": "preparation/roles/da.traefik_k8s/tasks/main.yml",
"content": "---\n# tasks file for da.t... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 2427,
"all_permissive": false
} |
ansible_role | DevOps-Academy-Org/kubernetes-workshop | f2f6f8eafe00d8c19a22d1c43ec92e257ea56569 | 33 | preparation/roles/doa.docker | 406 | [
"no_license"
] | [
{
"path": "preparation/roles/doa.docker/defaults/main.yml",
"content": "---\n# defaults file for doa.docker\ndocker_package_name: 'docker-ce'\ndocker_package_version: '17.03.2~ce-0~ubuntu-xenial'",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 120
},
{
"path": "pre... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1414,
"all_permissive": false
} |
ansible_role | DevOps-Academy-Org/kubernetes-workshop | f2f6f8eafe00d8c19a22d1c43ec92e257ea56569 | 33 | preparation/roles/doa.kubernetes | 406 | [
"no_license"
] | [
{
"path": "preparation/roles/doa.kubernetes/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - doa.kubernetes",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 72
},
{
"path": "preparation/roles/doa.kubernetes/handlers/main.yml... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1059,
"all_permissive": false
} |
ansible_role | cooniur/vagrant-demo | e3a6e5f5e3e259eb168b937f622803487d4ea645 | 0 | ansible/roles/tomcat | 406 | [
"no_license"
] | [
{
"path": "ansible/roles/tomcat/tasks/main.yml",
"content": "---\n# file: roles/tomcat/tasks/main.yml\n\n- name: download Tomcat\n local_action: > \n get_url \n url=\"{{tomcat_download_url}}\"\n dest=\"{{tomcat_download_dir}}/{{tomcat_package}}\"\n force=no\n sudo: False\n tags: tomcat-... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 5376,
"all_permissive": false
} |
ansible_role | r0kk0/terraform-ansible-k8s-vmware | 7f13695b3ea7a572df027328fdd3ffb5d9644c67 | 0 | playbook/roles/common | 406 | [
"no_license"
] | [
{
"path": "playbook/roles/common/vars/default.yml",
"content": "---\ntimezone: Europe/Rome\nmain_root_group: root\nmain_packages_list:\n - htop\n - lsof\n - net-tools\n - screen\n - strace\n - telnet\n - vim\n - gpg\n - rsync\n - dnsutils\n - apt-transport-https\n - ca-certificates\n - curl\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 2459,
"all_permissive": false
} |
ansible_role | r0kk0/terraform-ansible-k8s-vmware | 7f13695b3ea7a572df027328fdd3ffb5d9644c67 | 0 | playbook/roles/containerd | 406 | [
"no_license"
] | [
{
"path": "playbook/roles/containerd/handlers/main.yml",
"content": "- name: ContainerD | restart containerd\n ansible.builtin.service:\n name: '{{ containerd_service_name }}'\n state: restarted\n listen: restart containerd\n tags:\n - docker\n",
"license_type": "no_license",
"detected_l... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1527,
"all_permissive": false
} |
ansible_role | r0kk0/terraform-ansible-k8s-vmware | 7f13695b3ea7a572df027328fdd3ffb5d9644c67 | 0 | playbook/roles/kubernetes | 406 | [
"no_license"
] | [
{
"path": "playbook/roles/kubernetes/vars/default.yml",
"content": "\n---\nk8s_packages_list:\n - kubelet\n - kubeadm\n - kubectl\n\nk8s_hold_list:\n - kubelet\n - kubeadm\n - kubectl\n\ndebian_version: jammy\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 135
},... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1235,
"all_permissive": false
} |
ansible_role | r0kk0/terraform-ansible-k8s-vmware | 7f13695b3ea7a572df027328fdd3ffb5d9644c67 | 0 | playbook/roles/kubernetes-bootstrap | 406 | [
"no_license"
] | [
{
"path": "playbook/roles/kubernetes-bootstrap/tasks/kubernetes.yml",
"content": "---\n- name: load network modules\n community.general.modprobe:\n name: \"overlay\"\n state: present\n\n- name: load network modules\n community.general.modprobe:\n name: \"br_netfilter\"\n state: present\n\n- na... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3991,
"all_permissive": false
} |
ansible_role | narkaTee/bootstrap-ws | a197e3f8ea5374cb766e028f808103fd84b2a259 | 0 | roles/blackarch | 406 | [
"no_license"
] | [
{
"path": "roles/blackarch/tasks/main.yml",
"content": "---\n- name: Debug outut\n debug:\n msg: \"{{ vars[(role_path | basename).split('.')[-1].replace('-', '_')] }}\"\n when: DEBUG | d() | bool\n\n- name: Prepare blackarch install\n include_tasks: prepare.yml\n\n- name: Configure system for blackarc... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 338,
"all_permissive": false
} |
ansible_role | narkaTee/bootstrap-ws | a197e3f8ea5374cb766e028f808103fd84b2a259 | 0 | roles/dotfiles | 406 | [
"no_license"
] | [
{
"path": "roles/dotfiles/tasks/main.yml",
"content": "- name: Install dotfile dependencies\n ansible.builtin.package:\n name:\n - ruby\n tags: dotfiles\n\n- name: Checkout dotfiles (via http)\n ansible.builtin.git:\n repo: 'https://github.com/narkatee/dotfiles'\n dest: \"{{ ansible_facts['... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 650,
"all_permissive": false
} |
ansible_role | narkaTee/bootstrap-ws | a197e3f8ea5374cb766e028f808103fd84b2a259 | 0 | roles/firefox | 406 | [
"no_license"
] | [
{
"path": "roles/firefox/defaults/main.yaml",
"content": "# you might want to double check with https://support.mozilla.org/en-US/kb/install-firefox-linux\nfirefox_key_fingerprint: 35BAA0B33E9EB396F59CA838C0BA5CE6DC6315A3\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 1... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1867,
"all_permissive": false
} |
ansible_role | narkaTee/bootstrap-ws | a197e3f8ea5374cb766e028f808103fd84b2a259 | 0 | roles/fonts | 406 | [
"no_license"
] | [
{
"path": "roles/fonts/tasks/main.yaml",
"content": "- name: Make sure fonts directory exists\n ansible.builtin.file:\n path: \"{{ ansible_facts['user_dir'] }}/.local/share/fonts/\"\n state: directory\n recurse: true\n\n- name: Copy fonts\n ansible.builtin.copy:\n dest: \"{{ ansible_facts['use... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 973,
"all_permissive": false
} |
ansible_role | narkaTee/bootstrap-ws | a197e3f8ea5374cb766e028f808103fd84b2a259 | 0 | roles/yubikey | 406 | [
"no_license"
] | [
{
"path": "roles/yubikey/defaults/main.yaml",
"content": "yubikey_pam: true\nyubikey_pam_keys: []\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 39
},
{
"path": "roles/yubikey/tasks/main.yaml",
"content": "- name: Configure PAM authentication\n ansible.buil... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1102,
"all_permissive": false
} |
ansible_role | brainstorm/ansible-neurostars.org | 613b71970307553fde1bb4e05040431cc4cad281 | 0 | roles/common | 406 | [
"no_license"
] | [
{
"path": "roles/common/tasks/postgresql_auth.yml",
"content": "---\n- name: Ensure PostgreSQL is listening on all localhost\n lineinfile: dest=/etc/postgresql/9.1/main/postgresql.conf\n regexp='^#?listen_addresses\\s*='\n line=\"listen_addresses = '127.0.0.1'\"\n state=present\n notify: restart ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 933,
"all_permissive": false
} |
ansible_role | antimiluc/awxWebApp | 80643d2c0b93f2f24302bc993f8ceef89b737b2a | 0 | roles/front | 406 | [
"no_license"
] | [
{
"path": "roles/front/tasks/main.yml",
"content": "---\n# tasks file for roles/front\n- name: \"Clean Folder\"\n file:\n path: \"/home/{{ ansible_user }}/webapp\"\n state: absent\n- name: Create webapp directory\n file:\n path: \"/home/{{ ansible_user }}/webapp/\"\n state: directory\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1036,
"all_permissive": false
} |
ansible_role | jboss-set/eris | c3899564b20c2a7e29f9dd846f866b1f715001c5 | 0 | roles/eris_hera_commons | 406 | [
"no_license"
] | [
{
"path": "roles/eris_hera_commons/tasks/check_dir.yml",
"content": "---\n- name: \"Ensures required parameters are provided.\"\n ansible.builtin.assert:\n that:\n - variable_name is defined\n - directory_path is defined\n quiet: true\n fail_msg: \"Missing required parameter\"\n\n- name:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 799,
"all_permissive": false
} |
ansible_role | jboss-set/eris | c3899564b20c2a7e29f9dd846f866b1f715001c5 | 0 | roles/eris_hera_create | 406 | [
"no_license"
] | [
{
"path": "roles/eris_hera_create/defaults/main.yml",
"content": "---\nhera_home: \"{{ lookup('env', 'HERA_HOME') }}\"\nhera_debug: \"{{ lookup('env', 'HERA_DEBUG') | default(False) }}\"\npodman_image: \"{{ lookup('ansible.builtin.env', 'HERA_MOLECULE_SLAVE_IMAGE') | default('podman_image', 'localhost/molec... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4485,
"all_permissive": false
} |
ansible_role | jboss-set/eris | c3899564b20c2a7e29f9dd846f866b1f715001c5 | 0 | roles/eris_hera_destroy | 406 | [
"no_license"
] | [
{
"path": "roles/eris_hera_destroy/tasks/main.yml",
"content": "---\n- name: \"Ensure required parameters are provided.\"\n ansible.builtin.assert:\n that:\n - hera_home is defined\n - workdir is defined\n quiet: true\n fail_msg: \"Missing required parameters\"\n\n- name: \"Check that wo... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1775,
"all_permissive": false
} |
ansible_role | konguele/Gitlab | 0bb9c31281c7125b2eba0a79bdb078e96ba566a8 | 0 | roles/Gitlab | 406 | [
"no_license"
] | [
{
"path": "roles/Gitlab/templates/gitlab.rb.j2",
"content": "# URL through which GitLab will be accessed\nexternal_url \"{{ gitlab_external_url }}\"\n\n# gitlab.yml\ngitlab_rails['time_zone'] = \"{{ gitlab_time_zone }}\"\ngitlab_rails['backup_keep_time'] = {{ gitlab_backup_keep_time }}\ngitlab_rails['gitlab... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 6865,
"all_permissive": false
} |
ansible_role | krasnorechiv/forhr | 86dac2b8e85c4571c90affe72078c523c5f4077a | 0 | repo/ansible/roles/backend | 406 | [
"no_license"
] | [
{
"path": "repo/ansible/roles/backend/tasks/detect.yml",
"content": "- name: check install docker\n command: which docker\n register: docker_check\n ignore_errors: true\n changed_when: false\n\n### проверяем наличие контейнеров и записываем в переменную existing_containers ###\n- name: Detect existing c... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3887,
"all_permissive": false
} |
ansible_role | krasnorechiv/forhr | 86dac2b8e85c4571c90affe72078c523c5f4077a | 0 | repo/ansible/roles/frontend | 406 | [
"no_license"
] | [
{
"path": "repo/ansible/roles/frontend/tasks/main.yml",
"content": "---\n- name: Deploy frontend container\n community.docker.docker_container:\n name: \"{{ frontend_container_name }}\"\n image: \"{{ registry_image_frontend }}\"\n restart_policy: always\n state: started\n networks:\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 285,
"all_permissive": false
} |
ansible_role | krasnorechiv/forhr | 86dac2b8e85c4571c90affe72078c523c5f4077a | 0 | repo/ansible/roles/monitoring | 406 | [
"no_license"
] | [
{
"path": "repo/ansible/roles/monitoring/vars/main.yml",
"content": "---\n#Версии образов\nprometheus_version: \"latest\"\ngrafana_version: \"latest\"\nnode_exporter_version: \"latest\"\n\n#Порты\nprometheus_port: 9090\ngrafana_port: 3000\nnode_exporter_port: 9100\napp_exporter_port: 8081 # \n\n# Учетные д... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 3757,
"all_permissive": false
} |
ansible_role | krasnorechiv/forhr | 86dac2b8e85c4571c90affe72078c523c5f4077a | 0 | repo/ansible/roles/preparing | 406 | [
"no_license"
] | [
{
"path": "repo/ansible/roles/preparing/tasks/main.yml",
"content": "---\n - name: update apt cache\n ansible.builtin.apt:\n update_cache: yes\n become: true\n\n - name: install ca-certificates and curl\n ansible.builtin.apt:\n name:\n - ca-certificates\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2592,
"all_permissive": false
} |
ansible_role | shirish87/ansible-ubuntu-caddy-multisite-https | eaf162c358a692f9c636f23be78ed1cb15f47f6b | 0 | roles/caddy | 408 | [
"no_license"
] | [
{
"path": "roles/caddy/tasks/main.yml",
"content": "- name: Check caddy installed\n command: caddy version\n ignore_errors: true\n register: c\n tags:\n - caddy\n\n- name: Import caddy repository GPG key\n apt_key: url=\"https://dl.cloudsmith.io/public/caddy/stable/gpg.key\" state=present\n when: c... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1455,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.