stop gradle pacman error on ubuntu

This commit is contained in:
mouse 2022-11-06 00:20:44 +11:00
parent 663f0bc5ef
commit 5e1bcf3f76
2 changed files with 8 additions and 7 deletions

View file

@ -74,13 +74,8 @@
msg: "Installing gradle on RedHat ({{ ansible_distribution }}) is currently not supported, so self-building ma1sd cannot happen at this time"
when: ansible_os_family == 'RedHat'
- name: Ensure gradle is installed for self-building (Archlinux)
community.general.pacman:
name:
- gradle
state: present
update_cache: true
when: ansible_distribution == 'Archlinux'
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/util/ensure_gradle_installed_archlinux.yml"
when: "ansible_distribution == 'Archlinux'"
- name: Ensure ma1sd repository is present on self-build
ansible.builtin.git:

View file

@ -0,0 +1,6 @@
---
- name: Ensure gradle installed (Archlinux)
community.general.pacman:
name: gradle
state: present