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 | l-wegner/ansible-boot | d5ed22a0104f80c0624b37a017a3ad79f92b2553 | 0 | roles/vhorst | 3,558 | [
"no_license"
] | [
{
"path": "roles/vhorst/tasks/install-docker.yml",
"content": "- name: install docker\n when: ansible_distribution in [ 'Ubuntu' ]\n become: true\n block:\n - name: install docker requirements\n package:\n update_cache: true\n name:\n - curl\n - gnupg\n - ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 911,
"all_permissive": false
} |
ansible_role | l-wegner/ansible-boot | d5ed22a0104f80c0624b37a017a3ad79f92b2553 | 0 | roles/workstation | 3,558 | [
"no_license"
] | [
{
"path": "roles/workstation/tasks/install-docker.yml",
"content": "- name: Add docker repo (Ubuntu)\n when: ansible_distribution in [ 'Ubuntu' ]\n become: yes\n vars:\n docker_repo_key: /etc/apt/keyrings/docker.asc\n block:\n - name: Download docker gpg key\n get_url:\n url: \"https:/... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1790,
"all_permissive": false
} |
ansible_role | l-wegner/ansible-boot | d5ed22a0104f80c0624b37a017a3ad79f92b2553 | 0 | roles/xorg | 3,558 | [
"no_license"
] | [
{
"path": "roles/xorg/tasks/install-bluetooth.yml",
"content": "- name: install bluetooth (arch)\n when: ansible_distribution in ['Arch','Archlinux']\n become: true\n package:\n name:\n - bluez-utils\n - bluez\n\n\n- name: enable bluetooth.service\n become: true\n systemd:\n name: bluet... | {
"task_files": 55,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 56,
"total_bytes": 47172,
"all_permissive": false
} |
ansible_role | manuphatak/ansible-up-and-running | 11e7a3f76d6c2ae9ad379be72931af6db4fd4391 | 0 | roles/database | 3,558 | [
"no_license"
] | [
{
"path": "roles/database/tasks/main.yml",
"content": "---\n- name: install apt packages\n apt: pkg={{ item }} update_cache=yes cache_valid_time=3600\n become: True\n with_items:\n - postgresql\n - libpq-dev\n - python-psycopg2\n\n- name: create a user\n postgresql_user:\n name: \"{{ databas... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 578,
"all_permissive": false
} |
ansible_role | manuphatak/ansible-up-and-running | 11e7a3f76d6c2ae9ad379be72931af6db4fd4391 | 0 | roles/mezzanine | 3,558 | [
"no_license"
] | [
{
"path": "roles/mezzanine/vars/main.yml",
"content": "---\nmezzanine_user: \"{{ ansible_ssh_user }}\"\nmezzanine_venv_home: \"{{ ansible_env.HOME }}\"\nmezzanine_venv_path: \"{{ mezzanine_venv_home }}/{{ mezzanine_proj_name }}\"\nmezzanine_repo_url: <EMAIL>:bionikspoon/mezzanine_example.git\nmezzanine_proj... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 7378,
"all_permissive": false
} |
ansible_role | hyunchan-jung/Study_Architecture | 16783286696d274d66e3fd5eb8ece952d7e573fc | 1 | Ansible/roles/docker | 3,558 | [
"no_license"
] | [
{
"path": "Ansible/roles/docker/tasks/main.yml",
"content": "---\n- name: Install APT packages\n apt:\n name: ['curl', 'ca-certificates', 'gnupg', 'lsb-release']\n state: present\n\n- name: Add docker apt-key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n- ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 917,
"all_permissive": false
} |
ansible_role | hyunchan-jung/Study_Architecture | 16783286696d274d66e3fd5eb8ece952d7e573fc | 1 | Ansible/roles/docker-registry | 3,558 | [
"no_license"
] | [
{
"path": "Ansible/roles/docker-registry/tasks/main.yml",
"content": "---\n- name: Create daemon.json\n copy:\n content: |\n {\n \"insecure-registries\": [\"192.168.0.12:5000\"]\n }\n dest: /etc/docker/daemon.json\n mode: '0644'\n notify:\n - restart docker\n",
"license_ty... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 205,
"all_permissive": false
} |
ansible_role | chornsby/multiplayer-server | 94ee82ae4fff66451e3cc5b62f7f1a5a38c2cce2 | 3 | roles/emulator | 3,438 | [
"no_license"
] | [
{
"path": "roles/emulator/tasks/main.yml",
"content": "- name: Add armhf architecture\n become: yes\n ansible.builtin.command:\n cmd: dpkg --add-architecture armhf\n changed_when: false\n\n- name: Install system libraries\n become: yes\n ansible.builtin.apt:\n update_cache: true\n pkg:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 962,
"all_permissive": false
} |
ansible_role | chornsby/multiplayer-server | 94ee82ae4fff66451e3cc5b62f7f1a5a38c2cce2 | 3 | roles/open-ports | 3,438 | [
"no_license"
] | [
{
"path": "roles/open-ports/vars/main.yml",
"content": "protocols:\n - tcp\n - udp\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 27
},
{
"path": "roles/open-ports/tasks/main.yml",
"content": "- name: Open firewall\n become: yes\n ansible.builtin.iptable... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 397,
"all_permissive": false
} |
ansible_role | chornsby/multiplayer-server | 94ee82ae4fff66451e3cc5b62f7f1a5a38c2cce2 | 3 | roles/steamcmd | 3,438 | [
"no_license"
] | [
{
"path": "roles/steamcmd/meta/main.yml",
"content": "dependencies:\n - role: emulator-box86\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 39
},
{
"path": "roles/steamcmd/tasks/main.yml",
"content": "- name: Download steamcmd\n ansible.builtin.get_url:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 463,
"all_permissive": false
} |
ansible_role | chornsby/multiplayer-server | 94ee82ae4fff66451e3cc5b62f7f1a5a38c2cce2 | 3 | roles/valheim | 3,438 | [
"no_license"
] | [
{
"path": "roles/valheim/meta/main.yml",
"content": "dependencies:\n - role: emulator-box64\n - role: open-ports\n vars:\n ports:\n - \"{{ valheim_port.min }}:{{ valheim_port.max }}\"\n - role: steamcmd\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 16... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1291,
"all_permissive": false
} |
ansible_role | chornsby/multiplayer-server | 94ee82ae4fff66451e3cc5b62f7f1a5a38c2cce2 | 3 | roles/valheim-backup | 3,438 | [
"no_license"
] | [
{
"path": "roles/valheim-backup/tasks/main.yml",
"content": "- name: Install system libraries\n become: yes\n ansible.builtin.apt:\n pkg:\n - rsync\n - zip\n state: present\n\n- name: Create backup script\n ansible.builtin.copy:\n src: make-backup.sh\n dest: make-backup.sh\n mode... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1059,
"all_permissive": false
} |
ansible_role | seansackowitz/ansible-automation_platform_iac | ebaefa242111675cc085603a66491d1db4691206 | 0 | roles/create_team | 3,438 | [
"no_license"
] | [
{
"path": "roles/create_team/tasks/main.yml",
"content": "---\n- name: Ensure Organization exists\n ansible.controller.organization:\n controller_host: \"{{ controller_url }}\"\n validate_certs: no\n controller_oauthtoken: \"{{ token }}\"\n name: \"{{ team.organization }}\"\n state: present\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 794,
"all_permissive": false
} |
ansible_role | seansackowitz/ansible-automation_platform_iac | ebaefa242111675cc085603a66491d1db4691206 | 0 | roles/ldap_configuration | 3,438 | [
"no_license"
] | [
{
"path": "roles/ldap_configuration/templates/ldap.json.j2",
"content": "{\n \"settings\": {\n \"AUTH_LDAP_SERVER_URI\": \"{{ ldap_uri }}\",\n \"AUTH_LDAP_BIND_DN\": \"{{ ldap_bind_dn }}\",\n \"AUTH_LDAP_BIND_PASSWORD\": \"{{ ldap_bind_password }}\",\n \"AUTH_LDAP_START_TLS\":... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 5922,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/always | 3,438 | [
"no_license"
] | [
{
"path": "roles/always/tasks/main.yml",
"content": "- name: Apt Update\n apt:\n update_cache: yes\n cache_valid_time: 3600\n when: ansible_facts['os_family'] == 'Debian'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 122
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 122,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/art | 3,438 | [
"no_license"
] | [
{
"path": "roles/art/tasks/blender.yml",
"content": "- name: Install Blender\n snap:\n name: blender\n classic: yes\n state: present\n when: ansible_facts['os_family'] == 'Debian'\n\n- name: Install Blender\n package:\n name: blender\n state: present\n when: ansible_facts['os_family'] == ... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 2629,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/basics | 3,438 | [
"no_license"
] | [
{
"path": "roles/basics/tasks/transmission.yml",
"content": "- apt_repository:\n repo: ppa:transmissionbt/ppa\n when: ansible_facts['os_family'] == 'Debian'\n\n- name: Install Transmission\n package:\n name: transmission\n state: present\n when: ansible_facts['os_family'] == 'Debian'\n\n- name: ... | {
"task_files": 29,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 29,
"total_bytes": 12387,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/communication | 3,438 | [
"no_license"
] | [
{
"path": "roles/communication/tasks/main.yml",
"content": "- import_tasks: skype.yml\n- import_tasks: slack.yml\n- import_tasks: zoom.yml\n- import_tasks: discord.yml",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 104
},
{
"path": "roles/communication/tasks/skype... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1729,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/configuration | 3,438 | [
"no_license"
] | [
{
"path": "roles/configuration/tasks/zellij.yml",
"content": "- name: Create Zellij Directory\n become: no\n ansible.builtin.file:\n path: \"{{ lookup('env', 'HOME') }}/.config/zellij/\"\n state: directory\n\n- name: Set Zellij configuration file\n become: no\n file:\n src: \"{{ playbook_dir }}... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1609,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/cron | 3,438 | [
"no_license"
] | [
{
"path": "roles/cron/tasks/main.yml",
"content": "- name: Create Virtual Instrument Rsync Cron Job\n ansible.builtin.cron:\n name: \"Virtual Instrument Rsync job\"\n special_time: hourly\n job: \"{{ playbook_dir }}/../scripts/sync_virtual_instruments.sh\"\n become: no",
"license_type": "no_l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 220,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/developer | 3,438 | [
"no_license"
] | [
{
"path": "roles/developer/tasks/aws.yml",
"content": "- name: Install AWS CLI\n become: no\n shell: |\n curl \"https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip\" -o \"awscliv2.zip\"\n unzip awscliv2.zip\n sudo ./aws/install\n rm -rf aws awscliv2.zip\n args:\n creates: /usr/local/b... | {
"task_files": 20,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 20,
"total_bytes": 7922,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/fonts | 3,438 | [
"no_license"
] | [
{
"path": "roles/fonts/tasks/main.yml",
"content": "- name: Install Powerline Fonts\n package:\n name: \"fonts-powerline\"\n state: \"present\"\n when: ansible_facts['os_family'] == 'Debian'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 139
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 139,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/games | 3,438 | [
"no_license"
] | [
{
"path": "roles/games/tasks/steam.yml",
"content": "- name: Install Steam YUM Repo\n dnf:\n name: https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ fedora_version }}.noarch.rpm\n state: present\n disable_gpg_check: yes\n when: ansible_distribution == 'Fedora'\n\n- name: I... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 495,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/languages | 3,438 | [
"no_license"
] | [
{
"path": "roles/languages/tasks/python.yml",
"content": "- name: Install PyEnv\n become: no\n git:\n repo: https://github.com/pyenv/pyenv.git\n dest: \"{{ lookup('env', 'HOME') }}/.pyenv\"\n version: master\n register: git_result\n changed_when: \"git_result.after|default('after') != git_resul... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 2677,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/movies | 3,438 | [
"no_license"
] | [
{
"path": "roles/movies/tasks/main.yml",
"content": "# TODO Must run:\n# sudo dpkg-reconfigure libdvd-pkg\n# After installation of libdvdcss2\n- name: \"Install Libdvdcss\"\n package:\n name: \"libdvdcss2\"\n state: \"present\"\n\n- name: \"Install Handbrake\"\n package:\n name: \"handbrake\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 917,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/nfs | 3,438 | [
"no_license"
] | [
{
"path": "roles/nfs/tasks/main.yml",
"content": "- name: Setup NFS Server\n import_tasks: server.yml\n when: nfs.server is defined and nfs.server\n\n- name: Setup NFS Client\n import_tasks: client.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 150
},
{
"... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 755,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/nodejs | 3,438 | [
"no_license"
] | [
{
"path": "roles/nodejs/defaults/main.yml",
"content": "node_major_version: 20\ndebian_distro: jammy\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 44
},
{
"path": "roles/nodejs/tasks/main.yml",
"content": "- name: \"Add nodejs apt key\"\n apt_key:\n url... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 623,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/post_run | 3,438 | [
"no_license"
] | [
{
"path": "roles/post_run/tasks/main.yml",
"content": "- import_tasks: app_menu.yml",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 28
},
{
"path": "roles/post_run/tasks/app_menu.yml",
"content": "- name: Remove Unwanted Application Launchers from /usr/share/ap... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 583,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/sound | 3,438 | [
"no_license"
] | [
{
"path": "roles/sound/tasks/qjackctl.yml",
"content": "- name: Install QJackCtl\n package:\n name: qjackctl\n state: present\n when: ansible_facts['os_family'] == 'Debian'",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 120
},
{
"path": "roles/sound/tasks/... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1320,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/themes | 3,438 | [
"no_license"
] | [
{
"path": "roles/themes/tasks/main.yml",
"content": "- name: Install Zafiro Icons\n become: no\n shell: |\n export VERSION=1.1\n wget --quiet -O /tmp/zafiro-icons.tar.gz https://github.com/zayronxio/Zafiro-icons/archive/$VERSION.tar.gz\n cd /tmp\n tar xf zafiro-icons.tar.gz\n mkdir -p ~/.lo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 894,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/virtualization | 3,438 | [
"no_license"
] | [
{
"path": "roles/virtualization/tasks/main.yml",
"content": "- name: Install VirtualBox\n package:\n name: 'virtualbox'\n state: present\n when: ansible_facts['os_family'] == 'Debian'\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 | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | roles/zsa | 3,438 | [
"no_license"
] | [
{
"path": "roles/zsa/tasks/main.yml",
"content": "# For ZSA keyboards\n\n- name: Set Udev file for Oryx\n become: yes\n file:\n src: \"{{ playbook_dir }}/../configs/oryx-udev.rules\"\n dest: \"/etc/udev/rules.d/50-oryx.rules\"\n state: link\n when: ansible_facts['os_family'] == 'Debian'\n\n- nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1324,
"all_permissive": false
} |
ansible_role | heepster/dotfiles | 3ab4036a3cf7c313def5acf9dac5bbf57be03178 | 0 | servers/ansible/roles/dns | 3,438 | [
"no_license"
] | [
{
"path": "servers/ansible/roles/dns/tasks/main.yml",
"content": "- name: Install Bind\n package:\n name: bind9\n state: present\n\n- name: Install DNS Utils\n package:\n name: dnsutils\n state: present\n\n- name: Named Conf Options\n copy:\n src: named.conf.options\n dest: /etc/bind/na... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 721,
"all_permissive": false
} |
ansible_role | billhartcivica/vagranttest | 6d7f866d0236dda5a7643408ee8c5dd278efa676 | 0 | provision/roles/common | 3,438 | [
"no_license"
] | [
{
"path": "provision/roles/common/tasks/main.yml",
"content": "---\n# tasks file for common\n\n- name: Update apt cache\n apt:\n update_cache: yes\n\n- name: Install nginx\n apt:\n name: nginx\n state: present\n\n- name: Start NGiNX\n service:\n name: nginx\n state: started\n\n- name: Ame... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1299,
"all_permissive": false
} |
ansible_role | billhartcivica/vagranttest | 6d7f866d0236dda5a7643408ee8c5dd278efa676 | 0 | provision/roles/proxy | 3,438 | [
"no_license"
] | [
{
"path": "provision/roles/proxy/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: vagrant\n become: yes\n tasks:\n - name: Check if Nginx is running\n command: systemctl status nginx\n ignore_errors: yes\n changed_when: false\n register: service_nginx_status\n\n - name: R... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1454,
"all_permissive": false
} |
ansible_role | billhartcivica/vagranttest | 6d7f866d0236dda5a7643408ee8c5dd278efa676 | 0 | provision/roles/webserver | 3,438 | [
"no_license"
] | [
{
"path": "provision/roles/webserver/vars/main.yml",
"content": "---\n# vars file for provision/roles/webserver",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 45
},
{
"path": "provision/roles/webserver/handlers/main.yml",
"content": "---\n# handlers file for p... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 1858,
"all_permissive": false
} |
ansible_role | AndreM132/project2 | 1a81cd5cd51f6a331cff28dab84c84a2fa03b3ce | 0 | roles/common | 3,438 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yaml",
"content": "- name: \"Update\"\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg2\n - software-properties-common\n - python-pip\n - python3-pip\n update_cache: true\n- name: \"Install docker\"\n pip:\n name... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 767,
"all_permissive": false
} |
ansible_role | AndreM132/project2 | 1a81cd5cd51f6a331cff28dab84c84a2fa03b3ce | 0 | roles/docker-swarm-add-worker | 3,438 | [
"no_license"
] | [
{
"path": "roles/docker-swarm-add-worker/tasks/main.yaml",
"content": "- name: \"Join Swarm\"\n docker_swarm:\n state: join\n remote_addrs: [ \"{{ hostvars['master']['ansible_default_ipv4']['address'] }}:2377\" ]\n advertise_addr: \"{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 281,
"all_permissive": false
} |
ansible_role | leshicodes/Plex-aaS | d8afe5ccdfc11b2799dd6d3eaaa656b8109fadf4 | 0 | roles/ansible-fail2ban | 3,438 | [
"no_license"
] | [
{
"path": "roles/ansible-fail2ban/meta/main.yml",
"content": "# meta file for fail2ban\n---\ngalaxy_info:\n author: <NAME>\n description: Set up fail2ban in Ubuntu, RHEL-like, CentOS systems\n license: MIT\n min_ansible_version: 2.2.0\n platforms:\n - name: Ubuntu\n versions:\n - xenial\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 3189,
"all_permissive": false
} |
ansible_role | leshicodes/Plex-aaS | d8afe5ccdfc11b2799dd6d3eaaa656b8109fadf4 | 0 | roles/digitalocean-config | 3,438 | [
"no_license"
] | [
{
"path": "roles/digitalocean-config/tasks/main.yml",
"content": "---\n- name: Gather OS specific variables\n include_vars: \"{{ item }}\"\n with_first_found:\n - '{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml'\n - '{{ ansible_distribution }}.yml'\n - '{{ ansible_os_fami... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 3820,
"all_permissive": false
} |
ansible_role | leshicodes/Plex-aaS | d8afe5ccdfc11b2799dd6d3eaaa656b8109fadf4 | 0 | roles/plex-role | 3,438 | [
"no_license"
] | [
{
"path": "roles/plex-role/tasks/Ubuntu.yml",
"content": "---\n# Ubuntu specific tasks\n\n- name: install the Plex deb from a remote repo\n apt:\n deb: \"{{ plex_ubuntu_deb_url }}\"\n state: present\n become: true",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 154... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 1547,
"all_permissive": false
} |
ansible_role | leshicodes/Plex-aaS | d8afe5ccdfc11b2799dd6d3eaaa656b8109fadf4 | 0 | roles/rclone | 3,438 | [
"no_license"
] | [
{
"path": "roles/rclone/molecule/default/molecule.yml",
"content": "---\ndependency:\n name: galaxy\ndriver:\n name: docker\nlint:\n name: yamllint\n options:\n config-file: molecule/yaml-lint.yml\nplatforms:\n\n - name: centos7\n image: \"geerlingguy/docker-centos7-ansible:latest\"\n command:... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 9071,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/aceleraarranque | 3,438 | [
"no_license"
] | [
{
"path": "roles/aceleraarranque/tasks/main.yml",
"content": "- name: \"Cambia timeouts systemd\"\n copy:\n src: template/etc/systemd/system.conf\n dest: /etc/systemd/system.conf\n owner: root\n group: root\n mode: \"u=rw,g=r,o=r\"\n\n- name: \"disable service\"\n systemd: name... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 400,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/ansibleupdate | 3,438 | [
"no_license"
] | [
{
"path": "roles/ansibleupdate/tasks/main.yml",
"content": "- name: \"ansible repository\"\n apt_repository:\n repo: ppa:ansible/ansible\n state: present\n\n- name: \"update ansible\"\n apt:\n name: ansible\n update_cache: yes\n state: present\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 194,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/atom | 3,438 | [
"no_license"
] | [
{
"path": "roles/atom/tasks/main.yml",
"content": "#- name: Install list of packages\n# apt: \n# state: present \n# update_cache: yes\n# name: [atom] \n\n- name: Untar \n unarchive:\n src: http://cc.etsii.ull.es/ftp/packages/atom-amd64.tar.gz\n dest: /opt/\n remote_src: yes\n\n- name: \... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1069,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/bug-eclipse | 3,438 | [
"no_license"
] | [
{
"path": "roles/bug-eclipse/tasks/main.yml",
"content": "- name: \"Eclipse con gtk2\"\n copy:\n src: template/usr/local/bin/eclipse-java-gtk2\n dest: /usr/local/bin/eclipse-java-gtk2 \n owner: root\n group: root\n mode: \"u=rx,g=rx,o=rx\"\n\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 271,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/clienteoracle | 3,438 | [
"no_license"
] | [
{
"path": "roles/clienteoracle/tasks/main.yml",
"content": "##\n## sqlplus pdbadmin/PASSWORD@//IP:9521/ORCLPDB1\n\n- name: Oracle1\n apt:\n deb: http://cc.etsii.ull.es/ftp/packages/oracle-instantclient12.2-basic_12.2.0.1.0-2_amd64.deb\n\n- name: Oracle2\n apt:\n deb: http://cc.etsii.ull.es/ftp/pac... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1312,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/compendium | 3,438 | [
"no_license"
] | [
{
"path": "roles/compendium/tasks/main.yml",
"content": "- name: Untar Compendium\n unarchive:\n src: http://cc.etsii.ull.es/ftp/packages/Compendium.tar \n dest: /opt/\n remote_src: yes\n\n- name: Untar Compendium\n unarchive:\n src: http://cc.etsii.ull.es/ftp/packages/jdk-8u20-linux-x64.tar.g... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 966,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/cron-actualizasistema | 3,438 | [
"no_license"
] | [
{
"path": "roles/cron-actualizasistema/tasks/main.yml",
"content": "- cron:\n name: \"Cron actulaliza-sistema\"\n minute: \"2\"\n job: \"/usr/local/bin/actualiza-sistema\"\n\n- cron:\n name: \"Cron actulaliza-sistema 2\"\n minute: \"*/3\"\n job: \"/usr/local/bin/actualiza-sistema-tag 3min\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 644,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/docker | 3,438 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "\n- name: Uninstall old docker\n apt: name={{item}} state=absent update_cache=yes\n with_items:\n - docker\n - docker-engine\n - docker.io\n\n\n- name: Install list of packages\n apt: name={{item}} state=installed update_cache=yes\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1854,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/docker-mysql-php2 | 3,438 | [
"no_license"
] | [
{
"path": "roles/docker-mysql-php2/template/docker-mysql-php",
"content": "#!/bin/bash\necho\necho \"----------------------------\"\necho \"Iniciando contenedor docker con php y mysql instalado\"\necho \"No cierre esta pestaña porque cerrará el contenedor docker\"\necho \"Escriba su código php en el directo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 4254,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/eclipse-java-cpp | 3,438 | [
"no_license"
] | [
{
"path": "roles/eclipse-java-cpp/tasks/main.yml",
"content": "# Eclipse Java\n\n- name: \"create directory\"\n # file: path=/opt/eclipse-installer state=absent\n # file: path=/opt/eclipse state=absent\n file: path=/opt/eclipse-java state=directory\n- name: \"delete old eclipse\"\n command: rm -Rf /opt/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1786,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/eclipse-u18 | 3,438 | [
"no_license"
] | [
{
"path": "roles/eclipse-u18/tasks/main.yml",
"content": "# Eclipse Java\n\n- name: \"delete old eclipse\"\n command: rm -Rf /opt/eclipse-java \n\n- name: \"create directory\"\n # file: path=/opt/eclipse-installer state=absent\n # file: path=/opt/eclipse state=absent\n file: path=/opt/eclipse-java state... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 938,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/emacs | 3,438 | [
"no_license"
] | [
{
"path": "roles/emacs/tasks/main.yml",
"content": "- name: Install emacs \n apt: name={{item}} state=installed update_cache=yes\n with_items:\n - emacs \n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 107
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 107,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/fuzzylogic | 3,438 | [
"no_license"
] | [
{
"path": "roles/fuzzylogic/tasks/main.yml",
"content": "- name: Install list of packages octave and friends\n apt: \n state: present \n update_cache: yes\n name: [octave, liboctave-dev, scilab, fuzzylite] \n\n- name: fuzzy\n get_url:\n url: http://cc.etsii.ull.es/ftp/packages/fuzzy-logic-to... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 455,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/gemas-ruby | 3,438 | [
"no_license"
] | [
{
"path": "roles/gemas-ruby/tasks/main.yml",
"content": "- name: instala gemas\n gem: name={{item}} state=present user_install=no\n with_items:\n - pry\n - rspec\n - rails\n - sinatra\n - sinatra-contrib\n - yaml-model\n - rake\n - test-unit \n - rspec\n - yard\n - bundler... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 275,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/google-chrome | 3,438 | [
"no_license"
] | [
{
"path": "roles/google-chrome/tasks/main.yml",
"content": "- name: Pule y limpia\n command: \"{{ item }}\" \n with_items:\n - \"apt install -f -y\"\n - \"dpkg --configure -a\"\n\n- apt:\n deb: http://cc.etsii.ull.es/ftp/packages/google-chrome-stable_current_amd64.deb \n\n\n",
"license_type"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 211,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/hub | 3,438 | [
"no_license"
] | [
{
"path": "roles/hub/tasks/main.yml",
"content": "#- name: \"Install angular\"\n# npm:\n# name: @angular/cli\n# executable: /opt/node-v6.11.5-linux-x64/bin/npm\n# global: yes\n\n#- name: \"Install angular\"\n# command: /opt/node-v6.11.5-linux-x64/bin/npm install gitbook-cli -g\n\n- name: Un... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 534,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/installsoftware1-u1804 | 3,438 | [
"no_license"
] | [
{
"path": "roles/installsoftware1-u1804/tasks/main.yml",
"content": "- name: Pule y limpia\n command: \"{{ item }}\" \n with_items:\n - \"apt install -f -y\"\n - \"dpkg --configure -a\"\n\n- name: Uninstall \n apt:\n name: ['update-notifie']\n state: absent\n update_cache: y\n\n- name: Ins... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1807,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/installsoftware2-u1804 | 3,438 | [
"no_license"
] | [
{
"path": "roles/installsoftware2-u1804/tasks/main.yml",
"content": "- name: Install list of packages\n apt: \n name: ['jupyter', 'libopencv-core3.2*', 'libopencv-core-dev', 'libopencv-dev', 'libopencv-*-dev'] \n state: present \n update_cache: y\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 196,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/kgpg | 3,438 | [
"no_license"
] | [
{
"path": "roles/kgpg/tasks/main.yml",
"content": "- name: Install list of packages\n command: apt-get -f install -y\n\n- name: instala kgpg\n apt: name={{item}} state=installed update_cache=yes autoremove=yes\n with_items:\n - gnupg\n - kgpg\n\n",
"license_type": "no_license",
"detec... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 201,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/mazesolver | 3,438 | [
"no_license"
] | [
{
"path": "roles/mazesolver/tasks/main.yml",
"content": "- name: mazesolver\n file:\n path: /opt/mazesolver\n state: directory\n owner: root \n group: root \n mode: 0755\n\n- name: mazesolver \n get_url:\n url: http://cc.etsii.ull.es/ftp/packages/MazeSolver-v1.2.1.jar\n dest: /opt/maz... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 517,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/neurophstudio | 3,438 | [
"no_license"
] | [
{
"path": "roles/neurophstudio/tasks/main.yml",
"content": "- name: Untar neurophstuido\n unarchive:\n src: http://cc.etsii.ull.es/ftp/antiguo/etsii/soft/neurophstudio-2.93b.tar \n dest: /opt/\n remote_src: yes\n\n- name: \"link neurophstudio\" \n file:\n src: /opt/neurophstudio/bin/neuroph... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 340,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/node | 3,438 | [
"no_license"
] | [
{
"path": "roles/node/tasks/main.yml",
"content": "- name: Uninstall nodejs packages\n apt: name={{item}} state=absent update_cache=yes\n with_items:\n - nodejs\n - nodejs-legacy\n\n- name: Untar node\n unarchive:\n src: https://nodejs.org/dist/v6.11.5/node-v6.11.5-linux-x64.tar.xz\n de... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 507,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/nodepackages | 3,438 | [
"no_license"
] | [
{
"path": "roles/nodepackages/tasks/main.yml",
"content": "- name: \"Paquetes nodes\"\n #npm: name={{item}} state=present executable=/opt/node-v6.11.5-linux-x64/bin/npm global=yes\n npm: name={{item}} state=present global=yes\n environment:\n PATH: \"/opt/node-v6.11.5-linux-x64/bin:{{ ansible_env.PATH... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 320,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/nvm | 3,438 | [
"no_license"
] | [
{
"path": "roles/nvm/tasks/main.yml",
"content": "- name: \"nvm\"\n shell: curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | NVM_DIR=/usr/local/nvm bash\n\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 132
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 132,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/opencv | 3,438 | [
"no_license"
] | [
{
"path": "roles/opencv/tasks/main.yml",
"content": "- name: Install list of packages\n apt: name={{item}} state=installed update_cache=yes\n with_items:\n - libopencv-core2.4*\n - libopencv-core-dev\n - libopencv-dev\n - libopencv-*-dev\n\n\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 207,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/profile-env-alias-scripts | 3,438 | [
"no_license"
] | [
{
"path": "roles/profile-env-alias-scripts/tasks/main.yml",
"content": "- name: \"Set default path\"\n copy:\n src: template/etc/profile.d/path.sh\n dest: /etc/profile.d/path.sh\n owner: root\n group: root\n mode: \"u=rw,g=r,o=r\"\n",
"license_type": "no_license",
"detected... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 276,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/projectlibre | 3,438 | [
"no_license"
] | [
{
"path": "roles/projectlibre/tasks/main.yml",
"content": "- name: Pule y limpia\n command: \"{{ item }}\" \n with_items:\n - \"apt install -f -y\"\n - \"dpkg --configure -a\"\n\n\n- apt:\n deb: http://cc.etsii.ull.es/ftp/packages/projectlibre_1.8.0-1.deb \n\n\n",
"license_type": "no_license... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 198,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/quitasssd | 3,438 | [
"no_license"
] | [
{
"path": "roles/quitasssd/tasks/main.yml",
"content": "- name: quita sssd\n service:\n name: sssd\n enabled: no\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 61
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 61,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/rstudio | 3,438 | [
"no_license"
] | [
{
"path": "roles/rstudio/tasks/main.yml",
"content": "- name: rstudio\n shell: /etc/esit-software/desktop-playbook/no-ansible-scripts/install-rstudio\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 97
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 97,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/rutacorta | 3,438 | [
"no_license"
] | [
{
"path": "roles/rutacorta/template/usr/local/bin/ir",
"content": "#!/bin/bash\n\ncurl -s https://raw.githubusercontent.com/etsiiull/desktop-playbook/master/no-ansible-scripts/$1 | sh\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 115
},
{
"path": "roles/rutacor... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 285,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/softwareinicial | 3,438 | [
"no_license"
] | [
{
"path": "roles/softwareinicial/tasks/main.yml",
"content": "- name: Pule y limpia\n command: \"{{ item }}\" \n with_items:\n - \"apt install -f -y\"\n - \"dpkg --configure -a\"\n\n- name: Uninstall \n apt: name={{item}} state=absent update_cache=yes\n with_items:\n - update-notifier\n \n\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2312,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/usuariolocal | 3,438 | [
"no_license"
] | [
{
"path": "roles/usuariolocal/tasks/main.yml",
"content": "\n- name: Crear directorio\n file:\n path: /localhome/\n state: directory\n owner: root\n group: root\n mode: \"u=rwx,g=rx,o=rx\"\n\n- name: Crear usuario invitado4\n user:\n name: invitado2\n shell: /bin/bash\n creat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 313,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/vscode | 3,438 | [
"no_license"
] | [
{
"path": "roles/vscode/tasks/main.yml",
"content": "- apt:\n deb: http://cc.etsii.ull.es/ftp/packages/code_1.29.1-1542309157_amd64.deb \n\n- name: Pule y limpia\n command: \"{{ item }}\" \n with_items:\n - \"apt install -f -y\"\n - \"dpkg --configure -a\"\n - \"code --user-data-dir --instal... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 388,
"all_permissive": false
} |
ansible_role | etsiiull/desktop-playbook | c089d990c4fa3ab45833010496e4ac54faec54aa | 1 | roles/weka | 3,438 | [
"no_license"
] | [
{
"path": "roles/weka/tasks/main.yml",
"content": "- name: weka\n apt: name={{item}} state=installed update_cache=yes\n with_items:\n - weka\n - weka-doc\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 | mtabishk/ansible-playbooks | 8838b9a4a2f60358610790df6c4b5fd5da790ddd | 3 | k8s_cluster_wordpress_deploy/roles/mtabishk.ansible_wordpress_role | 3,438 | [
"no_license"
] | [
{
"path": "k8s_cluster_wordpress_deploy/roles/mtabishk.ansible_wordpress_role/files/pvc_wordpress.yml",
"content": "apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata:\n name: wordpress-pv-claim\n labels:\n app: wordpress\n tier: frontend\nspec:\n storageClassName: \"\"\n resources:... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 4293,
"all_permissive": false
} |
ansible_role | mtabishk/ansible-playbooks | 8838b9a4a2f60358610790df6c4b5fd5da790ddd | 3 | kubernetes-cluster-aws/roles/mtabishk.ansible_kubernetes_master_role | 3,438 | [
"no_license"
] | [
{
"path": "kubernetes-cluster-aws/roles/mtabishk.ansible_kubernetes_master_role/tasks/main.yml",
"content": "---\n# tasks file for k8s-master\n- name: install docker\n package:\n name: \"{{ item }}\"\n state: present\n loop: \n - docker\n - iproute-tc\n\n- name: Disable swap since kubernetes c... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2841,
"all_permissive": false
} |
ansible_role | mtabishk/ansible-playbooks | 8838b9a4a2f60358610790df6c4b5fd5da790ddd | 3 | kubernetes-cluster-aws/roles/mtabishk.ansible_kubernetes_worker_role | 3,438 | [
"no_license"
] | [
{
"path": "kubernetes-cluster-aws/roles/mtabishk.ansible_kubernetes_worker_role/handlers/main.yml",
"content": "---\n# handlers file for k8s-master\n- name: restart docker service\n service:\n name: docker\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1632,
"all_permissive": false
} |
ansible_role | mtabishk/ansible-playbooks | 8838b9a4a2f60358610790df6c4b5fd5da790ddd | 3 | roles/myapache | 3,438 | [
"no_license"
] | [
{
"path": "roles/myapache/tasks/main.yml",
"content": "---\n# tasks file for webserver\n- name: install httpd\n package:\n name: httpd\n state: present\n \n- name: install php\n package:\n name: php\n state: present\n\n- name: copy content\n template:\n src: index.php.j2\n dest: /var/ww... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 344,
"all_permissive": false
} |
ansible_role | mtabishk/ansible-playbooks | 8838b9a4a2f60358610790df6c4b5fd5da790ddd | 3 | roles/myloadbalancer | 3,438 | [
"no_license"
] | [
{
"path": "roles/myloadbalancer/tasks/main.yml",
"content": "---\n# tasks file for loadbalancer\n- name: install haproxy\n package:\n name: haproxy\n state: present\n\n- name: copy ansible.cfg.j2 template\n template:\n src: haproxy.cfg.j2\n dest: /etc/haproxy/haproxy.cfg\n notify: lb restart\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 631,
"all_permissive": false
} |
ansible_role | nischal31/NP_ansibleautomation | da2cb96d0462b19a8c3cbff1d54fafc24716af43 | 0 | roles/interfaces | 3,438 | [
"no_license"
] | [
{
"path": "roles/interfaces/tasks/interfaces.yml",
"content": "#Automation file for interface config\n\n\n- name: Configure interfaces - Status and Descriptions\n ios_interfaces:\n config:\n - name: \"{{ item.ios_if }}\"\n description: \"{{ item.desc }}\"\n enabled: \"{{ item.enabled ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 692,
"all_permissive": false
} |
ansible_role | nischal31/NP_ansibleautomation | da2cb96d0462b19a8c3cbff1d54fafc24716af43 | 0 | roles/routing | 3,438 | [
"no_license"
] | [
{
"path": "roles/routing/tasks/ospf.yml",
"content": "# tasks file for OSPF routing\n#\n- name: OSPF Process\n ios_config:\n lines:\n - \"router ospf 1\"\n\n- name: OSPF Process - Router ID\n ios_config:\n lines: \n - \"router-id {{ router_id }}\"\n parents: router ospf 1\n\n- name: OSP... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 6392,
"all_permissive": false
} |
ansible_role | RickdeJager/ansiblePlaybooks | dbd41e64e4ef82d3a6bf763ae28789d0528b9c50 | 2 | bastion/roles/common | 3,438 | [
"no_license"
] | [
{
"path": "bastion/roles/common/tasks/main.yml",
"content": "---\n- name: Update and upgrade apt packages\n apt:\n upgrade: yes\n update_cache: yes\n cache_valid_time: 86400 #One day\n\n- name: install Python3, fail2ban\n apt:\n name: \"{{ packages }}\"\n state: present\n vars:\n packag... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 682,
"all_permissive": false
} |
ansible_role | RickdeJager/ansiblePlaybooks | dbd41e64e4ef82d3a6bf763ae28789d0528b9c50 | 2 | bastion/roles/nginx | 3,438 | [
"no_license"
] | [
{
"path": "bastion/roles/nginx/tasks/main.yml",
"content": "---\n- name: Install Nginx\n apt:\n name: nginx\n state: present\n\n- name: Get own IP\n become: no #Don't run this with sudo\n ipify_facts:\n connection: local #Run this on the local machine\n\n- name: Copy main nginx conf... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 827,
"all_permissive": false
} |
ansible_role | RickdeJager/ansiblePlaybooks | dbd41e64e4ef82d3a6bf763ae28789d0528b9c50 | 2 | bastion/roles/prereq | 3,438 | [
"no_license"
] | [
{
"path": "bastion/roles/prereq/tasks/main.yml",
"content": "---\n# First setup up 2 accounts to use; ansible and mgmt\n\n- name: Ensure group \"wheel\" exists\n group:\n name: wheel\n state: present\n\n- name: Allow 'wheel' group to have passwordless sudo\n lineinfile:\n dest: /etc/sudoers\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 830,
"all_permissive": false
} |
ansible_role | elmanytas/osl-computer | 6f49486e7991d30d69552084a8d8ed66e5f6831b | 2 | ansible-flask/roles/flaskapp | 3,438 | [
"no_license"
] | [
{
"path": "ansible-flask/roles/flaskapp/files/flaskapp/flaskapp/__init__.py",
"content": "# -*- coding: UTF-8 -*-\nfrom flask import Flask\nfrom flask import request\nfrom flask import json\n\nimport requests\n\napp = Flask(__name__)\n\n\n# http://blog.luisrei.com/articles/flaskrest.html\n@app.route('/oslh2... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 13031,
"all_permissive": false
} |
ansible_role | juta2000/ansible_maintainer | 1db76d2bf376ae9cea5ceb1098c5983c6a084e3a | 0 | roles/db_servers | 3,438 | [
"no_license"
] | [
{
"path": "roles/db_servers/tasks/main.yml",
"content": "- name: install mariadb package (Ubuntu, Debian)\n tags: db,mariadb\n apt:\n name: mariadb-server\n state: latest\n when: ansible_distribution == \"Debian\",\"Ubuntu\"\n\n",
"license_type": "no_license",
"detected_licenses": [],
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 169,
"all_permissive": false
} |
ansible_role | juta2000/ansible_maintainer | 1db76d2bf376ae9cea5ceb1098c5983c6a084e3a | 0 | roles/default_install | 3,438 | [
"no_license"
] | [
{
"path": "roles/default_install/tasks/main.yml",
"content": "- name: Add Webmin repository\n tags: webmin \n template:\n src: \"{{ webmin_repo }}\"\n dest: \"{{ webmin_repo_folder }}\"\n owner: root\n group: root\n mode: 0644\n\n- name: Add Webmin key\n apt_key:\n url: \"{{ webmin_gpg_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 369,
"all_permissive": false
} |
ansible_role | juta2000/ansible_maintainer | 1db76d2bf376ae9cea5ceb1098c5983c6a084e3a | 0 | roles/web_servers | 3,438 | [
"no_license"
] | [
{
"path": "roles/web_servers/tasks/main.yml",
"content": "- name: install apache2 and php packages for Debian\n tags: apache2,php\n apt:\n name:\n - \"{{ apache_package_name }}\"\n - \"{{ php_package_name }}\"\n state: latest\n when: ansible_distribution == \"Debian\", \"Ubuntu\"\n\n#- n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1005,
"all_permissive": false
} |
ansible_role | sunnyk59/clusteroperations | 2a31abd9994739fd60b335554d866f30acbaf9db | 0 | ansible/roles/createcluster | 3,658 | [
"no_license"
] | [
{
"path": "ansible/roles/createcluster/scripts/createcluster.sh",
"content": "#!/bin/bash\n\n# Credentials File Path\nTOKEN=\"\" \n \n# Get Credentials\nreadCredentials() {\n echo \" -> reading credentials...\"\n \n if [ -z \"$1\" ]; then\n echo \"Error: Credentials file path not provided.... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1710,
"all_permissive": false
} |
ansible_role | sunnyk59/clusteroperations | 2a31abd9994739fd60b335554d866f30acbaf9db | 0 | ansible/roles/deletecluster | 3,658 | [
"no_license"
] | [
{
"path": "ansible/roles/deletecluster/tasks/main.yml",
"content": "- name: Delete Rosa Cluster\n debug:\n msg: Deleting cluster -> '{{ clustername }}'\n\n- name: Check ROSA plugin exist\n ansible.builtin.command: rosa version\n register: plugin_exist\n\n- debug : msg=\"{{ plugin_exist.stdout }}\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1229,
"all_permissive": false
} |
ansible_role | brownkurts/AnsibleControl | 4dc592a07eba332a1fffbbb3d5df1f5fccebe0b6 | 0 | playbooks/roles/Linuxrmm | 3,658 | [
"no_license"
] | [
{
"path": "playbooks/roles/Linuxrmm/defaults/main.yml",
"content": "linuxrmm_install_dir: \"/opt/linuxrmm\"\nrmm_arch: \"amd64\"\nmesh_url: \"https://mesh.kbtech.org/meshagents?script=1\"\napi_url: \"https://api.kbtech.org\"\nparam_4: \"1\"\nparam_5: \"1\"\nauth_key: \"8923ed3da5eaceb9c264b8d50ca34c8ae9f38b... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1213,
"all_permissive": false
} |
ansible_role | brownkurts/AnsibleControl | 4dc592a07eba332a1fffbbb3d5df1f5fccebe0b6 | 0 | playbooks/roles/PiHole_update | 3,658 | [
"no_license"
] | [
{
"path": "playbooks/roles/PiHole_update/tasks/main.yml",
"content": "---\n - name: pihole update\n shell: pihole -up",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 49
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 49,
"all_permissive": false
} |
ansible_role | brownkurts/AnsibleControl | 4dc592a07eba332a1fffbbb3d5df1f5fccebe0b6 | 0 | playbooks/roles/nfs_mount | 3,658 | [
"no_license"
] | [
{
"path": "playbooks/roles/nfs_mount/vars/main.yml",
"content": "nfsmounts:\n - { path: \"/mnt/Public\", src: \"192.168.2.21:/mnt/Public\" }\n - { path: \"/mnt/unraid\", src: \"192.168.2.21:/mnt/user/unraid\" }\n - { path: \"/mnt/media\", src: \"192.168.2.21:/mnt/user/Media\" }\n",
"license_type": "n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 792,
"all_permissive": false
} |
ansible_role | brownkurts/AnsibleControl | 4dc592a07eba332a1fffbbb3d5df1f5fccebe0b6 | 0 | playbooks/roles/proxmox_newsetup | 3,658 | [
"no_license"
] | [
{
"path": "playbooks/roles/proxmox_newsetup/tasks/main.yml",
"content": "---\n- name: Perform tasks for Proxmox Virtual Environment\n block:\n - name: Remove pve-enterprise subscription repo\n ansible.builtin.file:\n path: \"{{ proxmox_pve_enterprise_list }}\"\n state: absent\n w... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2082,
"all_permissive": false
} |
ansible_role | brownkurts/AnsibleControl | 4dc592a07eba332a1fffbbb3d5df1f5fccebe0b6 | 0 | playbooks/roles/rocketchat_notification | 3,658 | [
"no_license"
] | [
{
"path": "playbooks/roles/rocketchat_notification/tasks/main.yml",
"content": "- name: Send notification message via Rocket Chat\n community.general.rocketchat:\n token: <KEY>\n domain: rocketchat.kbtech.org\n method: POST\n body_format: json\n body:\n text: \"{{ message }}\"\n stat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 257,
"all_permissive": false
} |
ansible_role | brownkurts/AnsibleControl | 4dc592a07eba332a1fffbbb3d5df1f5fccebe0b6 | 0 | playbooks/roles/ssh_keys | 3,658 | [
"no_license"
] | [
{
"path": "playbooks/roles/ssh_keys/defaults/main.yml",
"content": "---\nansible_user: root\nssh_key_path: \"/home/{{ ansible_user }}/.ssh/id_ed25519\"\nssh_pub_key_path: \"{{ ssh_key_path }}.pub\"\nauthorized_keys_file: \"/home/{{ ansible_user }}/.ssh/authorized_keys\"\n",
"license_type": "no_license",... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 771,
"all_permissive": false
} |
ansible_role | brownkurts/AnsibleControl | 4dc592a07eba332a1fffbbb3d5df1f5fccebe0b6 | 0 | playbooks/roles/update_linux | 3,658 | [
"no_license"
] | [
{
"path": "playbooks/roles/update_linux/tasks/main.yml",
"content": "- name: Update Ubuntu\n when: ansible_facts['os_family'] == 'Debian'\n become: true\n ansible.builtin.apt:\n upgrade: dist\n update_cache: true\n cache_valid_time: 3600 # Update cache if older than 1 hour",
"license_type":... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 211,
"all_permissive": false
} |
ansible_role | brownkurts/AnsibleControl | 4dc592a07eba332a1fffbbb3d5df1f5fccebe0b6 | 0 | playbooks/roles/update_proxmox | 3,658 | [
"no_license"
] | [
{
"path": "playbooks/roles/update_proxmox/tasks/main.yml",
"content": " - name: Update all packages to latest\n ansible.builtin.apt:\n state: latest\n update_cache: yes\n\n - name: Perform a dist-upgrade\n ansible.builtin.apt:\n update_cache: yes\n upgrade: dist",... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 227,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.