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 | jastkand/vagrantfiles | 22d00d927f57ca50086d59e5e58eba9cff37f0b3 | 2 | provisioning/roles/oh_my_zsh | 130 | [
"no_license"
] | [
{
"path": "provisioning/roles/oh_my_zsh/tasks/main.yml",
"content": "---\n## Install Oh-my-zsh\n- name: Oh-my-zsh | Install git and zsh\n apt: pkg={{ item }} state=latest update_cache=yes\n with_items:\n - git\n - zsh\n - git-core\n\n- name: Oh-my-zsh | Clone oh-my-zsh repo\n git: repo=git://github... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1238,
"all_permissive": false
} |
ansible_role | jastkand/vagrantfiles | 22d00d927f57ca50086d59e5e58eba9cff37f0b3 | 2 | provisioning/roles/postgresql-ext | 130 | [
"no_license"
] | [
{
"path": "provisioning/roles/postgresql-ext/tasks/main.yml",
"content": "- name: PostgreSQL Ext | Update the user privileges\n postgresql_user:\n name: \"{{item.name}}\"\n port: \"{{postgresql_port}}\"\n state: present\n login_host: \"{{item.host | default('localhost')}}\"\n login_user: \"{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 443,
"all_permissive": false
} |
ansible_role | devsegur/AKG-10K | 71f8f64ab7426b228978658264122f478ccd43a7 | 0 | ansible/roles/application | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/application/tasks/go-docker.yaml",
"content": "- name: Configure Go Docker\n become: true\n docker_image:\n name: \"{{ docker_image }}\"\n tag: latest\n force_tag: yes\n repository: \"{{ docker_image }}\"\n build:\n pull: no\n path: ../go-app\n cache_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 295,
"all_permissive": false
} |
ansible_role | devsegur/AKG-10K | 71f8f64ab7426b228978658264122f478ccd43a7 | 0 | ansible/roles/cluster | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/cluster/tasks/deployment-cluster-configure.yaml",
"content": "- name: Configure Deployment\n become: false\n k8s:\n state: present\n src: ../kubernetes/deployments/application.yaml\n apply: true\n validate:\n fail_on_error: true\n delegate_to: localhost",
"li... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1143,
"all_permissive": false
} |
ansible_role | devsegur/AKG-10K | 71f8f64ab7426b228978658264122f478ccd43a7 | 0 | ansible/roles/dependencies | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/dependencies/tasks/apt-dependencies.yaml",
"content": "- name: Install aptitude using apt\n apt: name=aptitude state=latest update_cache=yes force_apt_get=yes\n delegate_to: localhost\n\n- name: Install required system packages\n apt: name={{ item }} state=latest update_cache=yes... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1141,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/base | 130 | [
"no_license"
] | [
{
"path": "roles/base/tasks/main.yml",
"content": "---\n- name: Install base packages\n apt: \n name:\n - acl # To enable becoming another user\n - curl\n - git\n - vim\n become: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 150
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 150,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/dev-common | 130 | [
"no_license"
] | [
{
"path": "roles/dev-common/tasks/main.yml",
"content": "---\n- name: Install common development dependencies\n apt: name={{ item }}\n with_items:\n - build-essential\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 111
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 111,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/docker | 130 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\r\n- name: Remove old versions of Docker\r\n apt:\r\n name:\r\n - docker\r\n - docker-engine\r\n - docker.io\r\n - containerd\r\n - runc\r\n state: absent\r\n become: yes\r\n\r\n- name: Install Docker prerequisites\r\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 854,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/dotfiles | 130 | [
"no_license"
] | [
{
"path": "roles/dotfiles/tasks/main.yml",
"content": "---\n- name: Ensure that .gitignore is present\n file:\n path: ~/.gitignore\n state: touch\n\n- name: Ensure that .dotfiles is gitignored\n lineinfile:\n path: ~/.gitignore\n line: '.dotfiles'\n\n- name: Clone dotfiles repo\n git:\n re... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 623,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/elasticsearch | 130 | [
"no_license"
] | [
{
"path": "roles/elasticsearch/tasks/main.yml",
"content": "---\n- name: Add elastic apt repository signing keys\n apt_key: url=https://artifacts.elastic.co/GPG-KEY-elasticsearch\n become: yes\n\n- name: Add elastic apt repositories\n apt_repository:\n repo: deb https://artifacts.elastic.co/packages/5... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 439,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/ffmpeg | 130 | [
"no_license"
] | [
{
"path": "roles/ffmpeg/tasks/main.yml",
"content": "---\n- name: Install ffmpeg package and dependencies\n apt:\n name:\n - ffmpeg\n - libmp3lame-dev\n become: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 121
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 121,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/gdk | 130 | [
"no_license"
] | [
{
"path": "roles/gdk/tasks/main.yml",
"content": "---\n- name: Install GDK prerequisites\n apt: \n name:\n - redis-server\n - sqlite3\n - libsqlite3-dev\n - libicu-dev\n - cmake\n - g++\n - libkrb5-dev\n - libre2-dev\n - ed\n - pkg-config\n - graphi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 323,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/minio | 130 | [
"no_license"
] | [
{
"path": "roles/minio/tasks/main.yml",
"content": "---\n- name: Create .local/bin directory\n file:\n state: directory\n path: ~/.local/bin\n\n- name: Download minio server binary\n get_url:\n url: https://dl.min.io/server/minio/release/linux-amd64/minio\n dest: ~/.local/bin\n mode: u+x\n\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 390,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/mysql | 130 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yml",
"content": "- name: Install MySQL packages\r\n apt: \"name={{ item }}\"\r\n with_items:\r\n - mysql-server\r\n - libmysqlclient-dev\r\n become: yes",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 132
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 132,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/nodenv | 130 | [
"no_license"
] | [
{
"path": "roles/nodenv/tasks/main.yml",
"content": "---\r\n- name: Set up Node.js build environment (https://github.com/nodejs/node/blob/master/BUILDING.md#building-nodejs-on-supported-platforms)\r\n apt:\r\n name:\r\n - g++\r\n - make\r\n become: yes\r\n\r\n- name: Clone nodenv repo\r\n gi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 576,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/postgresql | 130 | [
"no_license"
] | [
{
"path": "roles/postgresql/tasks/main.yml",
"content": "---\n- name: Install PostgreSQL packages\n apt:\n name:\n - postgresql-14\n - libpq-dev\n become: yes\n\n- name: First-time PostgreSQL install tasks\n block:\n - name: Install Ansible PostgreSQL dependencies\n pip:\n nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 984,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/rbenv | 130 | [
"no_license"
] | [
{
"path": "roles/rbenv/tasks/main.yml",
"content": "---\n- name: Set up Ruby build environment (https://github.com/rbenv/ruby-build/wiki#suggested-build-environment)\n apt:\n name:\n - autoconf\n - bison\n - build-essential\n - libssl-dev\n - libyaml-dev\n - libreadline6-de... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 729,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/yarn | 130 | [
"no_license"
] | [
{
"path": "roles/yarn/tasks/main.yml",
"content": "---\r\n- name: Add yarn apt repository signing keys\r\n apt_key: url=https://dl.yarnpkg.com/debian/pubkey.gpg\r\n become: yes\r\n\r\n- name: Add yarn apt repositories\r\n apt_repository: repo=\"deb https://dl.yarnpkg.com/debian/ stable main\" update_cach... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 330,
"all_permissive": false
} |
ansible_role | weimeng/ansible-wsl | 69f52fb972db5a148fc55056b50ea326efeec12d | 4 | roles/zsh | 130 | [
"no_license"
] | [
{
"path": "roles/zsh/tasks/main.yml",
"content": "---\n- name: Install zsh package\n apt: name=zsh\n become: yes\n\n- name: Set zsh as default shell\n user: name=weimeng shell=/usr/bin/zsh\n become: yes\n\n- name: Check if Oh My Zsh is already installed\n stat: path=~/.oh-my-zsh\n register: omzsh_stat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 870,
"all_permissive": false
} |
ansible_role | FutureGadgetLab42/dagr | 3a5ec86550e31425334f1a0d092770af6002ccc4 | 0 | deploy/roles/project-deployment | 130 | [
"no_license"
] | [
{
"path": "deploy/roles/project-deployment/tasks/deploy-application.yml",
"content": "---\n\n- include_vars: main.yml\n\n- stat: path=/home/ubuntu/dagr-1.0/RUNNING_PID\n register: running_pid\n\n- name: Kill old process\n shell: kill $(cat /home/ubuntu/dagr-1.0/RUNNING_PID)\n when: running_pid.stat.exist... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1257,
"all_permissive": false
} |
ansible_role | amila-ku/docker-ssshconfig | 78706a813985f643ed47269cf9762a6a7f958483 | 0 | roles/ansible-role-sshconfig-docker | 130 | [
"no_license"
] | [
{
"path": "roles/ansible-role-sshconfig-docker/tasks/main.yml",
"content": "---\n# tasks file for roles/ansible-role-sshconfig\n\n - name: Create containers\n docker_container:\n name: \"mycont-{{ item }}\"\n recreate: yes\n state: started\n image: cubuntu-17.04\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1872,
"all_permissive": false
} |
ansible_role | rromannissen/tower-examples | 6b41419619c0d2d6b9bcc17b48bb18ba55b80576 | 0 | roles/extract-configmap | 130 | [
"no_license"
] | [
{
"path": "roles/extract-configmap/handlers/main.yml",
"content": "---\n# handlers file for extract-configmap\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "roles/extract-configmap/tasks/main.yml",
"content": "---\n# tasks file for extract-c... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 2109,
"all_permissive": false
} |
ansible_role | rromannissen/tower-examples | 6b41419619c0d2d6b9bcc17b48bb18ba55b80576 | 0 | roles/install-apache | 130 | [
"no_license"
] | [
{
"path": "roles/install-apache/tasks/main.yml",
"content": "---\n# tasks file for install_apache\n#Check if a previous core installation exists.\n- stat:\n path: \"{{ APACHE_CORE_BIN_PATH }}\"\n register: APACHE_CORE_PATH\n#Execute install core only if it hasn't been installed before (directory doesnt ... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 9658,
"all_permissive": false
} |
ansible_role | rromannissen/tower-examples | 6b41419619c0d2d6b9bcc17b48bb18ba55b80576 | 0 | roles/remove-services | 130 | [
"no_license"
] | [
{
"path": "roles/remove-services/tasks/01_remove_services_error_handling.yml",
"content": "---\n\n- include: 01_loop_remove_services_error_handling.yml\n with_items: \"{{ SERVICES_LIST }}\"\n loop_control:\n loop_var: outer_item\n",
"license_type": "no_license",
"detected_licenses": [],
"si... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 2030,
"all_permissive": false
} |
ansible_role | drnasmith/synchweb-devel-env | 9c997fa83d72780f7906d5dc99d3641a7b2f067b | 1 | playbooks/roles/synchweb | 130 | [
"no_license"
] | [
{
"path": "playbooks/roles/synchweb/files/SynchWeb/class.auth-dummy.php",
"content": "<?php\n\nrequire_once('config.php');\n\nclass DUMMYAuthentication extends AuthenticationBase implements Authentication {\n\n function check() {\n /* global $cas_url, $cas_sso, $cacert; */\n\n /* if (!$cas_... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 10960,
"all_permissive": false
} |
ansible_role | kanmo/ami_builder | 6ac660897691fb7b80202ab7ceacd7ec1e3f62bb | 0 | ansible/roles/elixir | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/elixir/files/elixir_path.sh",
"content": "export PATH=/opt/elixir/bin:$PATH\nexport PORT=4000\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 51
},
{
"path": "ansible/roles/elixir/tasks/install.yml",
"content": "---\n# must execute er... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1025,
"all_permissive": false
} |
ansible_role | kanmo/ami_builder | 6ac660897691fb7b80202ab7ceacd7ec1e3f62bb | 0 | ansible/roles/erlang | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/erlang/tasks/install.yml",
"content": "---\n- name: install yum security plugin\n yum: pkg=yum-plugin-security state=latest\n sudo: yes\n\n- name: update yum security\n shell: yum -y --security update-minimal\n sudo: yes\n\n- name: install yum packages\n yum: name={{ item }} st... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1600,
"all_permissive": false
} |
ansible_role | kanmo/ami_builder | 6ac660897691fb7b80202ab7ceacd7ec1e3f62bb | 0 | ansible/roles/ruby | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/ruby/vars/main.yml",
"content": "---\nsrc_dir: /usr/local/src\napp_user: ec2-user\nruby_version: 2.3.1\nbundler_version: 1.11.2\nrbenv_root: /usr/local/rbenv\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 120
},
{
"path": "ansible/roles/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2636,
"all_permissive": false
} |
ansible_role | phamr39/ansible-cicd | 27edaa924f72d5a2acdd95c5e73fad583185aafa | 0 | roles/newcj1 | 130 | [
"no_license"
] | [
{
"path": "roles/newcj1/tasks/main.yml",
"content": "---\n#\n# Tasks to be applied to runner servers\n#\n- name: Check connectivity\n ping:\n data: alive\n tags: check\n\n#\n# Tasks to install docker\n#\n\n#\n# Tasks to install docker compose\n#\n\n#\n# Tasks to install gitlab runner\n#\n\n#\n# Tasks t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 380,
"all_permissive": false
} |
ansible_role | phamr39/ansible-cicd | 27edaa924f72d5a2acdd95c5e73fad583185aafa | 0 | roles/runner | 130 | [
"no_license"
] | [
{
"path": "roles/runner/tasks/main.yml",
"content": "---\n#\n# Tasks to be applied to newcj1 servers\n#\n- name: Check connectivity\n ping:\n data: alive\n tags: check\n\n#\n# Tasks to copy code from zip file to target host\n#\n- name: Copy zipped file to target host\n synchronize:\n src: /path/on/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 465,
"all_permissive": false
} |
ansible_role | mobileposse/serverless-kinesis-cache-example | 5333429326339b4eeca14cceb9ccec193b4b5140 | 3 | ansible/roles/aws | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/aws/tasks/main.yml",
"content": "---\n\n- name: install the python utility packages\n become: true\n apt:\n name=python-pip\n state=present\n\n- name: install the awscli package\n become: true\n pip:\n name=awscli\n state=latest\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 200,
"all_permissive": false
} |
ansible_role | mobileposse/serverless-kinesis-cache-example | 5333429326339b4eeca14cceb9ccec193b4b5140 | 3 | ansible/roles/common | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/tools.yml",
"content": "---\n\n- name: install compilation-related packages\n become: true\n apt: name={{ item }} state=present\n with_items:\n - build-essential\n - libffi-dev\n - libreadline-dev\n - libssl-dev\n - zlib1g-dev\n\n- name: install curl p... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 14,
"total_bytes": 5714,
"all_permissive": false
} |
ansible_role | mobileposse/serverless-kinesis-cache-example | 5333429326339b4eeca14cceb9ccec193b4b5140 | 3 | ansible/roles/git | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/git/tasks/main.yml",
"content": "---\n\n- name: install the git package\n become: true\n apt:\n name=git\n state=present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 90
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 90,
"all_permissive": false
} |
ansible_role | mobileposse/serverless-kinesis-cache-example | 5333429326339b4eeca14cceb9ccec193b4b5140 | 3 | ansible/roles/jq | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/jq/tasks/main.yml",
"content": "---\n# great command-line JSON processor\n# unable to use standard apt install (stuck at v1.3)\n\n- name: install the jq binary\n become: true\n get_url:\n url=http://stedolan.github.io/jq/download/linux64/jq\n dest=/usr/bin/jq\n owner=root... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 272,
"all_permissive": false
} |
ansible_role | mobileposse/serverless-kinesis-cache-example | 5333429326339b4eeca14cceb9ccec193b4b5140 | 3 | ansible/roles/nodejs | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/nodejs/tasks/main.yml",
"content": "---\n\n- name: download the nodejs archive\n become: true\n get_url:\n url=https://nodejs.org/download/release/v4.3.2/node-v4.3.2-linux-x64.tar.gz\n dest=/tmp/node-v4.3.2-linux-x64.tar.gz\n owner=root\n group=root\n mode=0644\n\n-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 521,
"all_permissive": false
} |
ansible_role | mobileposse/serverless-kinesis-cache-example | 5333429326339b4eeca14cceb9ccec193b4b5140 | 3 | ansible/roles/redis | 130 | [
"no_license"
] | [
{
"path": "ansible/roles/redis/handlers/main.yml",
"content": "---\n\n- name: restart the redis daemon\n sudo: true\n service:\n name=redis-server\n state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 104
},
{
"path": "ansible/roles/redis/defa... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 673,
"all_permissive": false
} |
ansible_role | parthenon-robovision/robovision | eec37631817eccd565756547e8229632082e5a60 | 1 | deployment/roles/all | 130 | [
"no_license"
] | [
{
"path": "deployment/roles/all/tasks/main.yml",
"content": "- name: Install packages\n apt: pkg={{item}} state=present update_cache=yes cache_valid_time=86400\n become: True\n with_items: \"{{packages}}\"\n\n- name: Ensure resolvconf is gone, because it's evil\n apt: pkg=resolvconf state=absent\n beco... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 247,
"all_permissive": false
} |
ansible_role | parthenon-robovision/robovision | eec37631817eccd565756547e8229632082e5a60 | 1 | deployment/roles/app | 130 | [
"no_license"
] | [
{
"path": "deployment/roles/app/templates/local_settings.py",
"content": "# pylint: disable=missing-docstring\nDEBUG = {{debug}}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 54
},
{
"path": "deployment/roles/app/handlers/main.yml",
"content": "- name: Rest... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2472,
"all_permissive": false
} |
ansible_role | parthenon-robovision/robovision | eec37631817eccd565756547e8229632082e5a60 | 1 | deployment/roles/dev-box | 130 | [
"no_license"
] | [
{
"path": "deployment/roles/dev-box/tasks/main.yml",
"content": "---\n- name: Ensure the key is set to 600\n file: path=\"{{inventory_dir}}/keys/vagrant.key\" mode=0600 state=file\n\n- name: Add SSH default host\n lineinfile: regexp=\"{{item.regexp}}\" dest=~/.ssh/config create=yes line=\"{{item.line}}\" ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 636,
"all_permissive": false
} |
ansible_role | parthenon-robovision/robovision | eec37631817eccd565756547e8229632082e5a60 | 1 | deployment/roles/nginx | 130 | [
"no_license"
] | [
{
"path": "deployment/roles/nginx/handlers/main.yml",
"content": "- name: Restart nginx\n become: True\n service: name=nginx state=restarted\n\n- name: Restart nginx\n become: True\n service: name=uwsgi state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 2527,
"all_permissive": false
} |
ansible_role | Nik-Novak/Ansible-variable-evaluation-bug-demonstration | 3cb9b0bb9815fcc142f6567075615301b5f758a5 | 0 | roles/test | 134 | [
"no_license"
] | [
{
"path": "roles/test/tasks/main.yml",
"content": "---\n# THIS WORKS, becuase it's behind a lookup and is sourcing variables using jinja\n# UNCOMMENT THIS TASK AND COMMENT OTHER TASKS TO TRY THIS\n- name: Create a working nodeport service using lookup\n k8s:\n definition: \"{{ lookup('template', 'bugged... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2227,
"all_permissive": false
} |
ansible_role | aristocraticnewyork/php-console-apps | 428a3d9ba4516daea0bcf10cee6de4719be6bba2 | 0 | ansible/roles/php | 134 | [
"no_license"
] | [
{
"path": "ansible/roles/php/tasks/main.yml",
"content": "- name: Add ondrej repo for PHP\n become: yes\n apt_repository:\n repo: 'ppa:ondrej/php'\n\n- name: Update apt cache\n become: yes\n apt: update_cache=yes\n\n- name: Install PHP packages\n apt: pkg={{ item }} state=latest\n with_items:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 322,
"all_permissive": false
} |
ansible_role | devos-quickstarter/ansible-quickstarter | 9a9dc157666902fcdb28eaf1468db9285b6481b8 | 0 | roles/aws-configuration | 134 | [
"no_license"
] | [
{
"path": "roles/aws-configuration/tasks/absent.yml",
"content": "---\n- name: Host Info Facts\n command: \"{{ command }}\"\n register: host_info\n\n- name: Print Host Name\n debug:\n msg: \"hostName is {{ host_info.stdout }}\"\n\n- name: Stop Nginx Service, if started\n service:\n name: nginx\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 309,
"all_permissive": false
} |
ansible_role | devos-quickstarter/ansible-quickstarter | 9a9dc157666902fcdb28eaf1468db9285b6481b8 | 0 | roles/aws-provisioning_ec2 | 134 | [
"no_license"
] | [
{
"path": "roles/aws-provisioning_ec2/tasks/main.yml",
"content": "---\n- name: Create EC2 Instance\n amazon.aws.ec2_instance:\n name: \"{{ instance_name }}\"\n key_name: \"{{ key_name }}\"\n image_id: \"{{ image }}\"\n instance_type: \"{{ instance_type }}\"\n region: \"{{ region }}\"\n v... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 310,
"all_permissive": false
} |
ansible_role | devos-quickstarter/ansible-quickstarter | 9a9dc157666902fcdb28eaf1468db9285b6481b8 | 0 | roles/azure-configuration | 134 | [
"no_license"
] | [
{
"path": "roles/azure-configuration/tasks/main.yml",
"content": "---\n- name: Host Info Facts\n command: \"{{ command }}\"\n register: host_info\n\n- name: Print Host Name\n debug:\n msg: \"hostName is {{ host_info.stdout }}\"\n\n- name: Install Nginx\n apt:\n name: nginx\n state: present\n\n-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 289,
"all_permissive": false
} |
ansible_role | devos-quickstarter/ansible-quickstarter | 9a9dc157666902fcdb28eaf1468db9285b6481b8 | 0 | roles/azure-provisioning_vm | 134 | [
"no_license"
] | [
{
"path": "roles/azure-provisioning_vm/tasks/main.yml",
"content": "---\n- name: Create Azure VM Instance\n azure_rm_virtualmachine:\n resource_group: \"{{resource_group}}\"\n name: \"{{instance_name}}\"\n vm_size: \"{{vm_size}}\"\n admin_username: azureuser\n ssh_password_enabled: false\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 519,
"all_permissive": false
} |
ansible_role | devos-quickstarter/ansible-quickstarter | 9a9dc157666902fcdb28eaf1468db9285b6481b8 | 0 | roles/gcp-provisioning_vm | 134 | [
"no_license"
] | [
{
"path": "roles/gcp-provisioning_vm/tasks/main.yml",
"content": "---\n- name: create a disk\n gcp_compute_disk:\n name: \"{{ prefix_name }}-disk-instance\"\n size_gb: \"{{ disk_size }}\"\n source_image: \"{{ source_image }}\"\n zone: \"{{ zone }}\"\n project: \"{{ project }}\"\n auth_kin... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1235,
"all_permissive": false
} |
ansible_role | 5sfayas/LAMP_Stack-_Ansible | 80d28c735002997b5f5442434faf66a45d339b06 | 0 | roles/apache2 | 134 | [
"no_license"
] | [
{
"path": "roles/apache2/tasks/main.yml",
"content": "---\n# tasks file for apache2\n- name: install httpd\n apt: name={{item}} state=present\n with_items:\n - apache2\n - libapache2-mod-wsgi\n- name: turn on apache services\n service: name=apache2 state=started enabled=yes\n\n- name: de-activate d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 584,
"all_permissive": false
} |
ansible_role | 5sfayas/LAMP_Stack-_Ansible | 80d28c735002997b5f5442434faf66a45d339b06 | 0 | roles/control | 134 | [
"no_license"
] | [
{
"path": "roles/control/tasks/main.yml",
"content": "---\n# tasks file for control\n- name: install tools\n apt: name={{item}} state=present\n with_items:\n - python-httplib2\n - curl\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 133
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 133,
"all_permissive": false
} |
ansible_role | 5sfayas/LAMP_Stack-_Ansible | 80d28c735002997b5f5442434faf66a45d339b06 | 0 | roles/myapp | 134 | [
"no_license"
] | [
{
"path": "roles/myapp/vars/main.yml",
"content": "---\n# vars file for myapp",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 25
},
{
"path": "roles/myapp/tasks/main.yml",
"content": "---\n# tasks file for myapp\n- name: install httpd\n apt: name={{item}} stat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 847,
"all_permissive": false
} |
ansible_role | 5sfayas/LAMP_Stack-_Ansible | 80d28c735002997b5f5442434faf66a45d339b06 | 0 | roles/mysql | 134 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yml",
"content": "---\n# tasks file for mysql\n- name: install mysqldb\n apt: name=mysql-server state=present\n\n- name: install tools\n apt: name={{item}} state=present\n with_items:\n - python-mysqldb\n notify: restart mysql\n\n# If you need to do a case-insensitiv... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 998,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | devops/roles/base | 134 | [
"no_license"
] | [
{
"path": "devops/roles/base/templates/read_environment.sh.j2",
"content": "# {{ ansible_managed }}\n\nif [ -f {{ environment_file }} ]; then\n . {{ environment_file }}\nfi\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 94
},
{
"path": "devops/roles/base/tasks/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1754,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | devops/roles/deploy | 134 | [
"no_license"
] | [
{
"path": "devops/roles/deploy/tasks/main.yml",
"content": "---\n- set_fact: this_release_ts={{ lookup('pipe', 'date +%Y%m%d%H%M%S') }}\n tags: always\n\n- set_fact: this_release_path={{ releases_path }}/{{ this_release_ts }}\n\n- debug: msg='New release path {{ this_release_path }}'\n\n- name: Create new ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2150,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | devops/roles/nginx | 134 | [
"no_license"
] | [
{
"path": "devops/roles/nginx/tasks/main.yml",
"content": "---\n- name: Install nginx\n apt: name=nginx\n tags: nginx\n\n- name: Enable gzip\n template: src=gzip.conf.j2 dest=/etc/nginx/conf.d/gzip.conf\n notify: restart nginx\n tags: nginx\n\n- name: Disable default nginx site\n file: path=/etc/nginx... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2522,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | devops/roles/postgresql | 134 | [
"no_license"
] | [
{
"path": "devops/roles/postgresql/defaults/main.yml",
"content": "---\npostgresql_version: 9.3\npostgresql_ext_postgis_version: 2.1\npostgresql_extensions: []\npostgresql_admin_user: postgres\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 122
},
{
"path": "devo... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 987,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | devops/roles/unicorn | 134 | [
"no_license"
] | [
{
"path": "devops/roles/unicorn/handlers/main.yml",
"content": "---\n- name: restart application\n service: name={{ unicorn_app_name }} state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 87
},
{
"path": "devops/roles/unicorn/tasks/main.yml",
"co... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1158,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | devops/roles/webserver | 134 | [
"no_license"
] | [
{
"path": "devops/roles/webserver/meta/main.yml",
"content": "---\ndependencies:\n - ruby\n - nginx\n - unicorn\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 49
},
{
"path": "devops/roles/webserver/tasks/main.yml",
"content": "---\n- name: Create secrets... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 433,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/apt_proxy | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/apt_proxy/tasks/main.yml",
"content": "---\n- name: Setup apt-get proxy\n template: src=01proxy.j2 dest=/etc/apt/apt.conf.d/01proxy\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 92
},
{
"path": "templates/ansible/roles/apt_pr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 454,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/delayed_job | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/delayed_job/templates/upstart.conf.j2",
"content": "# {{ ansible_managed }}\n\ndescription \"{{ app_name }} delayed_job\"\n\nstart on runlevel [2]\nstop on runlevel [016]\n\nenv PATH=$PATH:/usr/local/bin:/usr/bin:/bin\nenv HOME={{ user_home_path }}\n\nrespawn\n\nsetuid {{ ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 665,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/mongodb | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/mongodb/templates/mongo.yml.j2",
"content": "# {{ ansible_managed }}\n\ndefaults: &defaults\n host: 127.0.0.1\n port: 27017\n options:\n w: 1\n pool_size: 1\n slave_ok: false\n ssl: false\n\ndevelopment:\n <<: *defaults\n database: {{ mongodb_db_name }}\n\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1387,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/mysql | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/mysql/templates/database.yml.j2",
"content": "# {{ ansible_managed }}\n\ndefault: &default\n adapter: mysql2\n encoding: utf8\n pool: 5\n\ndevelopment:\n <<: *default\n database: {{ mysql_db_name }}\n\n username: {{ mysql_db_user }}\n password: {{ mysql_db_password ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 956,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/nginx | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/nginx/templates/nginx_passenger.conf.j2",
"content": "# {{ ansible_managed }}\n\nserver {\n listen 80;\n listen 443 ssl;\n\n passenger_enabled on;\n passenger_app_env {{ rails_env }};\n\n sendfile off;\n\n server_name {{ server_name }};\n\n ssl_certificate {{ ssl_ce... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2275,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/passenger | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/passenger/handlers/main.yml",
"content": "---\n- name: restart application\n service: name=nginx state=restarted\n when: \"'application' in group_names\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 109
},
{
"path": "templa... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 668,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/puma | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/puma/tasks/main.yml",
"content": "---\n- name: Configure puma\n template: src=puma.rb.j2 dest={{ puma_config_path }}\n\n- name: Install puma\n command: /bin/bash -l -c 'gem install puma --no-ri --no-rdoc' chdir={{ app_path }}\n sudo: no\n\n- name: Create directories for... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2448,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/redis | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/redis/templates/upstart.conf.j2",
"content": "# {{ ansible_managed }}\n\ndescription \"Redis Server\"\n\nenv USER=redis\n\nstart on startup\nstop on shutdown\n\nrespawn\n\nexec start-stop-daemon --start --make-pidfile --pidfile {{ app_temp_path }}/pids/redis.pid --chuid $U... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 906,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/resque | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/resque/defaults/main.yml",
"content": "---\nresque: true\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 17
},
{
"path": "templates/ansible/roles/resque/tasks/main.yml",
"content": "---\n- name: Create upstart config\n temp... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 604,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/sidekiq | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/sidekiq/templates/upstart.conf.j2",
"content": "# {{ ansible_managed }}\n\ndescription \"{{ app_name }} sidekiq\"\n\nstart on runlevel [2]\nstop on runlevel [016]\n\nenv PATH=$PATH:/usr/local/bin:/usr/bin:/bin\nenv HOME={{ user_home_path }}\n\nrespawn\n\nsetuid {{ user_nam... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 612,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/swap | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/swap/defaults/main.yml",
"content": "---\nswap_file_path: /swapfile",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 29
},
{
"path": "templates/ansible/roles/swap/tasks/main.yml",
"content": "---\n- name: Create swap file\n co... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 729,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/unicorn | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/unicorn/defaults/main.yml",
"content": "---\nunicorn_app_name: \"{{ app_name }}\"\nserver_restart_command: /sbin/restart {{ app_name }}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 92
},
{
"path": "templates/ansible/roles/uni... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1170,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/vim | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/vim/tasks/main.yml",
"content": "---\n- name: Install vim\n apt: name=vim\n\n- name: Prepare dirs for pathogen.vim\n file: path={{ item }} state=directory owner={{ user_name }} group={{ group_name }} recurse=yes\n with_items:\n - '{{ vim_autoload_path }}'\n - '{{ ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1132,
"all_permissive": false
} |
ansible_role | a-chernykh/railsbox | 0405ac0666927f21dbafe714bd2291e3b4f5fa09 | 320 | templates/ansible/roles/webserver | 134 | [
"no_license"
] | [
{
"path": "templates/ansible/roles/webserver/tasks/main.yml",
"content": "---\n- include: remote.yml\n when: target == 'server'\n\n- name: Create and migrate DB\n command: /bin/bash -l -c 'rake db:create db:migrate' chdir={{ app_path }}\n sudo_user: '{{ user_name }}'\n ignore_errors: yes\n tags:\n -... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1576,
"all_permissive": false
} |
ansible_role | ajpiano/jrocks-ice-creams | ee170a69c45e975e52e0a2eee4c923e60ccd3997 | 1 | deploy/ansible/roles/base | 134 | [
"no_license"
] | [
{
"path": "deploy/ansible/roles/base/tasks/main.yml",
"content": "# Get the box up and running. These tasks run before the box is configured\n# or the project is cloned or built. All system dependencies should be\n# installed here.\n\n- name: add keys to apt\n apt_key: url={{item}} state=present\n with_it... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1256,
"all_permissive": false
} |
ansible_role | ajpiano/jrocks-ice-creams | ee170a69c45e975e52e0a2eee4c923e60ccd3997 | 1 | deploy/ansible/roles/deploy | 134 | [
"no_license"
] | [
{
"path": "deploy/ansible/roles/deploy/tasks/build.yml",
"content": "# All project build tasks go here. These tasks will only be run for the\n# specified commit if the commit hasn't been deployed before or if \"force\"\n# is true.\n\n# The `chdir` argument of the `command` module unexpectedly fails in this ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 794,
"all_permissive": false
} |
ansible_role | iamxaero/logs | 2edc973060d7adc254460a98ab9f59471fca1eee | 1 | roles/elastic | 134 | [
"no_license"
] | [
{
"path": "roles/elastic/tasks/centos.yml",
"content": "---\n\n- name: install dependancies\n become: yes\n yum:\n name: \"{{item}}\"\n state: present\n with_items:\n - python-setuptools\n - java-1.8.0-openjdk-headless\n\n- name: ensure elasticsearch and curator repositories are added\n beco... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 6712,
"all_permissive": false
} |
ansible_role | iamxaero/logs | 2edc973060d7adc254460a98ab9f59471fca1eee | 1 | roles/kafka | 134 | [
"no_license"
] | [
{
"path": "roles/kafka/templates/kafka-sysconfig.j2",
"content": "# Kafka sysconfig\nKAFKA_HEAP_OPTS=\"-Xmx{{ kafka_heap_size | default(1)}}G -Xms{{ kafka_heap_size | default(1) }}G\"\nOPTIONS=\"{{ kafka_install_dir }}/config/server.properties\"\n\nJMX_PORT=\"{{ kafka_jmx_port }}\"\n",
"license_type": "... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 6599,
"all_permissive": false
} |
ansible_role | iamxaero/logs | 2edc973060d7adc254460a98ab9f59471fca1eee | 1 | roles/kibana | 134 | [
"no_license"
] | [
{
"path": "roles/kibana/handlers/main.yml",
"content": "---\n\n- name: restart kibana\n become: yes\n systemd:\n name: kibana\n daemon_reload: yes\n state: restarted\n enabled: yes\n when: no_restart is not defined\n\n- name: reload nginx\n become: yes\n service:\n name: nginx\n s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 9667,
"all_permissive": false
} |
ansible_role | iamxaero/logs | 2edc973060d7adc254460a98ab9f59471fca1eee | 1 | roles/logstash | 134 | [
"no_license"
] | [
{
"path": "roles/logstash/defaults/main.yml",
"content": "---\nlogstash_jmx_port: 9999\njmx_run_user: \"logstash\"\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 54
},
{
"path": "roles/logstash/tasks/main.yml",
"content": "---\n\n#- name: ensure elasticsea... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4047,
"all_permissive": false
} |
ansible_role | iamxaero/logs | 2edc973060d7adc254460a98ab9f59471fca1eee | 1 | roles/rsyslog | 134 | [
"no_license"
] | [
{
"path": "roles/rsyslog/handlers/main.yml",
"content": "---\n\n- name: restart rsyslog\n become: yes\n service:\n name: rsyslog\n state: restarted\n\n- name: reload systemd\n become: yes\n command: >\n systemctl daemon-reload\n\n- name: restart systemd-journald\n service:\n name: systemd-j... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3775,
"all_permissive": false
} |
ansible_role | andygeorge/ansible-terraform-driver | b481d76068a66f04e0584ac9f92200e2712f0bb0 | 2 | ansible/roles/terraform | 134 | [
"no_license"
] | [
{
"path": "ansible/roles/terraform/tasks/apply.yml",
"content": "---\n# TODO: delete this workaround for the following issue, after issue is fixed\n# https://github.com/hashicorp/terraform/issues/21830\n#\n# tl;dr this issue cascades to https://github.com/ansible/ansible/issues/59089,\n# which prevents us f... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1133,
"all_permissive": false
} |
ansible_role | puneet-devops/ansible_tower | 14dadd1bd812da7c3576c5a936bc9c4174a130c1 | 0 | roles/ec2 | 134 | [
"no_license"
] | [
{
"path": "roles/ec2/tasks/main.yml",
"content": "---\n- name: ProvisionEC2Box\n ec2:\n region: us-east-2 #\"{{ ec2.region }}\"\n keypair: puneet_aws #\"{{ ec2.credentials }}\"\n #instance_tags: \"{{ ec2.tags }}\"\n image: ami-0cd3dfa4e37921605 #\"{{ ec2.image }}\"\n instance_type: t2.micro ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 532,
"all_permissive": false
} |
ansible_role | veeravee93/udapeople_web | 7b9ed2c7365e5254a3a9f7f7661f660b8a1c8bfa | 0 | .circleci/ansible/roles/deploy | 134 | [
"no_license"
] | [
{
"path": ".circleci/ansible/roles/deploy/tasks/main.yml",
"content": "---\n- name: \"update apt packages.\"\n become: yes\n apt:\n update_cache: yes\n\n- name: \"upgrade packages.\"\n become: true\n apt:\n upgrade: \"yes\"\n\n- name: \" Install dependencies\"\n become: true\n apt:\n name: [\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 904,
"all_permissive": false
} |
ansible_role | pigriffin/bug-ansible-handler | ba6a08986dfefcc4b54c34c4f3397a82d3d0e7dd | 0 | roles/role-b | 134 | [
"no_license"
] | [
{
"path": "roles/role-b/tasks/main.yml",
"content": "---\n\n- name: role-b\n command: echo role-b\n notify: the-handler\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 66
},
{
"path": "roles/role-b/meta/main.yml",
"content": "---\n\ndependencies:\n - rol... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 103,
"all_permissive": false
} |
ansible_role | vamsichitipothu/harish | c361963fc66726500a2aa176e618ed8e6e019c9b | 0 | roles/ansible_awx | 134 | [
"no_license"
] | [
{
"path": "roles/ansible_awx/tasks/main.yml",
"content": "---\n- name: yum update\n yum:\n name: '*'\n state: latest\n update_cache: yes\n\n- name: easy_install pip\n easy_install:\n name: pip\n\n- name: install ansible\n pip:\n name: ansible\n state: latest\n- name: install yum\n yum:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 802,
"all_permissive": false
} |
ansible_role | Maarsupilami/udemx-homework | ca2a57f995e0546ad8922991db01cd39c5ea3d67 | 0 | Ansible/roles/docker | 134 | [
"no_license"
] | [
{
"path": "Ansible/roles/docker/templates/flask-app.service.j2",
"content": "[Unit]\nDescription=Docker container for {{ container_name }}\nAfter=docker.service\n\n[Service]\nRestart=always\nExecStart=/usr/bin/docker run -p {{ container_ports[0] }} --name {{ container_name }} {{ container_image }}\nExecStop... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2104,
"all_permissive": false
} |
ansible_role | Maarsupilami/udemx-homework | ca2a57f995e0546ad8922991db01cd39c5ea3d67 | 0 | Ansible/roles/init | 134 | [
"no_license"
] | [
{
"path": "Ansible/roles/init/tasks/main.yml",
"content": "---\n- name: Change root password\n ansible.builtin.user:\n name: \"root\"\n password: \"{{ <PASSWORD> | ansible.builtin.password_hash('<PASSWORD>') }}\"\n\n- name: Update all apt packages\n ansible.builtin.apt:\n update_cache: true ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3965,
"all_permissive": false
} |
ansible_role | Maarsupilami/udemx-homework | ca2a57f995e0546ad8922991db01cd39c5ea3d67 | 0 | Ansible/roles/mysql | 134 | [
"no_license"
] | [
{
"path": "Ansible/roles/mysql/defaults/main.yml",
"content": "---\ndb_container_name: mariadb\ndb_ports: \n - \"7000:3306\"\ndb_image: mariadb:11.0-rc\ndb_name: udemx_db\ndb_user: udemx",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 115
},
{
"path": "Ansible/role... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1784,
"all_permissive": false
} |
ansible_role | Maarsupilami/udemx-homework | ca2a57f995e0546ad8922991db01cd39c5ea3d67 | 0 | Ansible/roles/ports | 134 | [
"no_license"
] | [
{
"path": "Ansible/roles/ports/vars/main.yml",
"content": "---\n# vars file for ports\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 26
},
{
"path": "Ansible/roles/ports/defaults/main.yml",
"content": "---\n# defaults file for ports\n",
"license_type": "... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 353,
"all_permissive": false
} |
ansible_role | Maarsupilami/udemx-homework | ca2a57f995e0546ad8922991db01cd39c5ea3d67 | 0 | Ansible/roles/ssh | 134 | [
"no_license"
] | [
{
"path": "Ansible/roles/ssh/tasks/main.yml",
"content": "---\n- name: Create directory for keys\n file:\n path: /opt/udemx/.ssh\n state: directory\n\n- name: Generate an OpenSSH keypair with the default values (4096 bits, rsa)\n community.crypto.openssh_keypair:\n owner: udemx\n group: udemx\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 298,
"all_permissive": false
} |
ansible_role | Maarsupilami/udemx-homework | ca2a57f995e0546ad8922991db01cd39c5ea3d67 | 0 | Ansible/roles/user | 134 | [
"no_license"
] | [
{
"path": "Ansible/roles/user/tasks/main.yml",
"content": "---\n- name: Create user - maarsu\n ansible.builtin.user:\n name: \"maarsu\"\n shell: /bin/bash\n password: \"{{ <PASSWORD> | ansible.builtin.password_hash('<PASSWORD>') }}\"\n groups: ['sudo' , 'docker']\n append: true\n create_h... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 657,
"all_permissive": false
} |
ansible_role | SuperRandomGuy/TP-DevOps | b21ad3ac2574ec9bde7db0948153e1d655421ac9 | 0 | ansible/roles/create-network | 134 | [
"no_license"
] | [
{
"path": "ansible/roles/create-network/tasks/main.yml",
"content": "---\n- name: Create Docker Network\n docker_network:\n name: app-network\n state: present",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 92
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 92,
"all_permissive": false
} |
ansible_role | SuperRandomGuy/TP-DevOps | b21ad3ac2574ec9bde7db0948153e1d655421ac9 | 0 | ansible/roles/launch-app | 134 | [
"no_license"
] | [
{
"path": "ansible/roles/launch-app/tasks/main.yml",
"content": "---\n\n- name: Run backend\n docker_container:\n name: tp1_student\n image: nickchae/tp1-backend:1.0\n networks:\n - name: app-network",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 142
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 142,
"all_permissive": false
} |
ansible_role | SuperRandomGuy/TP-DevOps | b21ad3ac2574ec9bde7db0948153e1d655421ac9 | 0 | ansible/roles/launch-database | 134 | [
"no_license"
] | [
{
"path": "ansible/roles/launch-database/tasks/main.yml",
"content": "---\n\n- name: Run database\n docker_container:\n name: db\n image: nickchae/tp1-database:1.0\n networks:\n - name: app-network",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 135
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 135,
"all_permissive": false
} |
ansible_role | SuperRandomGuy/TP-DevOps | b21ad3ac2574ec9bde7db0948153e1d655421ac9 | 0 | ansible/roles/launch-proxy | 134 | [
"no_license"
] | [
{
"path": "ansible/roles/launch-proxy/tasks/main.yml",
"content": "---\n- name: Run HTTPD\n docker_container:\n name: tp1_http\n ports: 80:80\n image: nickchae/tp1-httpd:1.0\n networks:\n - name: app-network",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes":... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 151,
"all_permissive": false
} |
ansible_role | Alcares/ansible | 250d0469771be95f5c11e7e009a0caf2475177ab | 0 | roles/base | 134 | [
"no_license"
] | [
{
"path": "roles/base/tasks/main.yml",
"content": "- name: add ssh key for ansible-node user\n tags: always\n authorized_key:\n user: ansible-node\n key: \"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFhYkZrtCu9EBXt4neMfAPWdOK7rpSQVuIT8qFI59lip Connection for Ansible\"\n\n- name: generate sshd_config file f... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 422,
"all_permissive": false
} |
ansible_role | Alcares/ansible | 250d0469771be95f5c11e7e009a0caf2475177ab | 0 | roles/db_servers | 134 | [
"no_license"
] | [
{
"path": "roles/db_servers/tasks/main.yml",
"content": "- name: install mariadb package\n apt:\n name: mariadb-server\n state: latest\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 83
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 83,
"all_permissive": false
} |
ansible_role | Alcares/ansible | 250d0469771be95f5c11e7e009a0caf2475177ab | 0 | roles/web_servers | 134 | [
"no_license"
] | [
{
"path": "roles/web_servers/tasks/main.yml",
"content": "- name: install apache package with PHP support\n tags: apache, web\n package:\n name:\n - \"{{ apache_package_name }}\"\n - \"{{ php_package_name }}\"\n state: latest\n\n- name: start and enable apache service\n tags: apache, http... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 733,
"all_permissive": false
} |
ansible_role | Alcares/ansible | 250d0469771be95f5c11e7e009a0caf2475177ab | 0 | roles/workstations | 134 | [
"no_license"
] | [
{
"path": "roles/workstations/tasks/main.yml",
"content": "- name: insall unzip\n package:\n name: unzip\n\n- name: install terraform\n unarchive:\n src: https://releases.hashicorp.com/terraform/0.12.28/terraform_0.12.28_linux _amd64.zip\n dest: /urs/local/bin\n remote_src: true\n mode: 075... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 275,
"all_permissive": false
} |
ansible_role | whipped5000/kali-build | 8a360b2d71211524da9c3db6f49b9c6cb56c61c2 | 0 | roles/install-tools | 127 | [
"no_license"
] | [
{
"path": "roles/install-tools/tasks/main.yml",
"content": "---\n- include_tasks: apt-stuff.yml\n- include_tasks: docker.yml\n- include_tasks: bloodhound-ce.yml\n- include_tasks: golang.yml\n- include_tasks: kerbrute.yml\n- include_tasks: github-repos.yml\n- include_tasks: python-tools.yml\n- include_tasks:... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 4295,
"all_permissive": false
} |
ansible_role | samiamoura/pipeline-devops | 8bc42e108fc408062a63354492f0ec805057f757 | 1 | deploy-ansible/roles/service_install_run | 127 | [
"no_license"
] | [
{
"path": "deploy-ansible/roles/service_install_run/templates/application.properties.j2",
"content": "## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)\nspring.datasource.url={{ service_install_run_data_source_connection }}\nspring.datasource.username={{ service_install_run_data_sour... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2119,
"all_permissive": false
} |
ansible_role | azavea/ansible-papertrail | a94301a5b8224752f33bf75901422d6ab708ca35 | 20 | examples/roles/app.papertrail | 127 | [
"permissive"
] | [
{
"path": "examples/roles/app.papertrail/meta/main.yml",
"content": "---\ndependencies:\n - { role: \"azavea.papertrail\" }\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 52
},
{
"path": "examples/roles/app.papertrail/templates/log_files... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 550,
"all_permissive": true
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.