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 | hirosciutto/VueAndLaravelStarters | f9454c8eab1ceaf945a9bb3c56021a6090a3d2da | 0 | api/ansible/roles/common | 7,193 | [
"no_license"
] | [
{
"path": "api/ansible/roles/common/tasks/main.yml",
"content": "- name: install common\r\n yum:\r\n state: latest\r\n name:\r\n - vim\r\n - wget\r\n - zlib\r\n - zlib-devel\r\n - openssl\r\n - openssl-devel\r\n - libselinux-python\r\n - gcc-c++\r\n - libp... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 822,
"all_permissive": false
} |
ansible_role | hirosciutto/VueAndLaravelStarters | f9454c8eab1ceaf945a9bb3c56021a6090a3d2da | 0 | api/ansible/roles/composer | 7,193 | [
"no_license"
] | [
{
"path": "api/ansible/roles/composer/tasks/main.yml",
"content": "---\r\n- name: download composer\r\n get_url:\r\n url: https://getcomposer.org/installer\r\n dest: /tmp/installer\r\n\r\n- name: install composer\r\n shell: cat /tmp/installer | php -- --install-dir=/usr/local/bin\r\n\r\n- name: rena... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 709,
"all_permissive": false
} |
ansible_role | hirosciutto/VueAndLaravelStarters | f9454c8eab1ceaf945a9bb3c56021a6090a3d2da | 0 | api/ansible/roles/mysql | 7,193 | [
"no_license"
] | [
{
"path": "api/ansible/roles/mysql/tasks/main.yml",
"content": "---\r\n- name: Remove mariadb\r\n yum: name=mariadb-libs state=absent\r\n\r\n- name: Add repository\r\n yum: name=http://dev.mysql.com/get/mysql57-community-release-el6-7.noarch.rpm state=present\r\n\r\n- name: Install mysql\r\n yum:\r\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1905,
"all_permissive": false
} |
ansible_role | hirosciutto/VueAndLaravelStarters | f9454c8eab1ceaf945a9bb3c56021a6090a3d2da | 0 | api/ansible/roles/node | 7,193 | [
"no_license"
] | [
{
"path": "api/ansible/roles/node/tasks/main.yml",
"content": "---\r\n- name: remove nodejs\r\n yum:\r\n name: nodejs\r\n state: absent\r\n\r\n- name: Setup nodejs\r\n get_url:\r\n url: https://rpm.nodesource.com/setup_10.x\r\n dest: /tmp/installer\r\n\r\n- name: Install nodejs\r\n yum:\r\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 276,
"all_permissive": false
} |
ansible_role | hirosciutto/VueAndLaravelStarters | f9454c8eab1ceaf945a9bb3c56021a6090a3d2da | 0 | api/ansible/roles/php | 7,193 | [
"no_license"
] | [
{
"path": "api/ansible/roles/php/tasks/main.yml",
"content": "- name: set epel repository\r\n yum: name=epel-release\r\n- name: set remi repository\r\n yum: name=http://rpms.remirepo.net/enterprise/remi-release-7.rpm\r\n- name: install php7.2\r\n yum:\r\n name: \"{{ packages }}\"\r\n enablerepo: re... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1673,
"all_permissive": false
} |
ansible_role | hirosciutto/VueAndLaravelStarters | f9454c8eab1ceaf945a9bb3c56021a6090a3d2da | 0 | api/ansible/roles/redis | 7,193 | [
"no_license"
] | [
{
"path": "api/ansible/roles/redis/tasks/main.yml",
"content": "- name: Install redis\r\n yum: name=redis state=present\r\n- name: Chkconfig redis\r\n command: systemctl enable redis.service\r\n- name: Start redis\r\n command: systemctl start redis.service\r\n\r\n- name: Install supervisor\r\n yum: name... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 927,
"all_permissive": false
} |
ansible_role | hirosciutto/VueAndLaravelStarters | f9454c8eab1ceaf945a9bb3c56021a6090a3d2da | 0 | vue/ansible/roles/httpd | 7,193 | [
"no_license"
] | [
{
"path": "vue/ansible/roles/httpd/tasks/main.yml",
"content": "---\n- name: Install httpd\n yum: name=httpd state=present\n\n- name: Chkconfig httpd\n command: systemctl enable httpd\n\n- name: Remove files\n file: path=\"{{ item }}\" state=absent\n with_items:\n - /var/www/html\n - /etc/httpd/conf.d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 717,
"all_permissive": false
} |
ansible_role | hirosciutto/VueAndLaravelStarters | f9454c8eab1ceaf945a9bb3c56021a6090a3d2da | 0 | vue/ansible/roles/node | 7,193 | [
"no_license"
] | [
{
"path": "vue/ansible/roles/node/tasks/main.yml",
"content": "---\n- name: remove nodejs\n yum:\n name: nodejs\n state: absent\n\n- name: Setup nodejs\n get_url:\n url: https://rpm.nodesource.com/setup_10.x\n dest: /tmp/installer\n\n- name: Install nodejs\n yum:\n enablerepo: epel\n na... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 528,
"all_permissive": false
} |
ansible_role | sircatalyst/project3-udapeople-cicd | b09189beb22b88ee094e6c520c07fe91e7d6d263 | 1 | .circleci/ansible/roles/deploy | 7,193 | [
"no_license"
] | [
{
"path": ".circleci/ansible/roles/deploy/tasks/main.yml",
"content": "---\r\n- name: Copy artifact.tar.gz to EC2\r\n copy:\r\n src: artifact.tar.gz\r\n dest: /home/ubuntu/artifact.tar.gz\r\n\r\n- name: Start the app\r\n shell: |\r\n cd /home/ubuntu/\r\n tar -xvf artifact.tar.gz\r\n npm ins... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 295,
"all_permissive": false
} |
ansible_role | mainecivichackday/RISE_Survey | 72be224d4bd3cb41f9551497e33f707e1b513e4d | 1 | ansible/roles/celery | 7,193 | [
"no_license"
] | [
{
"path": "ansible/roles/celery/templates/celeryd.conf.j2",
"content": "description \"Celery for {{deployment_name}} [{{mode}}]\"\nstart on runlevel [2345]\nstop on runlevel [06]\nrespawn\nrespawn limit 10 5\nchdir /home/{{deployment_name}}/{{mode}}/app\nenv PYTHON_PATH=\"/home/{{deployment_name}}/{{mode}}/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1052,
"all_permissive": false
} |
ansible_role | mainecivichackday/RISE_Survey | 72be224d4bd3cb41f9551497e33f707e1b513e4d | 1 | ansible/roles/django | 7,193 | [
"no_license"
] | [
{
"path": "ansible/roles/django/templates/nginx.conf.j2",
"content": "upstream {{deployment_name}}_gunicorn_process {\n server 127.0.0.1:{{port_number}};\n}\n\nserver {\n listen 80;\n\n server_name {{server}};\n\n access_log /home/{{deployment_name}}/logs/access.{{mode}}.log;\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3744,
"all_permissive": false
} |
ansible_role | mainecivichackday/RISE_Survey | 72be224d4bd3cb41f9551497e33f707e1b513e4d | 1 | ansible/roles/vagrant | 7,193 | [
"no_license"
] | [
{
"path": "ansible/roles/vagrant/tasks/pg_sync.yml",
"content": "- name: Copy the production database (Vagrant)\n shell: psql -d {{dbname}} -f {{project_root}}/{{repo_name}}/{{dbdump_file}}\n sudo_user: postgres\n\n- name: Restart Supervisor\n supervisorctl: name={{deployment_name}} state=restarted \n",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 234,
"all_permissive": false
} |
ansible_role | fdv/ansible-freebsd | bea26f33dfdba2ab3424fc7d0e9c8b641ad06a1b | 1 | roles/poudriere | 7,193 | [
"no_license"
] | [
{
"path": "roles/poudriere/tasks/config.yml",
"content": "---\n- name: Copies poudriere configuration file\n template: src=usr/local/etc/poudriere.conf.j2 dest=/usr/local/etc/poudriere.conf mode=0640 owner=root group=wheel\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes":... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1396,
"all_permissive": false
} |
ansible_role | ricardo-aires/zookeeper-deploy | 2444e1999f0b197c909f15ccf530ab361f7c69fd | 0 | ansible/roles/zookeeper | 7,193 | [
"no_license"
] | [
{
"path": "ansible/roles/zookeeper/templates/zoo.cfg.j2",
"content": "# The number of milliseconds of each tick\ntickTime={{zookeeper_tick_time}}\n# The number of ticks that the initial\n# synchronization phase can take\ninitLimit={{zookeeper_init_limit}}\n# The number of ticks that can pass between\n# send... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 10049,
"all_permissive": false
} |
ansible_role | DronMDF/zold-lazy-node | 835a4c505dbfccb800af69146487f18d10e3c39c | 1 | ansible/roles/gunicorn | 7,193 | [
"no_license"
] | [
{
"path": "ansible/roles/gunicorn/tasks/main.yml",
"content": "---\n- name: Install gunicorn package\n pip:\n name: gunicorn\n executable: pip3\n- name: install gunicorn service\n template:\n src: gunicorn.service.j2\n dest: /etc/systemd/system/gunicorn.service\n- name: install gunicorn socket... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1344,
"all_permissive": false
} |
ansible_role | DronMDF/zold-lazy-node | 835a4c505dbfccb800af69146487f18d10e3c39c | 1 | ansible/roles/zold | 7,193 | [
"no_license"
] | [
{
"path": "ansible/roles/zold/tasks/main.yml",
"content": "---\n- name: Install pip3\n apt:\n name: python3-pip\n state: present\n force: yes\n- name: Copy zold requirements file\n copy:\n src: \"{{playbook_dir}}/../requirements.txt\"\n dest: \"{{project_dir}}/\"\n# @todo #16 Список модулей... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1632,
"all_permissive": false
} |
ansible_role | binkocd/ACG-Introduction-to-Ansible---Debian | 98bcda93add9c6461631226f51783591aa927971 | 0 | ansible-roles/roles/webservers | 7,193 | [
"no_license"
] | [
{
"path": "ansible-roles/roles/webservers/tasks/main.yml",
"content": "---\n# tasks file for roles/webserver\n\n- name: Upload application file\n copy:\n src: ../files/index.php\n dest: \"{{ path_to_app }}\"\n mode: 0755\n\n- name: Create simple info page\n copy:\n dest: \"{{ path_to_app }}/in... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 491,
"all_permissive": false
} |
ansible_role | kaija/ansible-elasticsearch-ubuntu | b83c804d9d8e75fe046c9dd51b0616712fa25468 | 0 | roles/elasticsearch | 7,193 | [
"no_license"
] | [
{
"path": "roles/elasticsearch/tasks/install.yml",
"content": "---\n- name: Install Oracle Java PPA\n apt_repository: repo='ppa:webupd8team/java' state=present\n register: ppastable\n\n- name: Accept Java 8 License\n become: yes\n debconf: name='oracle-java8-installer' question='shared/accepted-oracle-l... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 2241,
"all_permissive": false
} |
ansible_role | ehdrn3020/logstash_pipeline | b32fd09ae1c63a6872ec37ef26193d7b61bf0dfc | 0 | data_pipeline/roles/collector | 7,194 | [
"no_license"
] | [
{
"path": "data_pipeline/roles/collector/templates/run_logstash.sh",
"content": "#!/bin/bash\n\n# Run Logstash\nLOG_DATE=$(date \"+%Y%m%d\") \\\n/home/ec2-user/packages/logstash-8.16.0/bin/logstash \\\n-f /home/ec2-user/packages/logstash-8.16.0/config/collector.conf",
"license_type": "no_license",
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3376,
"all_permissive": false
} |
ansible_role | ehdrn3020/logstash_pipeline | b32fd09ae1c63a6872ec37ef26193d7b61bf0dfc | 0 | data_pipeline/roles/database | 7,194 | [
"no_license"
] | [
{
"path": "data_pipeline/roles/database/tasks/main.yml",
"content": "---\n- name: Install and Configure MariaDB on Amazon Linux 2\n hosts: all\n become: true\n vars:\n db_user: dgk\n db_pwd: <PASSWORD>\n db_name: data\n tasks:\n # Enable MariaDB 10.5 via Amazon Linux Extras\n - name: Enab... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2367,
"all_permissive": false
} |
ansible_role | ehdrn3020/logstash_pipeline | b32fd09ae1c63a6872ec37ef26193d7b61bf0dfc | 0 | data_pipeline/roles/generator | 7,194 | [
"no_license"
] | [
{
"path": "data_pipeline/roles/generator/package/data_creator.py",
"content": "import os\nimport random\nfrom datetime import datetime\nimport time\n\ndef generate_data(data_dir):\n while True:\n item_id = random.choice([\"A\", \"B\", \"C\"])\n created_at = datetime.now().isoformat()\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1560,
"all_permissive": false
} |
ansible_role | ehdrn3020/logstash_pipeline | b32fd09ae1c63a6872ec37ef26193d7b61bf0dfc | 0 | data_pipeline/roles/serving | 7,194 | [
"no_license"
] | [
{
"path": "data_pipeline/roles/serving/tasks/main.yml",
"content": "---\n- name: Deploy FastAPI Application\n hosts: all\n become: true\n\n tasks:\n # Install Python and pip\n - name: Install Python and pip\n yum:\n name:\n - python3-pip\n state: present\n\n # Install... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4595,
"all_permissive": false
} |
ansible_role | gkesavan/HDP-ansible | 3ab6ea20d8a49e58219244c762f3f8efa4c3bd3c | 0 | roles/ambari | 7,194 | [
"no_license"
] | [
{
"path": "roles/ambari/tasks/setup_java.yml",
"content": "---\n- block: \n - name: update oracle jdbc jar\n copy: src=ojdbc7.jar\n dest=/usr/share/java/ojdbc7.jar force=yes\n when: ORACLE_HOSTNAME is defined and upgrade_jdbc\n tags: upgrade_jdbc\n\n- block: \n - name: update mysql c... | {
"task_files": 23,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 38,
"total_bytes": 96069,
"all_permissive": false
} |
ansible_role | gkesavan/HDP-ansible | 3ab6ea20d8a49e58219244c762f3f8efa4c3bd3c | 0 | roles/kdc | 7,194 | [
"no_license"
] | [
{
"path": "roles/kdc/vars/main.yml",
"content": "---\n# vars file for kdc\nservices:\n - krb5kdc\n - kadmin\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 57
},
{
"path": "roles/kdc/defaults/main.yml",
"content": "---\n# defaults file for kdc\nKDC_SERVER: ... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 2147,
"all_permissive": false
} |
ansible_role | gkesavan/HDP-ansible | 3ab6ea20d8a49e58219244c762f3f8efa4c3bd3c | 0 | roles/mysql | 7,194 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yml",
"content": "#---\n## Variable configuration.\n\n- name: Include OS-specific variables.\n include_vars: \"{{ ansible_os_family }}.yml\"\n when: ansible_os_family != \"RedHat\"\n\n- name: Include OS-specific variables (RedHat).\n include_vars: \"{{ ansible_os_family ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1516,
"all_permissive": false
} |
ansible_role | gkesavan/HDP-ansible | 3ab6ea20d8a49e58219244c762f3f8efa4c3bd3c | 0 | roles/oozie | 7,194 | [
"no_license"
] | [
{
"path": "roles/oozie/tasks/main.yml",
"content": "---\n- name: set database server\n command: /var/lib/ambari-server/resources/scripts/configs.sh -u admin -p $AMBARI_PASS -port {{AMBARI_SERVER_SSL_PORT}} -s set $AMBARI_SERVER $CLUSTER_NAME oozie-site oozie.base.url https://${OOZIE_SERVER_ONE}:11443/oozie... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 268,
"all_permissive": false
} |
ansible_role | Tympan-site/tympan-site | d2b387852e41d6883d497214e69fbb2f135024c4 | 1 | ansible/roles/debian_default | 7,194 | [
"no_license"
] | [
{
"path": "ansible/roles/debian_default/tasks/main.yml",
"content": "---\n- name: Install etckeeper\n apt: name=etckeeper state=present\n\n- name: apt update\n apt: update_cache=true cache_valid_time=300\n\n- name: Install tmux\n apt: name=tmux state=present\n\n- name: Install git\n apt: name=git state=... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 352,
"all_permissive": false
} |
ansible_role | Tympan-site/tympan-site | d2b387852e41d6883d497214e69fbb2f135024c4 | 1 | ansible/roles/jaywink.letsencrypt | 7,194 | [
"no_license"
] | [
{
"path": "ansible/roles/jaywink.letsencrypt/tasks/cert.yaml",
"content": "---\n\n- set_fact: _letsencrypt_certbot_args=\"{{letsencrypt_certbot_args + ['--renew-by-default']}}\"\n when: letsencrypt_force_renew == true\n\n- set_fact: _letsencrypt_certbot_args=\"{{letsencrypt_certbot_args + ['--keep-until-ex... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2839,
"all_permissive": false
} |
ansible_role | Tympan-site/tympan-site | d2b387852e41d6883d497214e69fbb2f135024c4 | 1 | ansible/roles/jnv.debian-backports | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/jnv.debian-backports/vars/Debian.yml",
"content": "---\nbackports_uri: http://http.debian.net/debian\nbackports_components: \"{{backports_distribution}}-backports main contrib non-free\"\n",
"license_type": "permissive",
"detected_licenses": [
"Unlicense"
],
"s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 3403,
"all_permissive": true
} |
ansible_role | Tympan-site/tympan-site | d2b387852e41d6883d497214e69fbb2f135024c4 | 1 | ansible/roles/tympan_nginx | 7,194 | [
"no_license"
] | [
{
"path": "ansible/roles/tympan_nginx/tasks/main.yml",
"content": "---\n\n- name: Install nginx\n apt: name=nginx state=present\n\n- name: Create web root\n file: path=/var/www/tympan state=directory mode=0755\n\n- name: Copy nginx configuration for tympan\n template: src=default dest=/etc/nginx/sites-av... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 419,
"all_permissive": false
} |
ansible_role | huchka/Ansible-Init | 09b05627195b3c733e6c7c8cc772691e45aae875 | 0 | roles/init | 7,194 | [
"no_license"
] | [
{
"path": "roles/init/tasks/main.yml",
"content": "- name: install aptitude\n apt: pkg=aptitude update_cache=true\n- name: Update system\n apt: upgrade=yes update_cache=true cache_valid_time=3600\n- name: Install emacs editor\n apt: pkg=emacs state=present update_cache=true\n- name: Create ~/.ssh directo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 553,
"all_permissive": false
} |
ansible_role | Rueda2803/roleplaybooks | 2e4555d10a1024ded5a9f0b5e6352736320137b8 | 0 | roles/Add_user | 7,194 | [
"no_license"
] | [
{
"path": "roles/Add_user/tasks/main.yml",
"content": "---\n- name: Ensure user user is create\n microsoft.ad.user:\n name: Miguel\n identity: miguel\n firstname: Miguel\n surname: Smith\n password: <PASSWORD>\n domain_username: REDSOFT\\Administrator\n domain_password: <PASSWORD>\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 258,
"all_permissive": false
} |
ansible_role | Rueda2803/roleplaybooks | 2e4555d10a1024ded5a9f0b5e6352736320137b8 | 0 | roles/group_add | 7,194 | [
"no_license"
] | [
{
"path": "roles/group_add/tasks/main.yml",
"content": "---\n- name: Create a group\n microsoft.ad.group:\n name: Roles_pruebas\n scope: global\n state: present\n \n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 113
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 113,
"all_permissive": false
} |
ansible_role | nephio-project/test-infra | 258ca74f6ba126952a1577d3bca83416b31fca3b | 7 | e2e/provision/playbooks/roles/bootstrap | 7,194 | [
"permissive"
] | [
{
"path": "e2e/provision/playbooks/roles/bootstrap/tasks/load-sctp-module.yml",
"content": "---\n# SPDX-license-identifier: Apache-2.0\n##############################################################################\n# Copyright (c) 2023 The Nephio Authors.\n# All rights reserved. This program and the accomp... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 13,
"total_bytes": 41898,
"all_permissive": true
} |
ansible_role | nephio-project/test-infra | 258ca74f6ba126952a1577d3bca83416b31fca3b | 7 | e2e/provision/playbooks/roles/install | 7,194 | [
"permissive"
] | [
{
"path": "e2e/provision/playbooks/roles/install/molecule/default/molecule.yml",
"content": "---\n# SPDX-license-identifier: Apache-2.0\n##############################################################################\n# Copyright (c) 2023 The Nephio Authors.\n# All rights reserved. This program and the accom... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 18598,
"all_permissive": true
} |
ansible_role | nephio-project/test-infra | 258ca74f6ba126952a1577d3bca83416b31fca3b | 7 | e2e/provision/playbooks/roles/kpt | 7,194 | [
"permissive"
] | [
{
"path": "e2e/provision/playbooks/roles/kpt/molecule/default/molecule.yml",
"content": "---\n# SPDX-license-identifier: Apache-2.0\n##############################################################################\n# Copyright (c) 2023 The Nephio Authors.\n# All rights reserved. This program and the accompany... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 13247,
"all_permissive": true
} |
ansible_role | nephio-project/test-infra | 258ca74f6ba126952a1577d3bca83416b31fca3b | 7 | e2e/provision/playbooks/roles/kubeadm | 7,194 | [
"permissive"
] | [
{
"path": "e2e/provision/playbooks/roles/kubeadm/tasks/kubeadm-Debian.yml",
"content": "---\n- name: Install kubelet kubeadm kubectl on {{ ansible_os_family }}\n become: true\n block:\n - name: Install curl and apt-transport-https packages\n ansible.builtin.package:\n name:\n - apt... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 11898,
"all_permissive": true
} |
ansible_role | nephio-project/test-infra | 258ca74f6ba126952a1577d3bca83416b31fca3b | 7 | e2e/provision/playbooks/roles/upgrade | 7,194 | [
"permissive"
] | [
{
"path": "e2e/provision/playbooks/roles/upgrade/tasks/main.yml",
"content": "---\n# SPDX-license-identifier: Apache-2.0\n##############################################################################\n# Copyright (c) 2023 The Nephio Authors.\n# All rights reserved. This program and the accompanying materia... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 12878,
"all_permissive": true
} |
ansible_role | prox32/linux_ping | d5609b38ac649db13eb2c15de60c051af7ce9f8c | 0 | roles/linux_ping | 7,194 | [
"no_license"
] | [
{
"path": "roles/linux_ping/tasks/linux_ping.yml",
"content": "- name: ping test\n ping:",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 25
},
{
"path": "roles/linux_ping/tasks/main.yml",
"content": "- name: Ping linux servers\n import_tasks: linux_ping.yml",... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 82,
"all_permissive": false
} |
ansible_role | spider-123-eng/Ansible | 78019183707b849b9b46c4722ee1ee21d9eb0713 | 0 | roles/artifactory | 7,194 | [
"no_license"
] | [
{
"path": "roles/artifactory/templates/java.sh.j2",
"content": "export JAVA_HOME=/opt/jdk{{java_version}}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "roles/artifactory/defaults/main.yml",
"content": "java_version: \"1.8.0_131\"\njava_down... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 3944,
"all_permissive": false
} |
ansible_role | GabrielFOliveira/LabAnsible | be116596fb136238ad1dcb4f6797416a5676c243 | 1 | padrao/roles/common | 7,194 | [
"no_license"
] | [
{
"path": "padrao/roles/common/tasks/rpm.yml",
"content": "---\n\n- name: RPM | Update \n yum: \n name: '*' \n state: latest \n\n- name: RPM | Desabilitando SELinux no CentOS\n lineinfile:\n dest=/etc/selinux/config\n state=present\n regexp={{ item.regexp }}\n line={{ item.line }}\n ... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3901,
"all_permissive": false
} |
ansible_role | egormin/TC_agent_tools_sync | 850c01b411a772252e27ed641d40c9745d8bc92c | 0 | ansible/roles/get_sw | 7,194 | [
"no_license"
] | [
{
"path": "ansible/roles/get_sw/vars/main.yml",
"content": "ToolsList:\n\n - JDK :\n name: mc\n\n - JDK :\n name: vim\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 60
},
{
"path": "ansible/roles/get_sw/defaults/main.yml",
"content": "Tools_path: '/b... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 762,
"all_permissive": false
} |
ansible_role | egormin/TC_agent_tools_sync | 850c01b411a772252e27ed641d40c9745d8bc92c | 0 | ansible/roles/syncronize | 7,194 | [
"no_license"
] | [
{
"path": "ansible/roles/syncronize/tasks/main.yml",
"content": "- name: ===================== CHECK IF DIRECTORY '{{Tools_path}}' EXISTS =====================\n file:\n path: '{{Tools_path}}'\n state: directory\n mode: 0755\n become: yes\n\n- name: ===================== DOWNLOAD TOOLS TO /tmp ==... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1701,
"all_permissive": false
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/agnocast | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/agnocast/defaults/main.yaml",
"content": "agnocast_version: 2.1.0\nagnocast_heaphook_package: agnocast-heaphook-v{{ agnocast_version }}\nagnocast_kmod_package: agnocast-kmod-v{{ agnocast_version }}\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3204,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/build_tools | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/build_tools/README.md",
"content": "# Build Tools\n\nThis role installs build tools for building Autoware.\n\n## Tools\n\n- ccache\n\n## Inputs\n\n## Manual Installation\n\n```bash\n# Update package lists\nsudo apt-get update\n\n# Install ccache\nsudo apt-get install -y ccache\n```\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1334,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/cuda | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/cuda/defaults/main.yaml",
"content": "cuda_install_drivers: true\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 27
},
{
"path": "ansible/roles/cuda/README.md",
"content": "# cuda\n\nThis role installs [CUDA To... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 8096,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/dev_tools | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/dev_tools/README.md",
"content": "# devel\n\nThis role installs optional development tools for Autoware.\n\n## Tools\n\n- Git LFS\n- pre-commit\n- clang-format\n- Go\n- PlotJuggler\n\n## Inputs\n\n| Name | Required | Description ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2635,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/docker_engine | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/docker_engine/README.md",
"content": "# docker_engine\n\nThis role installs [Docker Engine](https://docs.docker.com/engine/) following the [installation guide](https://docs.docker.com/engine/install/ubuntu/) and sets up execution from non-root users following the [manual](https://do... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4520,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/gdown | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/gdown/README.md",
"content": "# Role: gdown\n\nThis role installs gdown to download files from CMakeLists.txt.\n\n## Inputs\n\nNone.\n\n## Manual Installation\n\n```bash\n# Install gdown to download files from CMakeLists.txt\npip3 install gdown\n```\n",
"license_type": "permissi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 353,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/geographiclib | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/geographiclib/tasks/main.yaml",
"content": "- name: Install geographiclib-tools\n become: true\n ansible.builtin.apt:\n name: geographiclib-tools\n state: latest\n update_cache: true\n\n- name: Install egm2008-1\n become: true\n ansible.builtin.command:\n cmd: geogra... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 508,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/kisak_mesa | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/kisak_mesa/README.md",
"content": "# Kisak Mesa Fix for Ubuntu 22.04 for Rviz2 (Not mandatory)\n\nIf you are using Ubuntu 22.04 and Rviz2 (especially inside a container), you may encounter black-screen error on Rviz2: <https://github.com/ros2/rviz/issues/948>\n\nThis role will insta... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1337,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/nvidia_container_toolkit | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/nvidia_container_toolkit/README.md",
"content": "# nvidia_container_toolkit\n\nThis role installs [NVIDIA Container Toolkit](https://github.com/NVIDIA/nvidia-container-toolkit) following the [installation guide](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/lates... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3904,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/pacmod | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/pacmod/README.md",
"content": "# pacmod\n\nThis role sets up the prerequisites to install pacmod3_msgs following [this page](https://github.com/astuff/pacmod3_msgs#installation) and [this page](https://github.com/astuff/docker-builds/blob/e9f563ef04b0578ba0b545711ea3e41b20a51d27/ros... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2250,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/qt5ct_setup | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/qt5ct_setup/tasks/main.yml",
"content": "- name: Install qt5ct\n ansible.builtin.apt:\n name: qt5ct\n state: present\n become: true\n\n- name: Install rsync\n ansible.builtin.package:\n name: rsync\n state: present\n become: true\n\n- name: Remove qt5ct from auto-sta... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 4318,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/rmw_implementation | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/rmw_implementation/README.md",
"content": "# rmw_implementation\n\nThis role sets up ROS 2 RMW implementation following [this page](https://docs.ros.org/en/humble/How-To-Guides/Working-with-multiple-RMW-implementations.html).\n\n## Inputs\n\n| Name | Required | Descrip... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2572,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/ros2 | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/ros2/defaults/main.yaml",
"content": "ros2_installation_type: desktop\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 32
},
{
"path": "ansible/roles/ros2/README.md",
"content": "# ros2\n\nThis role installs [RO... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 5323,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/ros2_dev_tools | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/ros2_dev_tools/README.md",
"content": "# ros2_dev_tools\n\nThis role installs ROS 2 development tools following [this page](https://docs.ros.org/en/humble/Installation/Ubuntu-Development-Setup.html).\n\n## Inputs\n\nNone.\n\n## Manual Installation\n\n```bash\n# Taken from https://do... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1493,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/spconv | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/spconv/README.md",
"content": "# spconv\n\nThis role install the `cumm` and `spconv` libraries needed to perform sparse convolutions.\nThe [original implementation](https://github.com/traveller59/spconv) did not provide a shared library, which is pre-generated c++ code and pre-compi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1828,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/telegraf | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/telegraf/README.md",
"content": "# telegraf\n\nThis role install [InfluxDB v2](https://docs.influxdata.com/influxdb/v2/get-started/) and [Telegraf](https://docs.influxdata.com/telegraf/v1/) to collect system metrics.\n\nAfter installing telegraf and influxdb2, we need to manually ma... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 5589,
"all_permissive": true
} |
ansible_role | autowarefoundation/autoware | 4eb4a6f51a1e318d0b1434c528f5eec212b9463b | 10,189 | ansible/roles/tensorrt | 7,194 | [
"permissive"
] | [
{
"path": "ansible/roles/tensorrt/tasks/main.yaml",
"content": "- name: Install cuDNN and TensorRT\n become: true\n ansible.builtin.apt:\n name:\n - libcudnn8={{ cudnn_version }}\n - libnvinfer10={{ tensorrt_version }}\n - libnvinfer-plugin10={{ tensorrt_version }}\n - libnvonnxpars... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2816,
"all_permissive": true
} |
ansible_role | nvtkaszpir/workstation | 46f170a7c54c05a39435dbe6c98327ad9c930ee1 | 5 | roles/nvtk_desktop | 7,194 | [
"no_license"
] | [
{
"path": "roles/nvtk_desktop/tasks/main.yml",
"content": "---\n- name: 'Install core packages'\n package:\n name: '{{ packages_desktop }}'\n state: 'latest'\n\n- name: 'Disable gdm'\n service:\n name: 'gdm'\n enabled: false\n state: 'stopped'\n\n- name: 'Set default display manager to Ligh... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 5417,
"all_permissive": false
} |
ansible_role | nvtkaszpir/workstation | 46f170a7c54c05a39435dbe6c98327ad9c930ee1 | 5 | roles/nvtk_doublecmd | 7,194 | [
"no_license"
] | [
{
"path": "roles/nvtk_doublecmd/tasks/main.yml",
"content": "---\n- name: 'doublecmd - add PPA repo'\n apt_repository:\n repo: 'ppa:alexx2000/doublecmd'\n state: 'present'\n update_cache: true\n when:\n - ansible_os_family == 'Debian'\n - (ansible_distribution_major_version| int) < 20\n\n# ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 459,
"all_permissive": false
} |
ansible_role | nvtkaszpir/workstation | 46f170a7c54c05a39435dbe6c98327ad9c930ee1 | 5 | roles/nvtk_git | 7,194 | [
"no_license"
] | [
{
"path": "roles/nvtk_git/tasks/main.yml",
"content": "---\n- name: 'git - add PPA repo'\n apt_repository:\n repo: 'ppa:git-core/ppa'\n state: 'present'\n update_cache: true\n when: ansible_os_family == 'Debian'\n\n- name: 'git - install'\n package:\n name:\n - git\n - git-lfs\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 256,
"all_permissive": false
} |
ansible_role | nvtkaszpir/workstation | 46f170a7c54c05a39435dbe6c98327ad9c930ee1 | 5 | roles/nvtk_hugin | 7,194 | [
"no_license"
] | [
{
"path": "roles/nvtk_hugin/vars/Ubuntu.yml",
"content": "---\nhugin_ppa_repo: 'ppa:hugin/hugin-builds'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 45
},
{
"path": "roles/nvtk_hugin/tasks/main.yml",
"content": "# install hugin panorama stitcher tool\n# ht... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 837,
"all_permissive": false
} |
ansible_role | nvtkaszpir/workstation | 46f170a7c54c05a39435dbe6c98327ad9c930ee1 | 5 | roles/nvtk_qbittorrent | 7,194 | [
"no_license"
] | [
{
"path": "roles/nvtk_qbittorrent/tasks/main.yml",
"content": "---\n- name: 'qbittorrent - add PPA repo'\n apt_repository:\n repo: 'ppa:qbittorrent-team/qbittorrent-unstable'\n state: 'present'\n update_cache: true\n when:\n - ansible_os_family == 'Debian'\n\n- name: 'qbittorrent - manage pack... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 340,
"all_permissive": false
} |
ansible_role | nvtkaszpir/workstation | 46f170a7c54c05a39435dbe6c98327ad9c930ee1 | 5 | roles/nvtk_rsyslog | 7,194 | [
"no_license"
] | [
{
"path": "roles/nvtk_rsyslog/tasks/main.yml",
"content": "# TODO: fix that retarded confg, switch to Rainer Script.\n---\n- name: 'rsyslog - add PPA repo'\n apt_repository:\n repo: 'ppa:adiscon/v8-stable'\n state: 'present'\n update_cache: true\n when: ansible_os_family == 'Debian'\n\n- name: 'r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 415,
"all_permissive": false
} |
ansible_role | nvtkaszpir/workstation | 46f170a7c54c05a39435dbe6c98327ad9c930ee1 | 5 | roles/nvtk_syncthing | 7,194 | [
"no_license"
] | [
{
"path": "roles/nvtk_syncthing/tasks/main.yml",
"content": "---\n- include_tasks: 'client.yml'\n when: ansible_os_family == 'Debian'\n\n- include_tasks: 'gui.yml'\n when: ansible_os_family == 'Debian'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 138
},
{
"p... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1046,
"all_permissive": false
} |
ansible_role | nvtkaszpir/workstation | 46f170a7c54c05a39435dbe6c98327ad9c930ee1 | 5 | roles/nvtk_sys_core | 7,194 | [
"no_license"
] | [
{
"path": "roles/nvtk_sys_core/vars/main.yml",
"content": "---\nnvtk_sys_packages_common:\n - acpid\n - apt-rdepends\n - chrony\n - curl\n - dos2unix\n - dstat\n - ethtool\n - fio\n - fping\n - htop\n - inxi\n - iotop\n - iperf\n - iptraf\n - jq\n - libcurl4\n - links\n - lnav\n - lvm2\n ... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 3804,
"all_permissive": false
} |
ansible_role | nvtkaszpir/workstation | 46f170a7c54c05a39435dbe6c98327ad9c930ee1 | 5 | roles/nvtk_users | 7,194 | [
"no_license"
] | [
{
"path": "roles/nvtk_users/tasks/main.yml",
"content": "---\n- name: 'Load a variable file based on the OS type'\n include_vars: \"{{ item }}\"\n with_first_found:\n - \"{{ ansible_distribution }}.yml\"\n - \"{{ ansible_os_family }}.yml\"\n - \"main.yml\"\n\n- name: 'Add user kaszpir'\n user:\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 869,
"all_permissive": false
} |
ansible_role | unix2dos/ansible-project | fc46d126f8ba91ca1b4e144c9366c4715dc6981c | 0 | roles/shadowsocks | 7,197 | [
"no_license"
] | [
{
"path": "roles/shadowsocks/vars/main.yml",
"content": "---\n# vars file for shadowsocks\n\nSHADOWSOCKS_PASSWORD: '<PASSWORD>'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 68
},
{
"path": "roles/shadowsocks/tasks/main.yml",
"content": "---\n# tasks file f... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1252,
"all_permissive": false
} |
ansible_role | jguillemat/agnosticd | 6ec50366a04cf06416fb16aa4ea1f6772cd25ab8 | 0 | roles/agnosticd_callback | 7,197 | [
"no_license"
] | [
{
"path": "roles/agnosticd_callback/defaults/main.yml",
"content": "---\n#agnosticd_callback_event:\nagnosticd_callback_token: ''\nagnosticd_callback_url: ''\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 87
},
{
"path": "roles/agnosticd_callback/tasks/main.yml"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1248,
"all_permissive": false
} |
ansible_role | jguillemat/agnosticd | 6ec50366a04cf06416fb16aa4ea1f6772cd25ab8 | 0 | roles/agnosticd_init | 7,197 | [
"no_license"
] | [
{
"path": "roles/agnosticd_init/tasks/ansible_galaxy_install_requirements.yml",
"content": "---\n- name: Install roles from {{ __ansible_galaxy_requirements_path }}\n ansible.builtin.command: >-\n ansible-galaxy install\n -r \"{{ __ansible_galaxy_requirements_path }}\"\n -p \"{{ role_path }}/../..... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 4019,
"all_permissive": false
} |
ansible_role | jguillemat/agnosticd | 6ec50366a04cf06416fb16aa4ea1f6772cd25ab8 | 0 | roles/agnosticd_post | 7,197 | [
"no_license"
] | [
{
"path": "roles/agnosticd_post/tasks/main.yml",
"content": "---\n- name: Save output dir archive\n when: agnosticd_save_output_dir_archive is defined\n include_role:\n name: agnosticd_save_output_dir\n\n- name: Completion callback\n include_role:\n name: agnosticd_callback\n vars:\n agnosticd_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 262,
"all_permissive": false
} |
ansible_role | jguillemat/agnosticd | 6ec50366a04cf06416fb16aa4ea1f6772cd25ab8 | 0 | roles/agnosticd_restore_output_dir | 7,197 | [
"no_license"
] | [
{
"path": "roles/agnosticd_restore_output_dir/tasks/restore-from-s3.yml",
"content": "---\n- name: Get output dir archive from s3\n amazon.aws.aws_s3:\n aws_access_key: \"{{ agnosticd_save_output_dir_s3_access_key_id }}\"\n aws_secret_key: \"{{ agnosticd_save_output_dir_s3_secret_access_key }}\"\n ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2285,
"all_permissive": false
} |
ansible_role | jguillemat/agnosticd | 6ec50366a04cf06416fb16aa4ea1f6772cd25ab8 | 0 | roles/agnosticd_save_output_dir | 7,197 | [
"no_license"
] | [
{
"path": "roles/agnosticd_save_output_dir/defaults/main.yml",
"content": "---\n# Archive object to create in S3 storage.\n#agnosticd_save_output_dir_archive: \"{{ guid }}_{{ uuid }}.tar.gz\"\n# Protect archive with password, it can be useful if the S3 bucket is shared between multiple users.\n# agnosticd_s... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 5353,
"all_permissive": false
} |
ansible_role | jguillemat/agnosticd | 6ec50366a04cf06416fb16aa4ea1f6772cd25ab8 | 0 | roles/agnosticd_ssh_key | 7,197 | [
"no_license"
] | [
{
"path": "roles/agnosticd_ssh_key/tasks/create.yml",
"content": "---\n- name: Generate SSH keys\n command: >-\n ssh-keygen\n -t {{ agnosticd_ssh_key_type | quote }}\n -f {{ agnosticd_ssh_key_path | quote }}\n -q -N \"\"\n args:\n creates: \"{{ agnosticd_ssh_key_path }}\"\n register: r_ssh... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1208,
"all_permissive": false
} |
ansible_role | jguillemat/agnosticd | 6ec50366a04cf06416fb16aa4ea1f6772cd25ab8 | 0 | roles/agnosticd_vars | 7,197 | [
"no_license"
] | [
{
"path": "roles/agnosticd_vars/tasks/validate_vars.yml",
"content": "---\n- name: Validate foundation vars\n ansible.builtin.include_role:\n name: \"foundations/{{ agnosticd_foundation }}\"\n public: true\n tasks_from: validate_vars.yml\n when:\n - query('first_found', ['roles/foundations/' ~ a... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3371,
"all_permissive": false
} |
ansible_role | vsnkrv/devops-netology | 454bf95be995df08e5e86bdc6f7eb6ac2eecea38 | 0 | diplom/ansible/roles/copy_ssh_key | 7,197 | [
"no_license"
] | [
{
"path": "diplom/ansible/roles/copy_ssh_key/tasks/main.yml",
"content": "- name: Copy id_rsa.pub from runner\n fetch:\n src: /home/gitlab-runner/.ssh/id_rsa.pub\n dest: ./vars/runner_id_rsa.pub\n flat: yes\n when:\n - copy_id_rsa_pub == 'src'\n\n- name: Copy id_rsa.pub to app\n authorized_key:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 357,
"all_permissive": false
} |
ansible_role | vsnkrv/devops-netology | 454bf95be995df08e5e86bdc6f7eb6ac2eecea38 | 0 | diplom/ansible/roles/gitlab | 7,197 | [
"no_license"
] | [
{
"path": "diplom/ansible/roles/gitlab/defaults/main.yml",
"content": "---\nmy_domain: vsnk.shop\ngitlab_edition: \"gitlab-ce\"\ngitlab_repository_installation_script_url: \"https://packages.gitlab.com/install/repositories/gitlab/{{ gitlab_edition }}/script.deb.sh\"\ngitlab_modules: [ 'curl', 'tzdata', 'per... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 968,
"all_permissive": false
} |
ansible_role | vsnkrv/devops-netology | 454bf95be995df08e5e86bdc6f7eb6ac2eecea38 | 0 | diplom/ansible/roles/monitoring | 7,197 | [
"no_license"
] | [
{
"path": "diplom/ansible/roles/monitoring/tasks/main.yml",
"content": "---\n- import_tasks: prometheus.yml\n- import_tasks: grafana.yml\n- import_tasks: alertmanager.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 96
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 96,
"all_permissive": false
} |
ansible_role | vsnkrv/devops-netology | 454bf95be995df08e5e86bdc6f7eb6ac2eecea38 | 0 | diplom/ansible/roles/mysql | 7,197 | [
"no_license"
] | [
{
"path": "diplom/ansible/roles/mysql/defaults/main.yml",
"content": "---\n# defaults file for mysql\n\ndb_user: wordpress\ndb_password: <PASSWORD>\ndb_name: wordpress\nmysql_replication_master: db01\nmysql_replication_user: rep_user\nmysql_replication_password: \"<PASSWORD>\"\nmysql_packages:\n - ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2633,
"all_permissive": false
} |
ansible_role | vsnkrv/devops-netology | 454bf95be995df08e5e86bdc6f7eb6ac2eecea38 | 0 | diplom/ansible/roles/mysql.old | 7,197 | [
"no_license"
] | [
{
"path": "diplom/ansible/roles/mysql.old/tasks/main.yml",
"content": "---\n- name: Installing Mysql and dependencies\n package:\n name: \"{{ item }}\"\n state: present\n update_cache: yes\n loop:\n - mysql-server\n - python3-mysqldb\n\n- name: start and enable mysql service\n service:... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3185,
"all_permissive": false
} |
ansible_role | vsnkrv/devops-netology | 454bf95be995df08e5e86bdc6f7eb6ac2eecea38 | 0 | diplom/ansible/roles/nginx | 7,197 | [
"no_license"
] | [
{
"path": "diplom/ansible/roles/nginx/vars/main.yml",
"content": "---\nmy_domain: \"vsnk.shop\"\nletsencrypt_email: \"<EMAIL>\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 56
},
{
"path": "diplom/ansible/roles/nginx/tasks/main.yml",
"content": "---\n- nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1450,
"all_permissive": false
} |
ansible_role | vsnkrv/devops-netology | 454bf95be995df08e5e86bdc6f7eb6ac2eecea38 | 0 | diplom/ansible/roles/runner | 7,197 | [
"no_license"
] | [
{
"path": "diplom/ansible/roles/runner/defaults/main.yml",
"content": "gitlab_runner_token: \"<PASSWORD>\"\nmy_domain: \"vsnk.shop\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 57
},
{
"path": "diplom/ansible/roles/runner/tasks/main.yml",
"content": "---\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1344,
"all_permissive": false
} |
ansible_role | vsnkrv/devops-netology | 454bf95be995df08e5e86bdc6f7eb6ac2eecea38 | 0 | diplom/ansible/roles/wordpress | 7,197 | [
"no_license"
] | [
{
"path": "diplom/ansible/roles/wordpress/defaults/main.yml",
"content": "my_domain: vsnk.shop\ndb_user: wordpress\ndb_pass: <PASSWORD>\ndb_name: wordpress\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 79
},
{
"path": "diplom/ansible/roles/wordpress/tasks/main.... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2442,
"all_permissive": false
} |
ansible_role | kgrvamsi/ansible-kubernetes | 5cdf83416a134e177d29cf872948edbfff5a535a | 0 | roles/binary | 7,197 | [
"no_license"
] | [
{
"path": "roles/binary/tasks/main.yml",
"content": "- name: Getting the Stable Version of Kubernetes\r\n get_url: url=https://github.com/GoogleCloudPlatform/kubernetes/releases/download/{{kube_version}}/kubernetes.tar.gz dest=~/ mode=0777\r\n\r\n- name: Extract the Tar file\r\n unarchive: src=~/kubernete... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1375,
"all_permissive": false
} |
ansible_role | sdil/distributed-system-labs | 4c2477af8cea75059cf05cab5a697c7890b171e7 | 1 | ansible/roles/apache | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/apache/tasks/main.yml",
"content": "- name: Install packages\n apt:\n pkg: ['apache2', 'libapache2-mod-php', 'git']\n state: present\n update_cache: true\n tags:\n - apache\n\n- name: Push virtual host conf\n copy:\n src: files/awesome-app\n dest: /etc/apache2/s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1180,
"all_permissive": false
} |
ansible_role | sdil/distributed-system-labs | 4c2477af8cea75059cf05cab5a697c7890b171e7 | 1 | ansible/roles/haproxy | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/haproxy/tasks/main.yml",
"content": "- name: Install haproxy load balancer\n apt:\n pkg: haproxy\n state: present\n update_cache: true\n\n- name: Push config\n template:\n src: templates/haproxy.cfg.j2\n dest: /etc/haproxy/haproxy.cfg\n mode: 0640\n owner: roo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1006,
"all_permissive": false
} |
ansible_role | yuta-ushijima/ansible_playground_20240427 | 624ee38b8baa56681d541cfde6a5df3a56c646f9 | 0 | roles/ruby | 7,197 | [
"no_license"
] | [
{
"path": "roles/ruby/tasks/main.yml",
"content": "---\n# tasks file for ruby\n- name: Install dependencies packages for ruby\n become: yes\n ansible.builtin.yum:\n name: \"{{ ruby_dependencies_pkg }}\"\n state: present\n\n- name: SetUp rbenv\n ansible.builtin.git:\n repo: https://github.com/sst... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1242,
"all_permissive": false
} |
ansible_role | EvgeniyDobro/ansible-playbook-copy | fc31bfe817c4c05bd5937aa5fd54247e60830700 | 0 | roles/copy | 7,197 | [
"no_license"
] | [
{
"path": "roles/copy/tasks/main.yml",
"content": "- name: copy files on servers\r\n ansible.builtin.copy:\r\n src: \"{{source_folder}}/{{item}}\"\r\n dest: \"{{destin_file}}\"\r\n loop:\r\n - server-test.conf\r\n - server-test2.conf\r\n - server-test3.conf\r\n become: yes",
"license_t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 220,
"all_permissive": false
} |
ansible_role | devopstrainers1/ansible_deployment | ee9e0bb5afb97f9001c252501ba4b0b24937f2bf | 1 | roles/webserver | 7,197 | [
"no_license"
] | [
{
"path": "roles/webserver/vars/main.yml",
"content": "---\n# vars file for webserver\npackage_name: \"httpd\"\nservice_port: \"80/tcp\"\nsrc_dir: \"index.html\"\ndest_dir: \"/usr/share/nginx/html/index.html\"\nsrc_config: \"nginx.conf.j2\"\ndest_config: \"/etc/nginx/nginx.conf\"\nworker_con: \"1025\"\nserv... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 814,
"all_permissive": false
} |
ansible_role | yamadatt/gitlabtad55 | 8f4209e50884b0b837142ad9888d48d3820f0c82 | 0 | ansible/roles/get_info | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/get_info/tasks/main.yml",
"content": "# 各種情報の出力\n- name: information\n shell: \"{{ item }}\"\n with_items:\n - 'hostname'\n - 'uname -a'\n - \"docker --version\"\n - \"docker-compose --version\"\n register: result\n\n- debug: var=\"result.results.{{ item }}.stdout_lin... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 262,
"all_permissive": false
} |
ansible_role | yamadatt/gitlabtad55 | 8f4209e50884b0b837142ad9888d48d3820f0c82 | 0 | ansible/roles/system | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/system/tasks/main.yml",
"content": "# ロケール事前確認\n- name: check locale\n shell: localectl status\n register: check_localectl_result\n check_mode: no\n changed_when: false\n\n# ロケール設定\n- name: set locale\n shell: localectl set-locale LANG=ja_JP.utf8\n when: \"'LANG=ja_JP.utf8' no... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2320,
"all_permissive": false
} |
ansible_role | izacarias/linux-post-install | 80a6ac8ec4a307792656369455025fa624768043 | 0 | ansible/roles/appimaged | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/appimaged/tasks/main.yml",
"content": "---\n\n- name: Create directory for AppImages (if it not exists)\n become: false\n ansible.builtin.file:\n path: \"{{appimage_dir}}\"\n state: directory\n mode: '0755'\n\n\n- name: Install AppImageD executable\n get_url:\n url: \... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 409,
"all_permissive": false
} |
ansible_role | izacarias/linux-post-install | 80a6ac8ec4a307792656369455025fa624768043 | 0 | ansible/roles/common | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/main.yml",
"content": "---\n\n- name: Upgrade all packages\n ansible.builtin.dnf:\n name: \"*\"\n state: latest\n\n- name: Install common packages for Linux (utilities...)\n become: true\n ansible.builtin.dnf:\n name: \"{{ common.packages }}\"\n state: la... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1625,
"all_permissive": false
} |
ansible_role | izacarias/linux-post-install | 80a6ac8ec4a307792656369455025fa624768043 | 0 | ansible/roles/element | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/element/tasks/main.yml",
"content": "---\n\n- name: Add the flathub flatpak repository (Element)\n community.general.flatpak_remote:\n name: flathub\n flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo\n state: present\n\n\n- name: Install the Element Desktop... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 331,
"all_permissive": false
} |
ansible_role | izacarias/linux-post-install | 80a6ac8ec4a307792656369455025fa624768043 | 0 | ansible/roles/fedy | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/fedy/tasks/main.yml",
"content": "---\n\n\n- name: Enable COPR for Fedy\n community.general.copr:\n host: copr.fedorainfracloud.org\n name: kwizart/fedy\n state: enabled\n\n- name: Install Fedy\n ansible.builtin.dnf:\n name: fedy\n state: present",
"license_type... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 217,
"all_permissive": false
} |
ansible_role | izacarias/linux-post-install | 80a6ac8ec4a307792656369455025fa624768043 | 0 | ansible/roles/flameshot | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/flameshot/tasks/main.yml",
"content": "---\n\n- name: Install Flameshot\n ansible.builtin.dnf:\n name: flameshot\n state: present",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 92
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 92,
"all_permissive": false
} |
ansible_role | izacarias/linux-post-install | 80a6ac8ec4a307792656369455025fa624768043 | 0 | ansible/roles/fonts | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/fonts/tasks/main.yml",
"content": "---\n\n- name: Install Microsoft Core Fonts (1/2)\n become: true\n ansible.builtin.dnf:\n name: 'https://netcologne.dl.sourceforge.net/project/mscorefonts2/rpms/msttcore-fonts-installer-2.6-1.noarch.rpm'\n disable_gpg_check: true\n state... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3658,
"all_permissive": false
} |
ansible_role | izacarias/linux-post-install | 80a6ac8ec4a307792656369455025fa624768043 | 0 | ansible/roles/gimp | 7,197 | [
"no_license"
] | [
{
"path": "ansible/roles/gimp/tasks/main.yml",
"content": "---\n\n- name: Install Gimp\n ansible.builtin.dnf:\n name: gimp\n state: present",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 82
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 82,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.