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 | asciiprod/wp-ansible-demo | 69ab04a0c994a3df3851b7262d186cb9213c90de | 4 | roles/apache | 5,177 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/main.yml",
"content": "---\n- name: install apache packages\n apt:\n name: ['apache2', 'libapache2-mod-php', 'php-mysql', 'php-curl', 'php-gd']\n state: present\n install_recommends: no\n\n- name: enable apache modules\n apache2_module:\n state: present\n name:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 628,
"all_permissive": false
} |
ansible_role | asciiprod/wp-ansible-demo | 69ab04a0c994a3df3851b7262d186cb9213c90de | 4 | roles/common | 5,177 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "- name: Update apt cache and system\n apt: \n upgrade: dist\n update_cache: yes \n cache_valid_time: 3600\n dpkg_options: 'force-confold,force-confdef'\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 161... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 161,
"all_permissive": false
} |
ansible_role | asciiprod/wp-ansible-demo | 69ab04a0c994a3df3851b7262d186cb9213c90de | 4 | roles/mysql | 5,177 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yml",
"content": "- name: install mysql server\n apt:\n name: ['mariadb-server', 'python3-mysqldb', 'python-mysqldb'] \n state: present\n install_recommends: no\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 149
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 149,
"all_permissive": false
} |
ansible_role | asciiprod/wp-ansible-demo | 69ab04a0c994a3df3851b7262d186cb9213c90de | 4 | roles/wordpress | 5,177 | [
"no_license"
] | [
{
"path": "roles/wordpress/tasks/main.yml",
"content": "---\n- name: Download WordPress\n get_url: \n url: \"http://wordpress.org/wordpress-{{ wp_version }}.tar.gz\"\n dest: \"/srv/wordpress-{{ wp_version }}.tar.gz\"\n checksum: \"sha1:{{ wp_sha1sum }}\"\n\n- name: Extract archive\n unarchive: \n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1613,
"all_permissive": false
} |
ansible_role | Anirudhann/ansible_implementation | 918fac50b96ec1c6ef656e0f13325a525af1a917 | 1 | roles/common | 5,177 | [
"no_license"
] | [
{
"path": "roles/common/tasks/04_migrations.yml",
"content": "#Run db migrations and get all static files\n\n- name: \"Setup Environment\"\n become: true\n shell: \". {{ deploy_dir }}/.env\"\n\n- name: \"Make migrations\"\n command: chdir={{ deploy_dir }} #command here\n # E.g. If application is flask, ... | {
"task_files": 9,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 6487,
"all_permissive": false
} |
ansible_role | jkesarwani123/roboshop-INFRA-ansible | 5e4951c4d33c2a0c165c8b4e2e389e2c52fe1b42 | 0 | roles/common | 5,177 | [
"no_license"
] | [
{
"path": "roles/common/tasks/schema_setup.yml",
"content": "- name: Mongo Schema\n when: schema_setup == \"mongo\"\n block:\n - name: Copy MongoDB repo\n ansible.builtin.copy:\n src: mongo.repo\n dest: /etc/yum.repos.d/mongo.repo\n\n - name: Install MongoDB Client\n ansible.... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2047,
"all_permissive": false
} |
ansible_role | cmorton9249/configured-gitlab-environment-toolkit | 16224a0f048379049e6ea5b333dcd09d88080c79 | 0 | ansible/roles/common | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/uninstall.yml",
"content": "---\n- name: Run gitlab-ctl cleanse against all Omnibus nodes\n command: gitlab-ctl cleanse\n register: result\n failed_when:\n - result.rc != 0\n - ('No such file or directory' not in result.msg)\n\n- name: Unlock GitLab package ins... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 5061,
"all_permissive": false
} |
ansible_role | cmorton9249/configured-gitlab-environment-toolkit | 16224a0f048379049e6ea5b333dcd09d88080c79 | 0 | ansible/roles/gitlab_charts | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/gitlab_charts/defaults/main.yml",
"content": "---\ngitlab_charts_repo_name: 'gitlab'\ngitlab_charts_repo_url: \"https://charts.gitlab.io/\"\n\ngitlab_charts_show_values: false\n\n# Cloud Provider specific\ngcp_backups_service_account_key_file: \"\"\n\naws_partition: \"\"\naws_accoun... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 30037,
"all_permissive": false
} |
ansible_role | cmorton9249/configured-gitlab-environment-toolkit | 16224a0f048379049e6ea5b333dcd09d88080c79 | 0 | ansible/roles/gitlab_geo | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/gitlab_geo/tasks/copy-secrets.yml",
"content": "---\n- name: Copy Secrets - Get GitLab Secrets from Primary site\n block:\n - name: Check if GitLab Secrets file exists\n stat:\n path: \"/etc/gitlab/gitlab-secrets.json\"\n register: gitlab_secrets_file_path\n\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 7597,
"all_permissive": false
} |
ansible_role | cmorton9249/configured-gitlab-environment-toolkit | 16224a0f048379049e6ea5b333dcd09d88080c79 | 0 | ansible/roles/gitlab_nfs | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/gitlab_nfs/tasks/main.yml",
"content": "---\n- name: Install NFS Server\n package:\n name: \"{{ 'nfs-kernel-server' if ansible_facts['os_family'] == 'Debian' else 'nfs-utils' }}\"\n register: result\n retries: 2\n delay: 3\n until: result is success\n\n- name: Disable NFS Se... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2285,
"all_permissive": false
} |
ansible_role | cmorton9249/configured-gitlab-environment-toolkit | 16224a0f048379049e6ea5b333dcd09d88080c79 | 0 | ansible/roles/haproxy | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/haproxy/tasks/main.yml",
"content": "---\n- name: Configure Docker\n include_role:\n name: geerlingguy.docker\n when: ansible_facts['distribution'] != \"Amazon\"\n\n- name: Configure Docker (RHEL - Amazon Linux 2)\n shell: amazon-linux-extras install docker -y && systemctl ena... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 4792,
"all_permissive": false
} |
ansible_role | n0vabyte/jitsi-occ | b1ad6e9b5f3437181365451163cc91af96ca0325 | 0 | roles/post | 5,177 | [
"no_license"
] | [
{
"path": "roles/post/tasks/motd.yml",
"content": "---\n# motd and creds gen\n- name: copy MOTD template to /etc/motd\n template:\n src: templates/motd.j2\n dest: /etc/motd\n\n- name: writing jitsi creds into file\n copy:\n dest: \"{{ item.user }}/.credentials\"\n mode: '0600'\n content: |\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 384,
"all_permissive": false
} |
ansible_role | sebastianfeldmann/ansible-deployment | 7c3fecefef49a5f9bc867457056e9089030c0ee0 | 2 | roles/my-project | 5,177 | [
"no_license"
] | [
{
"path": "roles/my-project/handlers/main.yml",
"content": "- name: restart apache2\n service: name=apache2 enabled=yes state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 76
},
{
"path": "roles/my-project/tasks/main.yml",
"content": "# create th... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1386,
"all_permissive": false
} |
ansible_role | iloveai8086/autoware_my | f4c91a59b01353184d122e5f453864673d4518ab | 3 | ansible/roles/autoware | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/autoware/defaults/main.yml",
"content": "---\nrelease: \"melodic\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 23
},
{
"path": "ansible/roles/autoware/tasks/main.yml",
"content": "- name: Autoware (update rosdep)\n command: rosde... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 581,
"all_permissive": false
} |
ansible_role | iloveai8086/autoware_my | f4c91a59b01353184d122e5f453864673d4518ab | 3 | ansible/roles/cuda | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/cuda/tasks/main.yml",
"content": "- name: CUDA (add nvidia key)\n become: yes\n apt_key:\n url: http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub\n\n- name: CUDA (install CUDA 10.2 repository)\n become: yes\n apt:\n deb: http://develope... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 782,
"all_permissive": false
} |
ansible_role | iloveai8086/autoware_my | f4c91a59b01353184d122e5f453864673d4518ab | 3 | ansible/roles/lanelet2 | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/lanelet2/tasks/main.yml",
"content": "---\n- name: Lanelet2 (install dependencies for building packages)\n apt:\n name:\n - libboost-dev\n - libeigen3-dev\n - libgeographic-dev\n - libpugixml-dev\n - libpython-dev\n - libboost-python-dev\n - py... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 750,
"all_permissive": false
} |
ansible_role | iloveai8086/autoware_my | f4c91a59b01353184d122e5f453864673d4518ab | 3 | ansible/roles/osqp | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/osqp/tasks/main.yaml",
"content": "---\n- name: osqp (clone repository)\n become: no\n git:\n repo: https://github.com/oxfordcontrol/osqp.git\n dest: \"{{ role_path }}/osqp\"\n version: release-0.6.0\n\n- name: osqp (make build dir)\n become: no\n file:\n path: \"{{ ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 563,
"all_permissive": false
} |
ansible_role | iloveai8086/autoware_my | f4c91a59b01353184d122e5f453864673d4518ab | 3 | ansible/roles/ros | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/ros/tasks/main.yml",
"content": "---\n- name: ROS (set up your keys)\n apt_key:\n keyserver: \"{{ keyserver }}\"\n id: \"{{ keyid }}\"\n become: yes\n\n- name: ROS (add source list)\n apt_repository:\n repo: \"deb {{ repository }} {{ ansible_lsb.codename }} main\"\n s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1275,
"all_permissive": false
} |
ansible_role | iloveai8086/autoware_my | f4c91a59b01353184d122e5f453864673d4518ab | 3 | ansible/roles/tensorrt | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/tensorrt/tasks/main.yml",
"content": "- name: TensorRT (install machine learning repository)\n become: yes\n apt:\n deb: https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64/nvidia-machine-learning-repo-ubuntu1804_1.0.0-1_amd64.deb\n\n- name: T... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1196,
"all_permissive": false
} |
ansible_role | vmware-archive/greenplum-workshop | 09b6f6e2c5132ec04dbc16ac942126372e53258d | 5 | workshop-setup-ansible/install_gp_workshop/roles/bootstrap | 5,177 | [
"no_license"
] | [
{
"path": "workshop-setup-ansible/install_gp_workshop/roles/bootstrap/tasks/main.yml",
"content": "---\n# Check to see if Python 2 is installed. If not, install it.\n- name: Install Python 2\n package:\n name: python\n state: present\n",
"license_type": "no_license",
"detected_licenses": ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 141,
"all_permissive": false
} |
ansible_role | vmware-archive/greenplum-workshop | 09b6f6e2c5132ec04dbc16ac942126372e53258d | 5 | workshop-setup-ansible/install_gp_workshop/roles/common | 5,177 | [
"no_license"
] | [
{
"path": "workshop-setup-ansible/install_gp_workshop/roles/common/tasks/main.yml",
"content": "---\n\n- name: Install basic packages\n package: name={{ item }} state=present\n with_items:\n - java-1.8.0\n - expect\n - m4\n - subversion\n - sysstat\n - postgresql\n - python-psycopg2\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1348,
"all_permissive": false
} |
ansible_role | vmware-archive/greenplum-workshop | 09b6f6e2c5132ec04dbc16ac942126372e53258d | 5 | workshop-setup-ansible/install_gp_workshop/roles/dbadmin | 5,177 | [
"no_license"
] | [
{
"path": "workshop-setup-ansible/install_gp_workshop/roles/dbadmin/tasks/main.yml",
"content": "---\n- name: Greenplum administrative changes\n block:\n - name: Find installed GP version\n shell: \"source {{ greenplum_env_file }} && $GPHOME/bin/postgres --gp-version\"\n register: postgres_gp_versio... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 11761,
"all_permissive": false
} |
ansible_role | vmware-archive/greenplum-workshop | 09b6f6e2c5132ec04dbc16ac942126372e53258d | 5 | workshop-setup-ansible/install_gp_workshop/roles/dbuser | 5,177 | [
"no_license"
] | [
{
"path": "workshop-setup-ansible/install_gp_workshop/roles/dbuser/tasks/main.yml",
"content": "---\n# Database User Configuration\n\n- name: DBUSER | Modify the user's .bashrc file\n blockinfile:\n path: /home/{{ greenplum_user }}/.bashrc\n create: yes\n owner: \"{{ greenplum_user }}\"\n mode:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1745,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/aws-create-ami | 5,177 | [
"no_license"
] | [
{
"path": "roles/aws-create-ami/tasks/main.yml",
"content": "---\n# tasks file for aws-create-ami\n- name: Create AMI\n ec2_ami:\n region: \"{{ region }}\"\n instance_id: \"{{ ec2_id }}\"\n name: \"{{ app_name }}-{{ ansible_date_time.iso8601 | regex_replace('[^a-zA-Z0-9]', '-') }}\"\n wait: yes... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 271,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/aws-tag | 5,177 | [
"no_license"
] | [
{
"path": "roles/aws-tag/tasks/main.yml",
"content": "---\n# This will install nagios\n- ec2_remote_facts:\n aws_access_key: \"{{ AWS_ACCESS_KEY_ID }}\"\n aws_secret_key: \"{{ AWS_SECRET_ACCESS_KEY }}\"\n region: 'us-east-1'\n filters:\n instance-state-name: running\n tag:Environment: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 494,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/haproxy-client-aws | 5,177 | [
"no_license"
] | [
{
"path": "roles/haproxy-client-aws/templates/haproxy.cfg.j2",
"content": "#---------------------------------------------------------------------\n# Example configuration for a possible web application. See the\n# full configuration options online.\n#\n# http://haproxy.1wt.eu/download/1.4/doc/configurati... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 4195,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/haproxy-server | 5,177 | [
"no_license"
] | [
{
"path": "roles/haproxy-server/tasks/main.yml",
"content": "--- \n - debug:\n msg: \"System {{ inventory_hostname }} has OS {{ ansible_distribution }}\"\n - name: haproxy install additional packages \n become: yes\n yum: pkg={{ item }} \n state=present \n update_cache=yes\n with_item... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1083,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/haproxy-server-uninstall | 5,177 | [
"no_license"
] | [
{
"path": "roles/haproxy-server-uninstall/handlers/main.yml",
"content": "---\n# handlers file for haproxy-server-uninstall",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 48
},
{
"path": "roles/haproxy-server-uninstall/tasks/main.yml",
"content": "---\n# tasks... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 368,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/nagios-client-config | 5,177 | [
"no_license"
] | [
{
"path": "roles/nagios-client-config/vars/main.yml",
"content": "---\n# vars file for tomcat\nhttp_port: 49003\napp_name: customerApp\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 66
},
{
"path": "roles/nagios-client-config/tasks/main.yml",
"content": "---... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2935,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/nagios-client-config-aws | 5,177 | [
"no_license"
] | [
{
"path": "roles/nagios-client-config-aws/tasks/main.yml",
"content": "---\n# This will install nagios\n- ec2_remote_facts:\n aws_access_key: \"{{ AWS_ACCESS_KEY_ID }}\"\n aws_secret_key: \"{{ AWS_SECRET_ACCESS_KEY }}\"\n region: 'us-east-1'\n filters:\n instance-state-name: running\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3421,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/nagios-client-config-unistall | 5,177 | [
"no_license"
] | [
{
"path": "roles/nagios-client-config-unistall/handlers/main.yml",
"content": "---\n# handlers file for nagios\n- name: restart httpd\n become: yes\n service: name=httpd state=restarted\n\n- name: restart nagios\n become: yes \n service: name=nagios state=restarted\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 6295,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/nagios-client-uninstall | 5,177 | [
"no_license"
] | [
{
"path": "roles/nagios-client-uninstall/tasks/nagios-client.yml",
"content": "---\n# This role contains common nagios-client that will run on all nodes.\n# This will install nagios\n\n- name: install some useful nagios plugins\n yum: name={{ item }} state=absent\n become: yes\n with_items:\n - nagios-... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1586,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/nagios-server | 5,177 | [
"no_license"
] | [
{
"path": "roles/nagios-server/tasks/main.yml",
"content": "---\n# This will install nagios\n- name: Add xxxx repositories \n become: yes\n yum_repository:\n name: epel\n description: EPEL YUM repo\n file: external_repos\n baseurl: http://dl.fedoraproject.org/pub/epel/7/x86_64/ \n gpgcheck: no\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1628,
"all_permissive": false
} |
ansible_role | chaitu-papa/ansible-playbooks | 287b851636655767d6bfd74a231fa5bbdd2a8026 | 0 | roles/tomcat-setup-uninstall | 5,177 | [
"no_license"
] | [
{
"path": "roles/tomcat-setup-uninstall/handlers/main.yml",
"content": "---\n# handlers file for tomcat-setup-uninstall",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 46
},
{
"path": "roles/tomcat-setup-uninstall/tasks/main.yml",
"content": "---\n# tasks file ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 468,
"all_permissive": false
} |
ansible_role | joecwu/blockmed-ansible | c3f9ea16b2139df47d78330ddd12e4d8d9e1b27d | 1 | roles/bc-ipfs | 5,177 | [
"no_license"
] | [
{
"path": "roles/bc-ipfs/templates/node_env.json.j2",
"content": "{\n \"hotjar\": {\n \"id\": \"{{hotjar.id}}\",\n \"version\": {{hotjar.version}}\n },\n \"ipfs\": {\n \"api\": {\n \"host\": \"{{ipfs.api.host}}\",\n \"port\": \"{{ipfs.api.port}}\",\n \"protocol\": \"{{ipfs.api.pro... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4685,
"all_permissive": false
} |
ansible_role | joecwu/blockmed-ansible | c3f9ea16b2139df47d78330ddd12e4d8d9e1b27d | 1 | roles/common | 5,177 | [
"no_license"
] | [
{
"path": "roles/common/files/clear-docker-images.sh",
"content": "#!/bin/bash\nfor i in `docker images | grep platform | awk '{print $3}' | uniq`;do docker rmi -f $i;done\ndocker rmi $(docker images -f \"dangling=true\" -q)",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1619,
"all_permissive": false
} |
ansible_role | joecwu/blockmed-ansible | c3f9ea16b2139df47d78330ddd12e4d8d9e1b27d | 1 | roles/filebeat | 5,177 | [
"no_license"
] | [
{
"path": "roles/filebeat/tasks/redhat.yml",
"content": "---\n- name: add rpm key for elastic.co\n become: true\n rpm_key:\n key: \"{{ filebeat_gpg_url }}\"\n\n- name: create beats yum repo\n become: true\n yumrepo:\n name: beats\n baseurl: \"{{ filebeat_repo_url }}\"\n enabled: yes\n gpg... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 5316,
"all_permissive": false
} |
ansible_role | JohnPreston/eucalyptus-zabbix-profiles | 7f6164d9e14a3a3a66b7654bd9995a87f618d395 | 0 | playbooks/roles/zabbix-ceph | 5,177 | [
"no_license"
] | [
{
"path": "playbooks/roles/zabbix-ceph/tasks/main.yml",
"content": "#\n# Configure Zabbix template\n#\n\n- name: Enable sudoers.d file lookup\n lineinfile: dest=/etc/sudoers regexp=\"includedir\" line=\"#includedir /etc/sudoers.d\"\n tags:\n - zabbix\n - sudo\n - ceph\n\n- name: Copy Zabbix sudoers pro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1665,
"all_permissive": false
} |
ansible_role | JohnPreston/eucalyptus-zabbix-profiles | 7f6164d9e14a3a3a66b7654bd9995a87f618d395 | 0 | playbooks/roles/zabbix-euca-nc | 5,177 | [
"no_license"
] | [
{
"path": "playbooks/roles/zabbix-euca-nc/tasks/main.yml",
"content": "#\n# Configure Zabbix template\n#\n\n- name: Configure zabbix template\n template: src=zabbix_agent.conf.j2 dest=/etc/zabbix_agent.conf\n tags:\n - zabbix\n - configuration\n\n- name: Configure zabbix agentD template\n template: src... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1238,
"all_permissive": false
} |
ansible_role | JohnPreston/eucalyptus-zabbix-profiles | 7f6164d9e14a3a3a66b7654bd9995a87f618d395 | 0 | playbooks/roles/zabbix-euca-ufs | 5,177 | [
"no_license"
] | [
{
"path": "playbooks/roles/zabbix-euca-ufs/handlers/main.yml",
"content": "\n- name: Restart Zabbix\n service: name=zabbix-agentd state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 70
},
{
"path": "playbooks/roles/zabbix-euca-ufs/files/euca-ufs-chec... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2114,
"all_permissive": false
} |
ansible_role | mykaua/vagrant_kubernetes | f5302ba8f0e55e7f002e3172c759fa75669a29e2 | 0 | ansible/roles/configure | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/configure/tasks/main.yml",
"content": "---\n# preparation serves\n- name: Install ntpd\n yum:\n name: ntp\n state: latest\n\n- name: copy hosts file\n template: src=hosts.j2 dest=/etc/hosts\n\n- name: copy repo with kubernetes\n template: src=virt7-docker-common-release.rep... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 764,
"all_permissive": false
} |
ansible_role | mykaua/vagrant_kubernetes | f5302ba8f0e55e7f002e3172c759fa75669a29e2 | 0 | ansible/roles/master | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/master/handlers/main.yml",
"content": "---\n# restart services\n- name: Restart services\n service: name={{item}} state=restarted\n with_items:\n - etcd\n - kube-apiserver\n - kube-controller-manager\n - kube-scheduler\n",
"license_type": "no_license",
"detecte... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 769,
"all_permissive": false
} |
ansible_role | mykaua/vagrant_kubernetes | f5302ba8f0e55e7f002e3172c759fa75669a29e2 | 0 | ansible/roles/nodes | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/nodes/tasks/main.yml",
"content": "---\n# Configure minions/nodes\n- name: Copy config files\n template: src=config.j2 dest=/etc/kubernetes/config\n notify: Restart services\n\n- name: Copy kubelet files\n template: src=kubelet.j2 dest=/etc/kubernetes/kubelet\n notify: Restart s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 583,
"all_permissive": false
} |
ansible_role | samoxbal/ansible-mesos-marathon-cluster | e6505e4e179f096d4b0472d5838c18f3fa0eadf3 | 1 | ansible/roles/java-8 | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/java-8/tasks/main.yml",
"content": "- name: Install java 8 preresequesits\n apt: name=python-software-properties state=latest update_cache=yes\n\n- name: Add Java 8 repository\n apt_repository: repo='ppa:webupd8team/java'\n\n- name: Agree to oracle license\n action: shell echo or... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 585,
"all_permissive": false
} |
ansible_role | samoxbal/ansible-mesos-marathon-cluster | e6505e4e179f096d4b0472d5838c18f3fa0eadf3 | 1 | ansible/roles/master | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/master/templates/hosts.j2",
"content": "127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4\n::1 localhost localhost.localdomain localhost6 localhost6.localdomain6\n192.168.33.10 master1\n192.168.33.11 master2\n192.168.33.12 master3\n192.168.33.20 ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1652,
"all_permissive": false
} |
ansible_role | samoxbal/ansible-mesos-marathon-cluster | e6505e4e179f096d4b0472d5838c18f3fa0eadf3 | 1 | ansible/roles/node | 5,177 | [
"no_license"
] | [
{
"path": "ansible/roles/node/templates/zk_master_mesos.j2",
"content": "zk://{{zoo1}}:2181,{{zoo2}}:2181,{{zoo3}}:2181/mesos",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 52
},
{
"path": "ansible/roles/node/tasks/main.yml",
"content": "---\n- name: Update ho... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1094,
"all_permissive": false
} |
ansible_role | dominodatalab/ranchhand | 59a9dce2ace1d9f30cf30d4c66ef613698ac567f | 9 | ansible/roles/docker | 5,157 | [
"no_license"
] | [
{
"path": "ansible/roles/docker/tasks/redhat.yml",
"content": "---\n- name: Install Docker & Dependencies\n become: yes\n yum:\n name: \"{{ packages }}\"\n vars:\n packages:\n - \"{{ docker_ce_repo_root }}/docker-ce-{{ docker_ce_yum_version }}.x86_64.rpm\"\n - \"{{ docker_ce_repo_root }}/... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 2655,
"all_permissive": false
} |
ansible_role | dominodatalab/ranchhand | 59a9dce2ace1d9f30cf30d4c66ef613698ac567f | 9 | ansible/roles/newrelic | 5,157 | [
"no_license"
] | [
{
"path": "ansible/roles/newrelic/tasks/main.yml",
"content": "---\n- name: Probe Helm Repos\n command: helm repo list --output json\n changed_when: false\n run_once: true\n # Ignore errors since an empty repo list returns exit code = 1\n ignore_errors: true\n register: repos\n\n- name: Probe Helm Cha... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3738,
"all_permissive": false
} |
ansible_role | dominodatalab/ranchhand | 59a9dce2ace1d9f30cf30d4c66ef613698ac567f | 9 | ansible/roles/rancher | 5,157 | [
"no_license"
] | [
{
"path": "ansible/roles/rancher/tasks/secrets.yml",
"content": "---\n- name: Probe tls-ca Secret\n command: kubectl --namespace cattle-system get secrets tls-ca\n register: secret\n changed_when: false\n ignore_errors: true\n\n- name: Create tls-ca Secret\n become: true\n command: \"kubectl --kubecon... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3752,
"all_permissive": false
} |
ansible_role | dominodatalab/ranchhand | 59a9dce2ace1d9f30cf30d4c66ef613698ac567f | 9 | ansible/roles/rke | 5,157 | [
"no_license"
] | [
{
"path": "ansible/roles/rke/vars/main.yml",
"content": "---\ndom_debug: False\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 21
},
{
"path": "ansible/roles/rke/tasks/main.yml",
"content": "---\n- name: Include ssl-certificates.yml\n include_tasks: ssl-cert... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 6671,
"all_permissive": false
} |
ansible_role | dominodatalab/ranchhand | 59a9dce2ace1d9f30cf30d4c66ef613698ac567f | 9 | ansible/roles/system-checks | 5,157 | [
"no_license"
] | [
{
"path": "ansible/roles/system-checks/defaults/main.yml",
"content": "---\nrecommendedCpus: 4\nrecommendedMemory: 15\nrecommendedNodes: 3\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
},
{
"path": "ansible/roles/system-checks/tasks/main.yml",
"content":... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 809,
"all_permissive": false
} |
ansible_role | Otus-DevOps-2021-11/Gabalino_infra | 9e1908a0889eb9b6b2fb23ffba3689176de906a2 | 0 | ansible/roles/app | 5,157 | [
"no_license"
] | [
{
"path": "ansible/roles/app/tasks/ruby.yml",
"content": "---\n- name: Wait unlock /var/lib/dpkg/lock-frontend\n shell: while PID=$(pidof -s apt-get); do tail --pid=$PID -f /dev/null; done\n changed_when: false\n tags: ruby\n\n- name: Install ruby and rubygems and required packages\n apt:\n name:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 368,
"all_permissive": false
} |
ansible_role | Otus-DevOps-2021-11/Gabalino_infra | 9e1908a0889eb9b6b2fb23ffba3689176de906a2 | 0 | ansible/roles/db | 5,157 | [
"no_license"
] | [
{
"path": "ansible/roles/db/tasks/install_mongo.yml",
"content": "---\n- name: Add APT key\n apt_key:\n url: https://www.mongodb.org/static/pgp/server-4.4.asc\n state: present\n tags: install\n\n- name: Add APT repository\n apt_repository:\n repo: deb [ arch=amd64 ] https://repo.mongodb.org/apt/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 546,
"all_permissive": false
} |
ansible_role | epameducation/ansible-devops10 | c5c57f0e1d63dbebd4da57466ed8cf4ba9563ea9 | 0 | hw-1/roles/httpd | 5,157 | [
"no_license"
] | [
{
"path": "hw-1/roles/httpd/tasks/main.yml",
"content": "- name: httpd| Open firewall ports\n firewalld:\n port: \"{{item.port}}/{{item.type}}\"\n permanent: \"{{item.permanent}}\"\n state: \"{{item.state}}\"\n immediate: yes\n loop:\n - { port: \"80\", type: \"tcp\", permanent: \... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1224,
"all_permissive": false
} |
ansible_role | epameducation/ansible-devops10 | c5c57f0e1d63dbebd4da57466ed8cf4ba9563ea9 | 0 | hw-1/roles/network_manager | 5,157 | [
"no_license"
] | [
{
"path": "hw-1/roles/network_manager/tasks/main.yml",
"content": "---\n- name: Network Manager| Modify grub options\n lineinfile:\n path: /etc/default/grub\n regex: '{{ item.regex }}'\n line: '{{ item.line }}'\n state: '{{ item.state }}'\n backrefs: '{{ item.backrefs }}'\n loop:\n - {'r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 531,
"all_permissive": false
} |
ansible_role | epameducation/ansible-devops10 | c5c57f0e1d63dbebd4da57466ed8cf4ba9563ea9 | 0 | hw-2/roles/ftp | 5,157 | [
"no_license"
] | [
{
"path": "hw-2/roles/ftp/tasks/main.yml",
"content": "- name: ftp| Add user for anonymous files\n user:\n name: \"{{ ftp_anonymous_access_user }}\"\n shell: /bin/bash\n home: /var/ftp\n when: ftp_anonymous_access_user | default('ftp') != \"ftp\"\n\n- name: ftp| Install vsftpd\n yum:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1732,
"all_permissive": false
} |
ansible_role | epameducation/ansible-devops10 | c5c57f0e1d63dbebd4da57466ed8cf4ba9563ea9 | 0 | hw-2/roles/mariadb | 5,157 | [
"no_license"
] | [
{
"path": "hw-2/roles/mariadb/tasks/main.yml",
"content": "- name: mariadb| Detect node for mariadb\n stat:\n path: /tmp/database\n register: db\n\n- name: mariadb| Install Mariadb\n yum:\n name: mariadb-server\n state: latest\n when: db.stat.exists",
"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 | epameducation/ansible-devops10 | c5c57f0e1d63dbebd4da57466ed8cf4ba9563ea9 | 0 | hw-2/roles/uninstall_httpd | 5,157 | [
"no_license"
] | [
{
"path": "hw-2/roles/uninstall_httpd/tasks/main.yml",
"content": "- name: uninstall_httpd| Uninstall httpd\n yum:\n name: httpd\n state: absent\n\n- name: uninstall_httpd| Close firewall ports for httpd\n firewalld:\n port: \"{{item.port}}/{{item.type}}\"\n permanent: \"{{item.permane... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 557,
"all_permissive": false
} |
ansible_role | epameducation/ansible-devops10 | c5c57f0e1d63dbebd4da57466ed8cf4ba9563ea9 | 0 | hw-3/roles/configure_httpd | 5,157 | [
"no_license"
] | [
{
"path": "hw-3/roles/configure_httpd/tasks/main.yml",
"content": "- name: httpd| Check if httpd is installed\n package_facts:\n manager: auto\n no_log: True\n \n- name: httpd| Install httpd\n yum:\n name: httpd\n state: latest\n when: \"'httpd' not in ansible_facts.packages\"\n \n- name: h... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1039,
"all_permissive": false
} |
ansible_role | CubikOne/vita | cfaba447740219355468997c4c3bb8f51e25142e | 2 | roles/copy | 5,157 | [
"no_license"
] | [
{
"path": "roles/copy/tasks/main.yml",
"content": "---\n- name: Copy a file to the server\n copy:\n src: \"{{ item }}\"\n dest: /home/\n loop:\n - Test/from_server.txt\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 120
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 120,
"all_permissive": false
} |
ansible_role | rakeshtalwar88/DAO | 499c0225a931ea7d24d2b1d19cef2daa1f4bfc4f | 1 | lightbulb-master/examples/apache-role/roles/apache-simple | 5,157 | [
"no_license"
] | [
{
"path": "lightbulb-master/examples/apache-role/roles/apache-simple/tasks/main.yml",
"content": "---\n# tasks file for apache\n- name: httpd packages are present\n yum:\n name: \"{{ item }}\"\n state: present\n with_items: \"{{ httpd_packages }}\"\n notify: restart apache service\n\n- name: latest... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 663,
"all_permissive": false
} |
ansible_role | rakeshtalwar88/DAO | 499c0225a931ea7d24d2b1d19cef2daa1f4bfc4f | 1 | lightbulb-master/examples/nginx-role/roles/nginx-simple | 5,157 | [
"no_license"
] | [
{
"path": "lightbulb-master/examples/nginx-role/roles/nginx-simple/tasks/remove.yml",
"content": "---\n# tasks file the removes nginx and uwsgi\n# derived from examples/nginx-remove-playbook\n- name: stop nginx service\n service:\n name: nginx\n state: stopped\n ignore_errors: yes\n\n- name: remove ... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1551,
"all_permissive": false
} |
ansible_role | rakeshtalwar88/DAO | 499c0225a931ea7d24d2b1d19cef2daa1f4bfc4f | 1 | lightbulb-master/tools/aws_lab_setup/roles/common | 5,157 | [
"no_license"
] | [
{
"path": "lightbulb-master/tools/aws_lab_setup/roles/common/tasks/RedHat.yml",
"content": "- name: RHEL | Set version specific variables\n include_vars: \"{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml\"\n tags:\n - always\n\n- name: RHEL | Install {{ firewall_name }} and libseli... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 640,
"all_permissive": false
} |
ansible_role | EigenAlexa/ansible-scripts | 6f3294af6f49af6f14888307708b261606da5fb6 | 0 | jenkins-setup/roles/test-setup | 5,157 | [
"no_license"
] | [
{
"path": "jenkins-setup/roles/test-setup/tasks/main.yml",
"content": "---\n- name: Install pip dependencies\n pip:\n name: \"{{item}}\"\n state: present\n executable: pip-2.7\n with_items:\n - boto\n become: true\n\n- name: Copy secret keys\n copy:\n dest: ~/secret.keys\n src: secret.... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 248,
"all_permissive": false
} |
ansible_role | luto/ansible-uberspace | 264ce4ff44d42b9d1df0647c459723004d73644d | 3 | roles/common | 5,157 | [
"no_license"
] | [
{
"path": "roles/common/tasks/common.yml",
"content": "---\n- name: Upload local user's public key for SSH\n authorized_key:\n user: \"{{ansible_user}}\"\n key: \"{{ lookup('file', '~/.ssh/id_rsa.pub') }}\"\n\n- name: Configure Git\n template:\n src: templates/gitconfig.j2\n dest: ~/.gitconfig... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 659,
"all_permissive": false
} |
ansible_role | luto/ansible-uberspace | 264ce4ff44d42b9d1df0647c459723004d73644d | 3 | roles/wordpress | 5,157 | [
"no_license"
] | [
{
"path": "roles/wordpress/tasks/main.yml",
"content": "---\n- name: Check if Composer is installed\n stat: path=~/bin/composer\n register: composer\n\n- name: Download Composer installer\n get_url: url=https://getcomposer.org/installer dest=~/ansible-composer-setup.php\n when: composer.stat.exists == F... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3824,
"all_permissive": false
} |
ansible_role | tiaotiaodan/ansible-lnmp | 168cfa753a35b67b8a01b65cfe324de0720d405a | 0 | roles/common | 5,157 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yaml",
"content": "---\n- name: install yum centos 7 epel\n yum:\n name: https://mirrors.aliyun.com/epel/epel-release-latest-7.noarch.rpm\n state: present\n\n- name: Install deps\n yum: name={{ item }} state=latest\n with_items:\n - gcc\n - gcc-c++\n - gd... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 734,
"all_permissive": false
} |
ansible_role | tiaotiaodan/ansible-lnmp | 168cfa753a35b67b8a01b65cfe324de0720d405a | 0 | roles/mysql | 5,157 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yaml",
"content": "---\n- name: Remove shell yum \n yum: name={{ item }} state=absent\n with_items:\n - mariadb-libs\n - boost-thread\n - boost-system\n - boost-date-time\n\n\n- name: Install mysql deps\n yum: name={{ item }} state=latest\n with_items:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3737,
"all_permissive": false
} |
ansible_role | tiaotiaodan/ansible-lnmp | 168cfa753a35b67b8a01b65cfe324de0720d405a | 0 | roles/nginx | 5,157 | [
"no_license"
] | [
{
"path": "roles/nginx/vars/main.yaml",
"content": "---\n#nginx\nnginx_version: 1.16.1\nhttp_port: 80\nserver_name: test-www.scajy.cn\n#\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 80
},
{
"path": "roles/nginx/tasks/main.yaml",
"content": "---\n- name: mk... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2437,
"all_permissive": false
} |
ansible_role | tiaotiaodan/ansible-lnmp | 168cfa753a35b67b8a01b65cfe324de0720d405a | 0 | roles/php | 5,157 | [
"no_license"
] | [
{
"path": "roles/php/tasks/main.yaml",
"content": "---\n- name: Install php deps\n yum: name={{ item }} state=latest\n with_items:\n - libmcrypt\n - libmcrypt-devel\n - autoconf\n - freetype\n - gd\n - libmcrypt\n - libpng\n - libpng-devel\n - libjpeg\n - libxml2\n - libxm... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2009,
"all_permissive": false
} |
ansible_role | tiaotiaodan/ansible-lnmp | 168cfa753a35b67b8a01b65cfe324de0720d405a | 0 | roles/www | 5,157 | [
"no_license"
] | [
{
"path": "roles/www/tasks/main.yaml",
"content": "---\n- name: mkdir www\n file:\n dest: /usr/local/nginx/html/www\n state: directory\n \n- name: unarchive nginx www source pkg \n unarchive:\n src: www.zip\n dest: /usr/local/nginx/html/www/\n \n- name: Change ownership of user nginx ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 375,
"all_permissive": false
} |
ansible_role | anthcourtney/ansible-meetup-examples | f5746f9f74825097b501a858a55edd4b7a4b82de | 2 | tests/idempotency/conflict/roles/hardening | 5,157 | [
"no_license"
] | [
{
"path": "tests/idempotency/conflict/roles/hardening/tasks/main.yml",
"content": "---\n\n- name: Reduce surface area by stopping unrequired services\n service:\n name: \"{{ item }}\"\n state: stopped\n enabled: false\n with_items:\n - postfix\n - rsyslog\n tags:\n - hardening\n",
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 203,
"all_permissive": false
} |
ansible_role | anthcourtney/ansible-meetup-examples | f5746f9f74825097b501a858a55edd4b7a4b82de | 2 | tests/idempotency/conflict/roles/postfix | 5,157 | [
"no_license"
] | [
{
"path": "tests/idempotency/conflict/roles/postfix/tasks/main.yml",
"content": "---\n\n- name: Ensure postfix is installed\n package:\n name: postfix\n state: present\n tags:\n - postfix\n\n- name: Start postfix\n service:\n name: postfix\n state: started\n enabled: true\n tags:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 222,
"all_permissive": false
} |
ansible_role | anthcourtney/ansible-meetup-examples | f5746f9f74825097b501a858a55edd4b7a4b82de | 2 | tests/syntax-check/roles/ntp | 5,157 | [
"no_license"
] | [
{
"path": "tests/syntax-check/roles/ntp/tasks/main.yml",
"content": "---\n\n- blah\n\n- name: Install ntp\n package2:\n name: ntp\n state: present\n become: true\n tags:\n - ntp\n - ntp-install\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 129
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 129,
"all_permissive": false
} |
ansible_role | williamsaung/ansible-ats | 3060948d20471f3ac8a9e618459bd29ea38d8d89 | 0 | roles/apache | 5,157 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/main.yml",
"content": "---\n# tasks file for /etc/ansible/roles/apache\n- name: Run the equivalent of \"apt-get update\" as a separate step\n apt:\n update_cache: yes\n#- name: install apache2\n # apt: name=apache2 update_cache=yes state=latest\n- name: enabled mod_rewrite\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 585,
"all_permissive": false
} |
ansible_role | williamsaung/ansible-ats | 3060948d20471f3ac8a9e618459bd29ea38d8d89 | 0 | roles/rbenvsudo | 5,157 | [
"no_license"
] | [
{
"path": "roles/rbenvsudo/tasks/main.yml",
"content": "---\n- name: update apt cache\n apt: update_cache=yes cache_valid_time=86400\n become: true\n changed_when: false\n\n- name: install build depends\n apt: pkg={{ item }} state=present install_recommends=no\n with_items:\n - \"{{ rbenv_apt_packages... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1118,
"all_permissive": false
} |
ansible_role | chuhuy/Cisco-APIC-Ansible | f7bf2e9fd8b738faf204d9975a4aed0334e873e4 | 0 | playbooks/roles/attach_epg | 5,277 | [
"no_license"
] | [
{
"path": "playbooks/roles/attach_epg/tasks/main.yaml",
"content": "---\n- name: Attach Endpoint Group for Single Port\n include_tasks: attach_epg_single.yaml\n when: port_type == 'SINGLE'\n\n- name: Attach Endpoint Group for Virtual Port Channel\n include_tasks: attach_epg_vpc.yaml\n when: port_type ==... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1293,
"all_permissive": false
} |
ansible_role | chuhuy/Cisco-APIC-Ansible | f7bf2e9fd8b738faf204d9975a4aed0334e873e4 | 0 | playbooks/roles/create_interface_policy_group | 5,277 | [
"no_license"
] | [
{
"path": "playbooks/roles/create_interface_policy_group/tasks/main.yaml",
"content": "---\n- name: Declare Interface Policy Group children objects\n set_fact:\n interface_policy_group_children:\n - infraRsAttEntP:\n attributes:\n tDn: \"uni/infra/attentp-{{ attached_entity_prof... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2789,
"all_permissive": false
} |
ansible_role | chuhuy/Cisco-APIC-Ansible | f7bf2e9fd8b738faf204d9975a4aed0334e873e4 | 0 | playbooks/roles/create_interface_selector | 5,277 | [
"no_license"
] | [
{
"path": "playbooks/roles/create_interface_selector/defaults/main.yaml",
"content": "---\ninterface_profile: IPF_101\nattached_card: \"1\"\nattached_port: \"6\"\ninterface_profile_description: \"Test Description\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 119
},... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1675,
"all_permissive": false
} |
ansible_role | ruroshinx/publab | 40b652856df9ac51df8217afe45235a5191b3d6e | 0 | roles/base | 5,277 | [
"no_license"
] | [
{
"path": "roles/base/tasks/main.yml",
"content": "- name: add ssh key for ansible usr\n tags: always\n authorized_key:\n user: ansible\n key: \"<KEY>\" \n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 105
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 105,
"all_permissive": false
} |
ansible_role | ruroshinx/publab | 40b652856df9ac51df8217afe45235a5191b3d6e | 0 | roles/workstations | 5,277 | [
"no_license"
] | [
{
"path": "roles/workstations/tasks/main.yml",
"content": "- name: install unzip\n tags: unzip\n package:\n name: unzip\n state: latest\n\n- name: install terraform\n tags: terraform\n unarchive:\n src: https://releases.hashicorp.com/terraform/1.6.4/terraform_1.6.4_linux_amd64.zip\n dest: /u... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 490,
"all_permissive": false
} |
ansible_role | kahunacoder/docker-server | f5ec99622110eb8975ece535b2d865c5bfddf7dc | 0 | roles/common | 5,277 | [
"no_license"
] | [
{
"path": "roles/common/templates/daemon.j2",
"content": "{\n \"log-driver\": \"json-file\",\n \"log-opts\": {\n \"max-size\": \"{{ log_size }}\",\n \"max-file\": \"{{ log_files }}\"\n }\n}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 121
},
{
"path":... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 8030,
"all_permissive": false
} |
ansible_role | kahunacoder/docker-server | f5ec99622110eb8975ece535b2d865c5bfddf7dc | 0 | roles/update | 5,277 | [
"no_license"
] | [
{
"path": "roles/update/tasks/main.yml",
"content": "---\n- name: Update apt cache\n apt:\n update_cache: yes\n\n- name: Upgrade full\n apt:\n upgrade: full\n\n- name: Make a general dist-upgrade\n apt:\n upgrade: dist\n\n- name: Install common server packages\n apt:\n name: \"{{ packages }}... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 525,
"all_permissive": false
} |
ansible_role | Sumanth17-git/ansible-aiops | 02cb0be614813d8369b53d53c18ef1b8b624dd29 | 0 | roles/cpu_hog_killer | 5,277 | [
"no_license"
] | [
{
"path": "roles/cpu_hog_killer/tasks/main.yml",
"content": "- name: Check Top CPU process\n shell: \"ps -eo pid,ppid,cmd,%mem,%cpu --sort=-%cpu | head -n 6\"\n register: cpu_report\n \n- name: Kill top CPU process\n shell: \"kill -9 $(ps -eo pid,%cpu --sort=-%cpu | awk 'NR==2{print $1}')\"\n when: cpu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 366,
"all_permissive": false
} |
ansible_role | Sumanth17-git/ansible-aiops | 02cb0be614813d8369b53d53c18ef1b8b624dd29 | 0 | roles/disk_cleanup | 5,277 | [
"no_license"
] | [
{
"path": "roles/disk_cleanup/tasks/main.yml",
"content": "- name: Find old files\n find:\n paths: \"{{ item.path }}\"\n age: \"{{ item.age }}d\"\n recurse: yes\n register: old_files\n loop: \"{{ cleanup_paths }}\"\n\n- name: Delete old files\n file:\n path: \"{{ item.path }}\"\n state: a... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 361,
"all_permissive": false
} |
ansible_role | Sumanth17-git/ansible-aiops | 02cb0be614813d8369b53d53c18ef1b8b624dd29 | 0 | roles/nginx_update | 5,277 | [
"no_license"
] | [
{
"path": "roles/nginx_update/tasks/main.yml",
"content": "- name: Deploy updated nginx config\n copy:\n src: nginx.conf\n dest: /etc/nginx/nginx.conf\n owner: root\n group: root\n mode: '0644'\n notify: restart_nginx\n",
"license_type": "no_license",
"detected_licenses": [],
"s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 169,
"all_permissive": false
} |
ansible_role | Sumanth17-git/ansible-aiops | 02cb0be614813d8369b53d53c18ef1b8b624dd29 | 0 | roles/oom_resolver | 5,277 | [
"no_license"
] | [
{
"path": "roles/oom_resolver/tasks/main.yml",
"content": "# roles/oom_resolver/tasks/main.yml\n- name: Get all Java processes with jps\n shell: jps\n register: jps_output\n\n- name: Find PID of the Java app (excluding jps itself)\n set_fact:\n java_pid: \"{{ item.split()[0] }}\"\n loop: \"{{ jps_out... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 946,
"all_permissive": false
} |
ansible_role | Sumanth17-git/ansible-aiops | 02cb0be614813d8369b53d53c18ef1b8b624dd29 | 0 | roles/service_restart | 5,277 | [
"no_license"
] | [
{
"path": "roles/service_restart/tasks/main.yml",
"content": "- name: Restart affected services\n service:\n name: \"{{ item }}\"\n state: restarted\n enabled: true\n loop: \"{{ affected_services }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 141
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 141,
"all_permissive": false
} |
ansible_role | hxp-plus/LEMP-Ansible-CentOS | 76ae188470237844f8af4a00c7a0ab487c07966a | 2 | roles/cockpit | 5,277 | [
"no_license"
] | [
{
"path": "roles/cockpit/handlers/main.yml",
"content": "---\n- name: restart nginx\n service: name=nginx state=restarted\n- name: restart cockpit\n service: name=cockpit state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 128
},
{
"path": "roles/co... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 1177,
"all_permissive": false
} |
ansible_role | hxp-plus/LEMP-Ansible-CentOS | 76ae188470237844f8af4a00c7a0ab487c07966a | 2 | roles/h5ai | 5,277 | [
"no_license"
] | [
{
"path": "roles/h5ai/tasks/change_file_permissions.yml",
"content": "- name: Change ownership of /var/lib/php\n file:\n path: /var/lib/php\n owner: nginx\n group: nginx\n mode: 0744\n recurse: yes\n- name: Change ownership of webroot\n file:\n path: /usr/share/nginx/html\n owner: ngi... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 1966,
"all_permissive": false
} |
ansible_role | hxp-plus/LEMP-Ansible-CentOS | 76ae188470237844f8af4a00c7a0ab487c07966a | 2 | roles/mariadb | 5,277 | [
"no_license"
] | [
{
"path": "roles/mariadb/tasks/install_mariadb.yml",
"content": "- name: install mariadb packages\n yum:\n name: '{{ item }}'\n state: present\n loop:\n - mariadb-server, mariadb\n - php-mysqlnd, python3-PyMySQL\n- name: start and enable mariadb service\n service:\n name: mariadb\n state: s... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 3401,
"all_permissive": false
} |
ansible_role | hxp-plus/LEMP-Ansible-CentOS | 76ae188470237844f8af4a00c7a0ab487c07966a | 2 | roles/nginx_with_ssl | 5,277 | [
"no_license"
] | [
{
"path": "roles/nginx_with_ssl/tasks/copy_nginx_http_files.yml",
"content": "- name: Create directory conf.d\n file:\n path: /etc/nginx/conf.d\n state: directory\n owner: root\n group: root\n mode: '0755'\n\n- name: Add http nginx configuration\n template: src=nginx.http.conf.j2 dest=/etc/... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 1849,
"all_permissive": false
} |
ansible_role | hxp-plus/LEMP-Ansible-CentOS | 76ae188470237844f8af4a00c7a0ab487c07966a | 2 | roles/php_fpm | 5,277 | [
"no_license"
] | [
{
"path": "roles/php_fpm/tasks/add_php_info.yml",
"content": "- name: Add php info file\n template:\n src: info.php.j2\n dest: /usr/share/nginx/html/info.php\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 100
},
{
"path": "roles/php_fpm/handlers/main.yml"... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 1204,
"all_permissive": false
} |
ansible_role | hxp-plus/LEMP-Ansible-CentOS | 76ae188470237844f8af4a00c7a0ab487c07966a | 2 | roles/qbittorrent | 5,277 | [
"no_license"
] | [
{
"path": "roles/qbittorrent/templates/qbittorrent.service.j2",
"content": "[Unit]\nDescription=qBittorrent-nox service\nDocumentation=man:qbittorrent-nox(1)\nWants=network-online.target\nAfter=network-online.target nss-lookup.target\n\n[Service]\n# if you have systemd < 240 (Ubuntu 18.10 and earlier, for e... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 1509,
"all_permissive": false
} |
ansible_role | 15704967612/Playbook | 6eaa93f23044da10f143d488c1c307ea9a64c04a | 0 | jdk/roles/jdk_install | 5,277 | [
"no_license"
] | [
{
"path": "jdk/roles/jdk_install/tasks/Centos.yaml",
"content": "- name: Copy the JDK installation package.\n copy: src=jdk-8u231-linux-x64.tar.gz dest=/usr/local/src owner=root group=root mode=0644\n\n- name: Decompress the JDK installation package.\n unarchive: src=/usr/local/src/jdk-8u231-linux-x64.tar... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1148,
"all_permissive": false
} |
ansible_role | corumj/aap_demo_openenvironment | 90d4aa96542dbf3b6fd940aaf68f7f1d31b677ca | 0 | collections/ansible_collections/demo/roles/aap_download | 5,277 | [
"no_license"
] | [
{
"path": "collections/ansible_collections/demo/roles/aap_download/tasks/main.yml",
"content": "---\n- name: check if aap.tar.gz exists\n debug:\n msg: \"/home/{{ ansible_user }}/aap.tar.gz\"\n\n- name: Check if aap.tar.gz exists with stat module\n ansible.builtin.stat:\n path: \"/home/{{ ansible_us... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2097,
"all_permissive": false
} |
ansible_role | corumj/aap_demo_openenvironment | 90d4aa96542dbf3b6fd940aaf68f7f1d31b677ca | 0 | collections/ansible_collections/demo/roles/aap_install | 5,277 | [
"no_license"
] | [
{
"path": "collections/ansible_collections/demo/roles/aap_install/templates/inventory.j2",
"content": "# This is the AAP growth installer inventory file\n# Please consult the docs if you're unsure what to add\n# For all optional variables please consult the included README.md\n# or the Red Hat documentation... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 4559,
"all_permissive": false
} |
ansible_role | corumj/aap_demo_openenvironment | 90d4aa96542dbf3b6fd940aaf68f7f1d31b677ca | 0 | collections/ansible_collections/demo/roles/rhsm | 5,277 | [
"no_license"
] | [
{
"path": "collections/ansible_collections/demo/roles/rhsm/tasks/register.yml",
"content": "--- \n- name: Subscribe \n redhat_subscription:\n state: present\n username: \"{{ rh_username }}\"\n password: \"{{ <PASSWORD> }}\"\n become: true ",
"license_type": "no_license",
"detected_lic... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 287,
"all_permissive": false
} |
ansible_role | corumj/aap_demo_openenvironment | 90d4aa96542dbf3b6fd940aaf68f7f1d31b677ca | 0 | collections/ansible_collections/infra/roles/aws_infra_info | 5,277 | [
"no_license"
] | [
{
"path": "collections/ansible_collections/infra/roles/aws_infra_info/tasks/main.yml",
"content": "---\n- name: retrieve vpc ID \n amazon.aws.ec2_vpc_net_info:\n profile: \"{{ aws_profile | default('default') }}\"\n filters:\n \"tag:demo\": Ansible\n register: vpc_info \n\n- nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1363,
"all_permissive": false
} |
ansible_role | corumj/aap_demo_openenvironment | 90d4aa96542dbf3b6fd940aaf68f7f1d31b677ca | 0 | collections/ansible_collections/infra/roles/aws_infra_setup | 5,277 | [
"no_license"
] | [
{
"path": "collections/ansible_collections/infra/roles/aws_infra_setup/tasks/main.yml",
"content": "---\n- name: create a VPC \n amazon.aws.ec2_vpc_net:\n profile: \"{{ aws_profile | default('default') }}\"\n state: present\n name: \"ansible-vpc\"\n cidr_block: 10.0.0.0/16\n tenancy: default... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2779,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.