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
BabuRajan002/project2-hangout-point
41f9908b0053d1297d404e2075e094b7191088bb
0
hangoutroles/roles/docker
1,819
[ "no_license" ]
[ { "path": "hangoutroles/roles/docker/tasks/main.yml", "content": "---\n - name: Install aptitude using apt\n apt: name=aptitude state=latest update_cache=yes force_apt_get=yes\n become: true\n\n - name: Install required system packages\n apt: name={{ item }} state=latest update_cache=ye...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 955, "all_permissive": false }
ansible_role
BabuRajan002/project2-hangout-point
41f9908b0053d1297d404e2075e094b7191088bb
0
hangoutroles/roles/java_maven
1,819
[ "no_license" ]
[ { "path": "hangoutroles/roles/java_maven/vars/main.yml", "content": "---\n# vars file for jenkins\n\njava:\n VERSION: \"openjdk-8-jdk\"\n ALTERNATIVES: \"/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java\"\n\nmaven:\n repo_URL: \"http://apachemirror.wuchna.com/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 957, "all_permissive": false }
ansible_role
BabuRajan002/project2-hangout-point
41f9908b0053d1297d404e2075e094b7191088bb
0
hangoutroles/roles/jenkins
1,819
[ "no_license" ]
[ { "path": "hangoutroles/roles/jenkins/tasks/main.yml", "content": "---\n\n- name: Import GPG Key\n apt_key:\n url: \"{{jenkins.gpg_key}}\"\n state: present\n become: true\n\n- name: Ensure the repo is configured for Jenkins.\n apt_repository:\n repo: \"{{jenkins.repo_URL}}\"\n state: present...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 332, "all_permissive": false }
ansible_role
joannedada/flask-app
b6009876931f8a84a8b1598b0d4749c578eebd4f
1
ansible/roles/app
1,819
[ "no_license" ]
[ { "path": "ansible/roles/app/files/app.py", "content": "from flask import Flask, render_template\nimport psycopg2\nimport config\n\napp = Flask(__name__)\n\n\ndef get_team_members():\n conn = psycopg2.connect(\n host=config.DB_HOST,\n database=config.DB_NAME,\n user=config.DB_USER,\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 3370, "all_permissive": false }
ansible_role
joannedada/flask-app
b6009876931f8a84a8b1598b0d4749c578eebd4f
1
ansible/roles/configure_app
1,819
[ "no_license" ]
[ { "path": "ansible/roles/configure_app/tasks/main.yml", "content": "---\n- name: Set environment variables for PostgreSQL\n lineinfile:\n path: /etc/environment\n line: \"{{ item }}\"\n with_items:\n - \"DB_HOST={{ hostvars['db-server']['ansible_host'] }}\"\n - \"DB_NAME=devopsdb\"\n - \"DB...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 367, "all_permissive": false }
ansible_role
joannedada/flask-app
b6009876931f8a84a8b1598b0d4749c578eebd4f
1
ansible/roles/postgresql
1,819
[ "no_license" ]
[ { "path": "ansible/roles/postgresql/files/init.sql", "content": "CREATE DATABASE devopsdb;\n\\c devopsdb;\n\nCREATE TABLE IF NOT EXISTS users (\n id SERIAL PRIMARY KEY,\n name VARCHAR(50) UNIQUE,\n role VARCHAR(50)\n);\n\nINSERT INTO users (name, role)\nVALUES\n('<NAME>', 'DevOps Engineer'),\n('<NA...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1497, "all_permissive": false }
ansible_role
joannedada/flask-app
b6009876931f8a84a8b1598b0d4749c578eebd4f
1
ansible/roles/python_flask
1,819
[ "no_license" ]
[ { "path": "ansible/roles/python_flask/tasks/main.yml", "content": "---\n# Phase 1: Critical System Setup\n- name: Install Python and build tools (Fedora)\n ansible.builtin.command: |\n dnf5 install -y python3 python3-pip python3-devel gcc openssl-devel\n args:\n creates: \"/usr/bin/python3\"\n regi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 936, "all_permissive": false }
ansible_role
crespogm/vg-ansible-aws-ec2
0b78ecb2294b404dc0461e9189f07e6f0f8df650
0
ansible-aws/playbooks/roles/ec2-instance
1,819
[ "no_license" ]
[ { "path": "ansible-aws/playbooks/roles/ec2-instance/tasks/main.yml", "content": "---\n- name: Instance provisioning \n amazon.aws.ec2_instance:\n name: \"{{ instance_name }}\"\n region: \"{{ aws_region }}\"\n key_name: \"{{ myname }}-ssh\"\n instance_type: \"{{instance_type}}\"\n image_id: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1474, "all_permissive": false }
ansible_role
tomoya-dazn/packer-with-cargo-make
64a703efe57e1611fb19ea7513e812a6917c9edd
0
ansible/roles/install-awscli
1,819
[ "no_license" ]
[ { "path": "ansible/roles/install-awscli/tasks/main.yml", "content": "- name: Download awscli\n get_url:\n url: https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip\n dest: /tmp/awscliv2.zip\n tags:\n - awscli\n\n- name: Unarchive awscliv2.zip\n unarchive:\n src: /tmp/awscliv2.zip\n des...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 362, "all_permissive": false }
ansible_role
tomoya-dazn/packer-with-cargo-make
64a703efe57e1611fb19ea7513e812a6917c9edd
0
ansible/roles/install-development-tools
1,819
[ "no_license" ]
[ { "path": "ansible/roles/install-development-tools/tasks/main.yml", "content": "- name: Install the 'Development tools' package group\n ansible.builtin.dnf:\n name: \"@Development tools\"\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 127 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 127, "all_permissive": false }
ansible_role
tomoya-dazn/packer-with-cargo-make
64a703efe57e1611fb19ea7513e812a6917c9edd
0
ansible/roles/install-rust-and-cargo
1,819
[ "no_license" ]
[ { "path": "ansible/roles/install-rust-and-cargo/tasks/main.yml", "content": "- name: Check if cargo is installed\n shell:\n cmd: command -v cargo\n register: cargo_exists\n ignore_errors: yes\n\n- name: Download Installer\n get_url:\n url: https://sh.rustup.rs\n dest: /tmp/sh.rustup.rs\n mod...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 801, "all_permissive": false }
ansible_role
KatachiNo/Raif_HomeTask_Ansible
9d495f92e0790ac2c766a2da606395573f49be91
0
roles/updateServer
1,819
[ "no_license" ]
[ { "path": "roles/updateServer/meta/main.yml", "content": "galaxy_info:\n role_name: updateServer\n description: Установка обновления на CentOs 8.2\n author: <NAME>\n licence: GPL3\n min_ansible_version: 2.9\n platforms:\n - centOs:\n versions:\n - 8.2", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 914, "all_permissive": false }
ansible_role
gkeuken/GENAPP_Stock
ba9a1f21d417cf237536ff4226be93c457c22de2
0
roles/genapp
1,819
[ "no_license" ]
[ { "path": "roles/genapp/vars/main.yml", "content": "# Genapp specific Variables\nzosver: '31'\nzos_user: 'ibmuser'\nzos_user_password: '<PASSWORD>' \n#\n#\n# This should match the CBSA port # if also installing CBSA\n# see roles/cbsa/vars\ngenapp_port: 30709\ngenwrk: '/tmp/genapp/'\nbase_install_jcl_path: '...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 19018, "all_permissive": false }
ansible_role
gkeuken/GENAPP_Stock
ba9a1f21d417cf237536ff4226be93c457c22de2
0
roles/setup
1,819
[ "no_license" ]
[ { "path": "roles/setup/tasks/main.yml", "content": " - name: Wait for connection\n ansible.builtin.wait_for_connection:\n delay: 5\n timeout: 120\n \n - name: Cleanup \"{{ genwrk }}\"\n ansible.builtin.file:\n path: \"{{ genwrk }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1975, "all_permissive": false }
ansible_role
LasseKallio/mazhrtest
80864a1fcde5cf53334b1b8658bb0d6d1828f336
0
ansible/roles/appserver
1,819
[ "no_license" ]
[ { "path": "ansible/roles/appserver/tasks/php-ini.yml", "content": "---\n#####################\n# Setup php.ini\n#####################\n\n- name: Configure php.ini\n lineinfile: dest=/etc/php.ini line=\"{{ item.line }}\" state={{ item.state }}\n with_items:\n - { line: 'error_log = syslog', state: 'pres...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2083, "all_permissive": false }
ansible_role
LasseKallio/mazhrtest
80864a1fcde5cf53334b1b8658bb0d6d1828f336
0
ansible/roles/common
1,819
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: Update distribution\n yum: name=* state=latest update_cache=yes\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 78, "all_permissive": false }
ansible_role
LasseKallio/mazhrtest
80864a1fcde5cf53334b1b8658bb0d6d1828f336
0
ansible/roles/vagrant
1,819
[ "no_license" ]
[ { "path": "ansible/roles/vagrant/tasks/robot-framework.yml", "content": "- name: Install Robot Framework dependencies\n yum: pkg={{ item }} state=installed\n with_items:\n - freetype\n - fontconfig\n - python-pip\n - nodejs\n - npm\n\n- name: install Phantomjs\n npm: name=phantom...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2538, "all_permissive": false }
ansible_role
LasseKallio/mazhrtest
80864a1fcde5cf53334b1b8658bb0d6d1828f336
0
ansible/roles/webserver
1,819
[ "no_license" ]
[ { "path": "ansible/roles/webserver/tasks/webserver.yml", "content": "---\n- name: install dependencies\n yum: pkg=httpd state=installed\n notify: restart httpd\n\n- name: enamble httpd\n service: name=httpd state=started enabled=yes\n", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 707, "all_permissive": false }
ansible_role
Anonymouslemming/mailserver
653de39ae1d635d279f8e778153f661f8dc94d47
2
roles/primarymx
1,819
[ "permissive" ]
[ { "path": "roles/primarymx/handlers/main.yml", "content": "---\n- name: restart dovecot\n service: name=dovecot state=restarted\n\n- name: restart opendkim\n service: name=opendkim state=restarted\n\n- name: restart postfix\n service: name=postfix state=restarted\n\n- name: restart spamassassin\n servic...
{ "task_files": 9, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 12881, "all_permissive": true }
ansible_role
Richardswe/ansible
e76775e71bb8dd1d7ddfc03bacaad869b8226e9c
0
docker-mgmt/passbolt-backup/roles/volume-backup
1,819
[ "permissive" ]
[ { "path": "docker-mgmt/passbolt-backup/roles/volume-backup/tasks/main.yaml", "content": "---\n- name: Set timestamp variable\n set_fact:\n timestamp: \"{{ ansible_date_time.iso8601_basic_short }}\"\n\n- name: Ensure that directories exist\n file:\n path: \"{{ item }}\"\n state: directory\n mod...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2789, "all_permissive": true }
ansible_role
Richardswe/ansible
e76775e71bb8dd1d7ddfc03bacaad869b8226e9c
0
vm-mgmt/roles/add-user
1,819
[ "permissive" ]
[ { "path": "vm-mgmt/roles/add-user/tasks/main.yml", "content": "---\n- name: Make sure we have a 'wheel' group (SUSE-systems)\n group:\n name: wheel\n state: present\n when: \n (ansible_facts['distribution'] == \"openSUSE Leap\") or\n (ansible_facts['distribution'] == \"SUSE\")\n\n- name: Insta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2305, "all_permissive": true }
ansible_role
Richardswe/ansible
e76775e71bb8dd1d7ddfc03bacaad869b8226e9c
0
vm-mgmt/roles/delete-user
1,819
[ "permissive" ]
[ { "path": "vm-mgmt/roles/delete-user/tasks/main.yml", "content": "--- \n- name: Delete user/user's \n user:\n name: \"{{ item.name }}\"\n state: absent \n remove: yes \n register: deleted_user \n with_items: \n - \"{{ users }}\"\n\n- name: Message deleted Users \n debug:\n msg: \"Finished ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 260, "all_permissive": true }
ansible_role
Richardswe/ansible
e76775e71bb8dd1d7ddfc03bacaad869b8226e9c
0
vm-mgmt/roles/dist-files
1,819
[ "permissive" ]
[ { "path": "vm-mgmt/roles/dist-files/tasks/main.yml", "content": "---\n- name: Distribute sysctl.conf\n ansible.builtin.copy:\n src: roles/dist-files/files/sysctl.conf\n dest: /etc/sysctl.d/sysctl.conf\n owner: root\n group: root\n mode: '0644'\n\n- name: Reload sysctl so previous task takes ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 500, "all_permissive": true }
ansible_role
Richardswe/ansible
e76775e71bb8dd1d7ddfc03bacaad869b8226e9c
0
vm-mgmt/roles/harden-ssh
1,819
[ "permissive" ]
[ { "path": "vm-mgmt/roles/harden-ssh/tasks/main.yml", "content": "---\n- name: Harden ssh by NOT accepting root login\n become: true \n lineinfile: \n dest: /etc/ssh/sshd_config\n regexp: \"{{ item.regexp }}\"\n line: \"{{ item.line }}\"\n state: present \n validate: 'sshd -t -f %s'\n with...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 403, "all_permissive": true }
ansible_role
Richardswe/ansible
e76775e71bb8dd1d7ddfc03bacaad869b8226e9c
0
vm-mgmt/roles/install-zabbix
1,819
[ "permissive" ]
[ { "path": "vm-mgmt/roles/install-zabbix/tasks/main.yml", "content": "---\n- name: Add Zabbix repository Suse distro\n ansible.builtin.shell: |\n rpm -Uvh --nosignature https://repo.zabbix.com/zabbix/6.4/sles/15/x86_64/zabbix-release-6.4-1.sles15.noarch.rpm\n zypper --gpg-auto-import-keys refresh 'Zab...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2828, "all_permissive": true }
ansible_role
Richardswe/ansible
e76775e71bb8dd1d7ddfc03bacaad869b8226e9c
0
vm-mgmt/roles/rolling-vm-upgrade
1,819
[ "permissive" ]
[ { "path": "vm-mgmt/roles/rolling-vm-upgrade/tasks/main.yml", "content": "---\n- name: \"Drain node {{ ansible_hostname|lower }} , even if there are pods not managed by a ReplicationController, Job, or DaemonSet on it.\"\n become_user: local_user\n connection: local\n vars:\n ansible_python_interpreter...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3862, "all_permissive": true }
ansible_role
Richardswe/ansible
e76775e71bb8dd1d7ddfc03bacaad869b8226e9c
0
vm-mgmt/roles/update-root-pw
1,819
[ "permissive" ]
[ { "path": "vm-mgmt/roles/update-root-pw/README.txt", "content": "# Generate the hash locally \nshell: python -c \"from passlib.hash import sha512_crypt; import getpass; print sha512_crypt.encrypt(getpass.getpass())\"\nPassword:\n<PASSWORD>", "license_type": "permissive", "detected_licenses": [ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 283, "all_permissive": true }
ansible_role
gergund/vagrant-magento
8086287e0fee2471bdd737c40a2cc6d17c3c7470
1
ansible/playbooks/roles/common
1,819
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/common/tasks/main.yml", "content": "---\n- name: Install ntp\n yum: name=ntp state=installed\n\n- name: Install ntpdate\n yum: name=ntpdate state=installed\n\n- service: name=ntpd enabled=yes state=restarted\n\n- name: Install mc\n yum: pkg=mc state=installed\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 576, "all_permissive": false }
ansible_role
gergund/vagrant-magento
8086287e0fee2471bdd737c40a2cc6d17c3c7470
1
ansible/playbooks/roles/httpd-php
1,819
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/httpd-php/templates/magento.conf.j2", "content": "<VirtualHost 192.168.56.110:80>\n \n DocumentRoot /var/www/html\n ServerAlias www.magento.loc\n ServerName magento.log\n ErrorLog logs/magento-error.log\n CustomLog logs/magento-access.log common\n\n <Directo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 5440, "all_permissive": false }
ansible_role
gergund/vagrant-magento
8086287e0fee2471bdd737c40a2cc6d17c3c7470
1
ansible/playbooks/roles/magento-ee-1.13-data-media
1,819
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/magento-ee-1.13-data-media/tasks/main.yml", "content": "- name: Extract sample data - Media\n copy: src=magento-ee-1.13-media.tar.gz dest=/var/www/html/media/magento-ee-1.13-media.tar.gz owner=root group=root mode=0644\n\n- shell: cd /var/www/html/media && tar -zxvf /var/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 371, "all_permissive": false }
ansible_role
gergund/vagrant-magento
8086287e0fee2471bdd737c40a2cc6d17c3c7470
1
ansible/playbooks/roles/magento-ee-1.13-data-sql
1,819
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/magento-ee-1.13-data-sql/tasks/main.yml", "content": "- name: Extract sample data - SQL\n copy: src=magento-ee-1.13-sql.tar.gz dest=/root/magento-ee-1.13-sql.tar.gz owner=root group=root mode=0644\n\n- shell: cd /root/ && tar -zxvf /root/magento-ee-1.13-sql.tar.gz\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 420, "all_permissive": false }
ansible_role
gergund/vagrant-magento
8086287e0fee2471bdd737c40a2cc6d17c3c7470
1
ansible/playbooks/roles/magento-ee-1.13.1.0
1,819
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/magento-ee-1.13.1.0/tasks/main.yml", "content": "- name: Untar magento-ee-1.13.1.0 to /var/www/html\n shell: cp /vagrant/code/magento-ee-1.13.1.0.tar.gz /var/www/html/ && cd /var/www/html/ && tar -zxvf /var/www/html/magento-ee-1.13.1.0.tar.gz && rm -Rf /var/www/html/magen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 343, "all_permissive": false }
ansible_role
gergund/vagrant-magento
8086287e0fee2471bdd737c40a2cc6d17c3c7470
1
ansible/playbooks/roles/magento-redis-cache
1,819
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/magento-redis-cache/templates/local-redis-session-cache-fpc.xml.j2", "content": "<?xml version=\"1.0\"?>\n<!--\n/**\n * Magento\n *\n * NOTICE OF LICENSE\n *\n * This source file is subject to the Academic Free License (AFL 3.0)\n * that is bundled with this package in the...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 4862, "all_permissive": false }
ansible_role
gergund/vagrant-magento
8086287e0fee2471bdd737c40a2cc6d17c3c7470
1
ansible/playbooks/roles/memcache
1,819
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/memcache/templates/local-memcache.xml.j2", "content": "<?xml version=\"1.0\"?>\n<!--\n/**\n * Magento\n *\n * NOTICE OF LICENSE\n *\n * This source file is subject to the Academic Free License (AFL 3.0)\n * that is bundled with this package in the file LICENSE_AFL.txt.\n *...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3890, "all_permissive": false }
ansible_role
gergund/vagrant-magento
8086287e0fee2471bdd737c40a2cc6d17c3c7470
1
ansible/playbooks/roles/mysql-percona
1,819
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/mysql-percona/handlers/main.yml", "content": "#\n#\n#\n---\n- name: restart mysql\n service: name=mysql state=restarted\n ignore_errors: yes\n tags:\n - mysql.service\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1034, "all_permissive": false }
ansible_role
gergund/vagrant-magento
8086287e0fee2471bdd737c40a2cc6d17c3c7470
1
ansible/playbooks/roles/redis
1,819
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/redis/tasks/main.yml", "content": "---\n- name: Install and configure Redis\n yum: pkg=redis state=installed\n\n- template: src=redis.conf.j2 dest=/etc/redis.conf owner=root group=root mode=0644\n\n- service: name=redis enabled=on state=restarted", "license_type": "no...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 206, "all_permissive": false }
ansible_role
Abdullah-Elkasaby/ansible-demos
282bc96a2a2cc225100dd1adf5a9d8bec84d2d1f
0
roles/webserver
1,819
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "- name: installing package\n apt:\n name: \"{{ package }}\"\n state: latest\n # to always see change for testing\n changed_when: true\n notify: template_handler\n ", "license_type": "no_license", "detected_licenses": [], "size_...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 568, "all_permissive": false }
ansible_role
canboy95/myansiblealpha
abbdc70548673054a2c9273f90fab2a9f1af1045
0
roles/update
1,819
[ "no_license" ]
[ { "path": "roles/update/tasks/main.yml", "content": " - name:\n apt:\n update_cache: yes\n - name:\n command: apt list --upgradable\n register: updates\n - debug: var=updates.stdout_lines\n \n - name: upgrade all packages, exluding apache\n ansible.builtin.dpkg_selections:\n name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 370, "all_permissive": false }
ansible_role
InformaticsMatters/docker-mysql-to-pg-migrator-ansible
c0d13e62b552f069a6153f1e3565302762fe567f
0
roles/migrator
1,819
[ "no_license" ]
[ { "path": "roles/migrator/tasks/prep.yaml", "content": "---\n\n# Common playbook preparation.\n\n# Expose ansible version\n- debug:\n var: ansible_version.full\n\n# Before moving on, this play is expected to be executed from an AWX/Tower\n# instance. If so, a number of AWX/Tower variables should be injec...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 6540, "all_permissive": false }
ansible_role
Mohamedelmahdy01/Microservice_DevOps
b6d393b8e815fb327e705619782e4ccc031550ad
0
ansible/roles/docker
1,819
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n- name: Install Docker\n apt:\n name: docker.io\n state: present\n update_cache: true\n\n- name: Add user to docker group\n user:\n name: \"{{ ansible_user }}\"\n groups: docker\n append: yes", "license_type": "no_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 203, "all_permissive": false }
ansible_role
Mohamedelmahdy01/Microservice_DevOps
b6d393b8e815fb327e705619782e4ccc031550ad
0
ansible/roles/ssh
1,819
[ "no_license" ]
[ { "path": "ansible/roles/ssh/tasks/main.yml", "content": "---\n- name: Create the .ssh directory if it doesn't exist\n file:\n path: \"/home/{{ ansible_user }}/.ssh\"\n state: directory\n mode: \"0700\"\n\n- name: Add the ssh key\n authorized_key:\n user: \"{{ ansible_user }}\"\n key: \"{{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 335, "all_permissive": false }
ansible_role
jun0109/ansible
168652c95df95244c5dcafd66759ac4d80dda92f
0
roles/cpu_check
1,819
[ "no_license" ]
[ { "path": "roles/cpu_check/tasks/main.yml", "content": "--- \n - fail: msg=\"something wrong !!!\"\n when: \n - ansible_processor_cores != ansibleprocessorcores\n\n - name: ansible_processor_cores \"{{ ansibleprocessorcores }}\"\n debug:\n msg: ansible_{{ item }} check OK!\n with_items: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 271, "all_permissive": false }
ansible_role
jun0109/ansible
168652c95df95244c5dcafd66759ac4d80dda92f
0
roles/harbor
1,819
[ "no_license" ]
[ { "path": "roles/harbor/tasks/main.yml", "content": "---\n - name: login\n shell: \"docker login {{ harborip }} -u {{ harboraccount }} -p {{ harborpassword }}\"\n\n - name: pull images on harbor\n shell: docker pull {{ harborip }}/{{ harborrepository }}:{{ harborlatesttag }}\n\n - name: delete harb...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1219, "all_permissive": false }
ansible_role
jun0109/ansible
168652c95df95244c5dcafd66759ac4d80dda92f
0
roles/k8s_master
1,819
[ "no_license" ]
[ { "path": "roles/k8s_master/tasks/main.yml", "content": "---\n - name: set hostname\n shell: hostnamectl set-hostname {{ master_hostname }}\n \n - name: vi hosts\n shell: |\n echo \"{{ master_hostname_ip }} {{ master_hostname }}\" >> /etc/hosts\n echo \"{{ node_hostname_ip }} {{ node_host...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3032, "all_permissive": false }
ansible_role
jun0109/ansible
168652c95df95244c5dcafd66759ac4d80dda92f
0
roles/k8s_node
1,819
[ "no_license" ]
[ { "path": "roles/k8s_node/tasks/main.yml", "content": "---\n - name: set hostname\n shell: hostnamectl set-hostname {{ node_hostname }}\n \n - name: vi hosts\n shell: |\n echo \"{{ master_hostname_ip }} {{ master_hostname }}\" >> /etc/hosts\n echo \"{{ node_hostname_ip }} {{ node_hostname...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2166, "all_permissive": false }
ansible_role
jun0109/ansible
168652c95df95244c5dcafd66759ac4d80dda92f
0
roles/mount_check
1,819
[ "no_license" ]
[ { "path": "roles/mount_check/tasks/main.yml", "content": "--- \n - name: \"{{ bootname }}\"\n assert:\n that: mount.size_total == diskboot\n vars:\n mount: \"{{ ansible_mounts | selectattr('mount','equalto', bootname) | list | first }}\"\n\n - name: \"{{ bootnametop }}\"\n assert:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 376, "all_permissive": false }
ansible_role
jun0109/ansible
168652c95df95244c5dcafd66759ac4d80dda92f
0
roles/network_check
1,819
[ "no_license" ]
[ { "path": "roles/network_check/tasks/main.yml", "content": "---\n - fail: msg=\"something wrong !!!\"\n when:\n - ansible_interfaces[1] != ansibleinterfaces\n \n - name: interfaces = \"{{ ansibleinterfaces }}\"\n debug:\n msg: ansible_{{ item }} check OK!\n with_items: \"{{ ansible_inter...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 247, "all_permissive": false }
ansible_role
jun0109/ansible
168652c95df95244c5dcafd66759ac4d80dda92f
0
roles/os_check
1,819
[ "no_license" ]
[ { "path": "roles/os_check/tasks/main.yml", "content": "---\n - fail: msg=\"something wrong !!!\"\n when: \n - ansible_distribution != ansibledistribution \n\n - name: ansible_distribution = \"{{ ansibledistribution }}\"\n debug: \n msg: ansible_{{ item }} check OK!\n with_items: \"{{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 781, "all_permissive": false }
ansible_role
jun0109/ansible
168652c95df95244c5dcafd66759ac4d80dda92f
0
roles/ram_check
1,819
[ "no_license" ]
[ { "path": "roles/ram_check/tasks/main.yml", "content": "---\n - fail: msg=\"something wrong !!!\"\n when:\n - ansible_memtotal_mb != ansiblememtotalmb\n - name: ansible_memtotal_mb = \"{{ansiblememtotalmb}}\"\n debug: \n msg: ansible_{{ item }} check OK!\n with_items: \"{{ ansible_memtota...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 248, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/base
1,859
[ "no_license" ]
[ { "path": "roles/base/handlers/main.yml", "content": "---\n- name: stop systemd per-user instance\n systemd:\n name: \"user@{{ user_uid }}\"\n state: stopped\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 }, { "path": "roles/base/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 2000, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/browsers
1,859
[ "no_license" ]
[ { "path": "roles/browsers/tasks/main.yml", "content": "---\n- name: Install chromium\n pacman:\n name: chromium\n state: present\n\n- name: Install firefox\n pacman:\n name: firefox\n state: present\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
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/desktop
1,859
[ "no_license" ]
[ { "path": "roles/desktop/tasks/main.yml", "content": "---\n- name: Install i3\n pacman:\n name: i3-gaps\n state: present\n\n- name: Install picom\n pacman:\n name: picom\n state: present\n\n- name: Install i3lock\n pacman:\n name: i3lock\n state: present\n\n- name: Install xss-lock\n p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 920, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/dotfiles
1,859
[ "no_license" ]
[ { "path": "roles/dotfiles/tasks/main.yml", "content": "---\n- name: Install stow\n pacman:\n name: stow\n state: present\n\n- stat: path=~{{ user.name }}/.dotfiles\n register: dotfiles_dir\n\n- name: Clone dotfiles\n become: yes\n become_user: \"{{ user.name }}\"\n git:\n repo: \"git://github....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 526, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/editors
1,859
[ "no_license" ]
[ { "path": "roles/editors/tasks/main.yml", "content": "---\n- name: Install editors\n pacman:\n name: \"{{ packages.editors }}\"\n state: present\n\n- name: Install dictionary\n pacman:\n name: hunspell-en_GB\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": 174, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/fonts
1,859
[ "no_license" ]
[ { "path": "roles/fonts/tasks/main.yml", "content": "---\n- name: Install fonts\n pacman:\n name: \"{{ packages.fonts }}\"\n state: present\n\n- name: Enable subpixel rendering\n file:\n src: /etc/fonts/conf.avail/10-sub-pixel-rgb.conf\n dest: /etc/fonts/conf.d/10-sub-pixel-rgb.conf\n state:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 403, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/keyring
1,859
[ "no_license" ]
[ { "path": "roles/keyring/tasks/main.yml", "content": "---\n- name: Install keyring\n pacman:\n name:\n - gnome-keyring\n - seahorse\n state: present\n\n- name: Append auth rule\n pamd:\n name: login\n type: auth\n control: include\n module_path: system-local-login\n new_type...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 601, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/media
1,859
[ "no_license" ]
[ { "path": "roles/media/tasks/main.yml", "content": "---\n- name: Install feh\n pacman:\n name: feh\n state: present\n\n- name: Install mpv\n pacman:\n name: mpv\n state: present\n\n- name: Install youtube-dl\n pacman:\n name: youtube-dl\n state: present\n", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 209, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/ntp
1,859
[ "no_license" ]
[ { "path": "roles/ntp/tasks/main.yml", "content": "---\n- name: Enable systemd-timesyncd\n systemd:\n name: systemd-timesyncd\n state: started\n enabled: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 112, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/redshift
1,859
[ "no_license" ]
[ { "path": "roles/redshift/tasks/main.yml", "content": "---\n- name: Install redshift\n pacman:\n name: redshift\n state: present\n\n- name: Enable redshift user service\n systemd:\n name: redshift\n scope: user\n enabled: yes\n become: yes\n become_user: \"{{ user.name }}\"\n\n\n- name: C...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 663, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/sound
1,859
[ "no_license" ]
[ { "path": "roles/sound/tasks/main.yml", "content": "---\n- name: Install PulseAudio\n pacman:\n name:\n - pulseaudio\n - pulseaudio-alsa\n - pavucontrol\n state: present\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
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/systemd-boot
1,859
[ "no_license" ]
[ { "path": "roles/systemd-boot/tasks/main.yml", "content": "---\n- name: Install intel microcode\n pacman:\n name: intel-ucode\n state: present\n when: \"'GenuineIntel' in ansible_processor\"\n\n- name: Install amd microcode\n pacman:\n name: amd-ucode\n state: present\n when: \"'AuthenticAMD...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1981, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/user
1,859
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yml", "content": "---\n- name: Create new user\n user:\n name: \"{{ user.name }}\"\n groups: \"{{ user.groups }}\"\n shell: \"{{ user.shell }}\"\n password: \"{{ <PASSWORD>|password_hash('<PASSWORD>') }}\"\n update_password: on_create\n append: yes\n\n# Wo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 595, "all_permissive": false }
ansible_role
drewreeve/ansible-arch
1c72499df08e10fef1e9bd1f3f3abdded69c603a
0
roles/xorg
1,859
[ "no_license" ]
[ { "path": "roles/xorg/tasks/main.yml", "content": "---\n- name: Install xorg\n pacman:\n name:\n - xorg-server\n - xorg-xinit\n - xorg-xdpyinfo\n state: present\n\n- name: Install xev\n pacman:\n name: xorg-xev\n state: present\n\n- name: Install xmodmap\n pacman:\n name: xo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 852, "all_permissive": false }
ansible_role
MaxinePulao/Final_Exam_Pulao
19085b4051dd889a8418557f305151a26aead79f
0
roles/CentOS
1,859
[ "no_license" ]
[ { "path": "roles/CentOS/tasks/main.yml", "content": "# Changing MOTD\n- name: Changing the MOTD file\n blockinfile:\n path: /etc/motd\n block: |\n Ansible Managed by maxinepulao\n- block:\n - name: Verifying if already change the MOTD.\n shell: cat /etc/motd\n register: motd_service\n\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2756, "all_permissive": false }
ansible_role
sabbas24/postgresql
ddf709317ee1595f0ca98a522cb951b5084d7ef0
0
roles/createdb
1,859
[ "no_license" ]
[ { "path": "roles/createdb/tasks/main.yml", "content": "---\n- name: Ensure bash, OpenSSl, and libssl are the latest versions\n apt: name={{ item }} update_cache=true state=latest\n with_items:\n - bash\n - openssl\n - libssl-dev\n - libssl-doc\n tags: packages\n\n- name: Install PostgreSQL\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1024, "all_permissive": false }
ansible_role
m-taira/rails_playbook
92f3f6dddc2c5a3afd8dc3d982e8c9d64baa1b7b
0
rails_php_mysql_ansible/ansible/roles/common
1,859
[ "no_license" ]
[ { "path": "rails_php_mysql_ansible/ansible/roles/common/tasks/main.yml", "content": "- name: sudo configured\n sudo: yes\n copy: src=\"sudoers\" dest=\"/etc/sudoers\" owner=root group=root mode=0440\n tags: users\n\n- name: enabled iptables\n sudo: yes\n service: name=iptables state=stopped enabled=no\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 316, "all_permissive": false }
ansible_role
m-taira/rails_playbook
92f3f6dddc2c5a3afd8dc3d982e8c9d64baa1b7b
0
rails_php_mysql_ansible/ansible/roles/webtier
1,859
[ "no_license" ]
[ { "path": "rails_php_mysql_ansible/ansible/roles/webtier/tasks/php.yml", "content": "# php\n- name: php is installed\n sudo: yes\n yum: pkg={{ item }} state=installed\n with_items:\n - php\n - php-mbstring\n - php-common\n - php-pear\n - php-cli\n - php-mysql\n notify:\n - restart h...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2245, "all_permissive": false }
ansible_role
m-taira/rails_playbook
92f3f6dddc2c5a3afd8dc3d982e8c9d64baa1b7b
0
roles/common
1,859
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: users eixst\n sudo: yes\n user: name={{item.name}} state=present password={{<PASSWORD>}} groups={{item.groups}}\n with_items: users\n tags: users\n\n- name: ~/.ssh for users exist\n sudo: yes\n file: path=\"/home/{{item.name}}/.ssh\" state=...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 798, "all_permissive": false }
ansible_role
m-taira/rails_playbook
92f3f6dddc2c5a3afd8dc3d982e8c9d64baa1b7b
0
roles/webtier
1,859
[ "no_license" ]
[ { "path": "roles/webtier/files/rbenv.sh", "content": "export RBENV_ROOT=\"/usr/local/rbenv\"\nexport PATH=\"/usr/local/rbenv/bin:$PATH\"\nif which rbenv > /dev/null; then eval \"$(rbenv init -)\"; fi\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 138 }, { "path"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2301, "all_permissive": false }
ansible_role
aliasbo/ocp4-libvirt
d9a6d54d57b186d7d02ee849f2ce976769fda155
0
ansible/roles/dnsmasq
1,859
[ "no_license" ]
[ { "path": "ansible/roles/dnsmasq/tasks/main.yml", "content": "---\n# tasks\n- name: Install dnsmasq and ipxe bootimgs\n package:\n name: \"{{ item }}\"\n state: present\n loop: \"{{ packages }}\"\n\n- name: Deploy dnsmasq main config\n copy:\n src: dnsmasq.conf\n dest: /etc/dnsmasq.conf\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2558, "all_permissive": false }
ansible_role
aliasbo/ocp4-libvirt
d9a6d54d57b186d7d02ee849f2ce976769fda155
0
ansible/roles/haproxy
1,859
[ "no_license" ]
[ { "path": "ansible/roles/haproxy/templates/haproxy.cfg.j2", "content": "## Jinja2 template\n#---------------------------------------------------------------------\n# Example configuration for a possible web application. See the\n# full configuration options online.\n#\n# http://haproxy.1wt.eu/download/1....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4167, "all_permissive": false }
ansible_role
aliasbo/ocp4-libvirt
d9a6d54d57b186d7d02ee849f2ce976769fda155
0
ansible/roles/ignition
1,859
[ "no_license" ]
[ { "path": "ansible/roles/ignition/defaults/main.yml", "content": "---\nocp_num_masters: 1\nocp_num_workers: 2\nnet_domain: \"example.com\"\nocp_name: \"ocp4\"\nocp_base_dir : \"/opt/openshift\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 }, { "path": "ans...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2483, "all_permissive": false }
ansible_role
aliasbo/ocp4-libvirt
d9a6d54d57b186d7d02ee849f2ce976769fda155
0
ansible/roles/libvirt
1,859
[ "no_license" ]
[ { "path": "ansible/roles/libvirt/vars/main.yml", "content": "---\n# vars\n\nrhel_packages:\n - qemu-kvm\n - libvirt\n - libvirt-python\n - libguestfs-tools\n - virt-install\n\ndebian_packages:\n - qemu-kvm\n - libvirt-daemon-system\n - libvirt-clients\n - virtinst\n", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 604, "all_permissive": false }
ansible_role
aliasbo/ocp4-libvirt
d9a6d54d57b186d7d02ee849f2ce976769fda155
0
ansible/roles/matchbox
1,859
[ "no_license" ]
[ { "path": "ansible/roles/matchbox/templates/profile.json.j2", "content": "{\n \"id\": \"{{ item }}\",\n \"name\": \"{{ item }} profile\",\n \"ignition_id\": \"{{ item }}.ign\",\n \"boot\": {\n \"kernel\": \"/assets/{{ rhcos_kernel }}\",\n \"initrd\": [\"/assets/{{ rhcos_initrd }}\"],\n \"args\": [\n ...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 6713, "all_permissive": false }
ansible_role
aliasbo/ocp4-libvirt
d9a6d54d57b186d7d02ee849f2ce976769fda155
0
ansible/roles/utilities
1,859
[ "no_license" ]
[ { "path": "ansible/roles/utilities/tasks/main.yml", "content": "---\n# main\n\n- name: Add EPEL repo\n package:\n name: epel-release\n state: present\n\n- name: Install additional groups\n yum:\n name: \"{{ item }}\"\n state: present\n loop: \"{{ group_list }}\"\n\n- name: Install additional...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 823, "all_permissive": false }
ansible_role
aliasbo/ocp4-libvirt
d9a6d54d57b186d7d02ee849f2ce976769fda155
0
ansible/roles/virt-install
1,859
[ "no_license" ]
[ { "path": "ansible/roles/virt-install/defaults/main.yml", "content": "---\n\n# consider that this role isn't run against the created VMs but against the virtualization host,\n# i.e. you can only overwrite these variables in the inventory by defining them at the host level.\n# Use the libvirt_... variables t...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 7496, "all_permissive": false }
ansible_role
aliasbo/ocp4-libvirt
d9a6d54d57b186d7d02ee849f2ce976769fda155
0
ansible/roles/virt-remove
1,859
[ "no_license" ]
[ { "path": "ansible/roles/virt-remove/tasks/main.yml", "content": "---\n# tasks\n\n- name: List all VMs\n virt:\n command: list_vms\n uri: \"{{ libvirt_connect }}\"\n register: all_vms\n ignore_errors: yes\n failed_when: libvirt_name not in all_vms.list_vms\n\n- debug:\n msg: \"VM {{ libvirt_na...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1206, "all_permissive": false }
ansible_role
absenth/ansible
2705db9152f6aeeb5e2ff5e98f5367a7d14851c3
1
archlinux/roles/docker
1,859
[ "no_license" ]
[ { "path": "archlinux/roles/docker/tasks/main.yml", "content": "---\n\n - name: Install Docker\n pacman:\n name:\n - docker\n - docker-compose\n state: latest\n\n - name: Add Docker to Systemd\n systemd:\n enabled: yes\n state: started\n name: docker\n", "li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 221, "all_permissive": false }
ansible_role
absenth/ansible
2705db9152f6aeeb5e2ff5e98f5367a7d14851c3
1
archlinux/roles/packages
1,859
[ "no_license" ]
[ { "path": "archlinux/roles/packages/tasks/main.yml", "content": "---\n\n- name: Update Pacman and Packages\n pacman:\n update_cache: yes\n upgrade: yes\n\n- name: Install packages\n pacman:\n name:\n - chromium\n - discord\n - firefox\n - git\n - man-db\n - neofetch\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 506, "all_permissive": false }
ansible_role
absenth/ansible
2705db9152f6aeeb5e2ff5e98f5367a7d14851c3
1
archlinux/roles/users
1,859
[ "no_license" ]
[ { "path": "archlinux/roles/users/tasks/main.yml", "content": "---\n\n- name: setup default users\n user:\n name: lars\n comment: <NAME>\n groups: wheel,docker\n shell: /usr/bin/zsh\n generate_ssh_key: yes\n ssh_key_type: ed25519\n", "license_type": "no_license", "detected_licenses...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 177, "all_permissive": false }
ansible_role
absenth/ansible
2705db9152f6aeeb5e2ff5e98f5367a7d14851c3
1
archlinux/roles/xorg
1,859
[ "no_license" ]
[ { "path": "archlinux/roles/xorg/tasks/main.yml", "content": "---\n\n- name: Install Intel Graphics Drivers\n pacman:\n name:\n - xf86-video-intel\n - mesa\n #when: model in [\"T460s\", \"X260\"]\n\n- name: Install nvidia Graphics Drivers\n pacman:\n name:\n - xf86-video-nouveau...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1042, "all_permissive": false }
ansible_role
vikrampanth/Udapeople_Auto_Deploy_P3
ca1b1342be7c3f51a3d3ad13f05aee6111708a7d
0
.circleci/ansible/roles/deploy
1,859
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "---\n- name: Creates directory\n file:\n path: ~/web\n state: directory\n\n- name: Copy backend tar files\n become: true\n copy:\n src: /home/backend.tar.gz\n dest: /home/ubuntu/backend.tar.gz\n\n- name: Unpack and move\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 486, "all_permissive": false }
ansible_role
tonybourke-automation/AVD-Level5-old
c170696253115f97436a6c1077b78aeb1199ab16
3
playbooks/roles/atd_provisioner
1,859
[ "no_license" ]
[ { "path": "playbooks/roles/atd_provisioner/tasks/main.yml", "content": "---\n# tasks file for atd-provisioner\n# tasks file for eos-config-deploy-cvp - state=present\n- name: \"Building Containers topology on {{inventory_hostname}}\"\n tags: [provision, apply]\n arista.cvp.cv_container_v3:\n topology: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 859, "all_permissive": false }
ansible_role
tonybourke-automation/AVD-Level5-old
c170696253115f97436a6c1077b78aeb1199ab16
3
playbooks/roles/build_output_folders
1,859
[ "no_license" ]
[ { "path": "playbooks/roles/build_output_folders/tasks/main.yml", "content": "---\n# tasks file for build_directories\n\n- name: \"Cleanup existing folders in {{ output_dir }}\"\n file:\n path: \"{{ output_dir }}\"\n state: absent\n mode: 0775\n delegate_to: localhost\n run_once: True\n\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2686, "all_permissive": false }
ansible_role
tonybourke-automation/AVD-Level5-old
c170696253115f97436a6c1077b78aeb1199ab16
3
playbooks/roles/cvp_configlet_upload
1,859
[ "no_license" ]
[ { "path": "playbooks/roles/cvp_configlet_upload/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - cvp_configlet_upload\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 79 }, { "path": "playbooks/roles/cvp_configlet_upload/R...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 5653, "all_permissive": false }
ansible_role
tonybourke-automation/AVD-Level5-old
c170696253115f97436a6c1077b78aeb1199ab16
3
playbooks/roles/dhcp_provisioner
1,859
[ "no_license" ]
[ { "path": "playbooks/roles/dhcp_provisioner/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - dhcp_provisioner\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 75 }, { "path": "playbooks/roles/dhcp_provisioner/vars/main.yml...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 9552, "all_permissive": false }
ansible_role
tonybourke-automation/AVD-Level5-old
c170696253115f97436a6c1077b78aeb1199ab16
3
playbooks/roles/eos_config_deploy_eapi
1,859
[ "no_license" ]
[ { "path": "playbooks/roles/eos_config_deploy_eapi/handlers/main.yml", "content": "---\n # handlers file for eos_config_deploy_eapi\n\n- name: backup running config\n eos_config:\n backup: yes\n backup_options:\n filename: \"{{ post_running_config_backup_filename }}\"\n dir_path: \"{{ post_...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1403, "all_permissive": false }
ansible_role
tonybourke-automation/AVD-Level5-old
c170696253115f97436a6c1077b78aeb1199ab16
3
playbooks/roles/eos_snapshot
1,859
[ "no_license" ]
[ { "path": "playbooks/roles/eos_snapshot/tasks/main.yml", "content": "---\n# tasks file for eos_snapshot\n\n- name: Create required output directories if not present\n file:\n path: \"{{ item }}\"\n state: directory\n mode: 0775\n loop:\n - \"{{ snapshots_backup_dir }}\"\n delegate_to: localho...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 3260, "all_permissive": false }
ansible_role
tonybourke-automation/AVD-Level5-old
c170696253115f97436a6c1077b78aeb1199ab16
3
playbooks/roles/eos_validate_state
1,859
[ "no_license" ]
[ { "path": "playbooks/roles/eos_validate_state/meta/main.yml", "content": "galaxy_info:\n author: <NAME> <<EMAIL>>\n description: Validate states on EOS devices via eapi.\n issue_tracker_url: https://github.com/aristanetworks/ansible-avd/issues\n company: Arista Networks\n license: Apache-2.0\n min_ans...
{ "task_files": 9, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 14, "total_bytes": 41598, "all_permissive": false }
ansible_role
alpha-prosoft/alpha-jenkins-svc
330878145b0b56e510e1eb141bf48fcfb4cace1f
0
ansible/build/roles/install-jenkins
1,899
[ "no_license" ]
[ { "path": "ansible/build/roles/install-jenkins/tasks/jenkins.yml", "content": "- debug:\n msg: 'Start jenkins installation'\n\n- name: 'Echo PATH' \n shell: 'echo $PATH'\n\n- name: 'whereis' \n shell: 'whereis sudo'\n\n- name: 'Find waldo'\n shell: 'find /usr -name sudo'\n\n- name: 'Print release'\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 24470, "all_permissive": false }
ansible_role
hemanthtadikonda/rb-jenkins
f600ff14944a8872419d2e85122aa1244784d2a7
0
roles/jenkins
1,899
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/main.yml", "content": "- name: Create Folders\n ansible.builtin.include_tasks:\n file: folders.yml\n loop: \"{{ folders }}\"\n\n- name: Create pipeline jobs\n ansible.builtin.include_tasks:\n file: sjobs.yml\n loop: \"{{ sjobs }}\"\n\n- name: Create MultiBranch pip...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1094, "all_permissive": false }
ansible_role
yunlzheng/aws_ansible
2725e134a8b1071d541c504a705876450a3a0566
1
provision/roles/app_remote
1,899
[ "no_license" ]
[ { "path": "provision/roles/app_remote/tasks/main.yml", "content": "---\n - file: path=/srv/www/ owner=ubuntu state=directory\n sudo: yes\n\n - name: checkout the code base\n sudo: no\n git: >\n accept_hostkey=yes\n repo=https://github.com/yunlzheng/aws_ansible.git\n dest=/srv/www/t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 363, "all_permissive": false }
ansible_role
yunlzheng/aws_ansible
2725e134a8b1071d541c504a705876450a3a0566
1
provision/roles/common
1,899
[ "no_license" ]
[ { "path": "provision/roles/common/tasks/main.yml", "content": "---\n#- copy: src=sources.list dest=/etc/apt/sources.list backup=yes\n- apt_repository: repo=ppa:chris-lea/node.js\n\n- shell: apt-get update && touch apt.update.success\n args:\n creates: apt.update.success\n\n- apt: name={{ item }}\n with...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 337, "all_permissive": false }
ansible_role
yunlzheng/aws_ansible
2725e134a8b1071d541c504a705876450a3a0566
1
provision/roles/nginx
1,899
[ "no_license" ]
[ { "path": "provision/roles/nginx/tasks/main.yml", "content": "---\n - apt: name={{ item }}\n with_items:\n - nginx\n \n - name: write nginx.conf\n copy: src=nginx.conf dest=/etc/nginx/sites-available/todo\n notify:\n - restart nginx\n\n - name: remove default nginx site\n file:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 414, "all_permissive": false }
ansible_role
echennareddygari-nuage/test
e202ba8e593b29fa775b7b5da451c6fa4f0c69b0
0
ansible/kickstart/roles/terraform
1,899
[ "no_license" ]
[ { "path": "ansible/kickstart/roles/terraform/templates/terraform.tfvars.j2", "content": "## GENERATED BY KICKSTART ANSIBLE\n## DO NOT MODIFY FOR ANY REASON\n\nprojectName = \"{{ projectName }}\"\ninternalFQDN = \"{{ internalFQDN }}\"\neksClusterName = \"{{ eksClusterName }}\"\n\nawsAccessKey = \"{{ aws.acce...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1144, "all_permissive": false }
ansible_role
echennareddygari-nuage/test
e202ba8e593b29fa775b7b5da451c6fa4f0c69b0
0
ansible/postMetro/roles/agents
1,899
[ "no_license" ]
[ { "path": "ansible/postMetro/roles/agents/tasks/zabbix-agent.yml", "content": "---\n# The following tasks install the Zabbix agent package and configures it\n\n - name: Install the zabbix agent repo\n yum:\n name: \"{{ zabbix.agentrepo }}\"\n state: present\n become: true\n ignore_errors...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 4005, "all_permissive": false }
ansible_role
echennareddygari-nuage/test
e202ba8e593b29fa775b7b5da451c6fa4f0c69b0
0
ansible/postMetro/roles/certificates
1,899
[ "no_license" ]
[ { "path": "ansible/postMetro/roles/certificates/tasks/vsd-users.yml", "content": "---\n# This task adds proxy users to VSD-A and assigns them to the\n# required groups.\n\n # Get the ID for the csp root enterprise\n - name: Get csp enterprise id\n connection: local\n nuage_vspk:\n auth: \"{{ nu...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 11685, "all_permissive": false }
ansible_role
echennareddygari-nuage/test
e202ba8e593b29fa775b7b5da451c6fa4f0c69b0
0
ansible/postMetro/roles/jumphost
1,899
[ "no_license" ]
[ { "path": "ansible/postMetro/roles/jumphost/tasks/init.yml", "content": "---\n# Initialize the jump host. Install any necesary packages of config before running remaining postMetro tasks\n\n# Install and upgrade packages and binaries\n- name: Ensure all required packages for jump host are installed\n yum:...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1710, "all_permissive": false }
ansible_role
echennareddygari-nuage/test
e202ba8e593b29fa775b7b5da451c6fa4f0c69b0
0
ansible/postMetro/roles/kubernetes
1,899
[ "no_license" ]
[ { "path": "ansible/postMetro/roles/kubernetes/files/graylog-web-svc.yml", "content": "apiVersion: v1\nkind: Service\nmetadata:\n name: graylog-web\n annotations:\n service.beta.kubernetes.io/aws-load-balancer-internal: 0.0.0.0/0\nspec:\n type: LoadBalancer\n selector:\n app: graylog-web\n ports:\...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 12, "total_bytes": 16482, "all_permissive": false }
ansible_role
echennareddygari-nuage/test
e202ba8e593b29fa775b7b5da451c6fa4f0c69b0
0
ansible/postMetro/roles/ldap
1,899
[ "no_license" ]
[ { "path": "ansible/postMetro/roles/ldap/tasks/ldap_config.yml", "content": "---\n\n- name: Join the instance to the domain\n shell: echo {{ ldap.password }} | sudo realm join -v -U {{ ldap.user }} {{ ldap.ip }} --install=/\n\n- name: Make edits to the sssd.conf file 1/3 - comment out ad_server line\n line...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1516, "all_permissive": false }