Move single ansible playbook to ansible directory

Make ansible playbook properly- use ansible-galaxy init commands.
This commit is contained in:
ducoterra
2022-01-31 13:44:46 -05:00
parent c3ee4cf837
commit 838dad0302
183 changed files with 3232 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
---
# Minecraft
- name: Clone minecraft-launcher repo
ansible.builtin.git:
repo: 'https://aur.archlinux.org/minecraft-launcher.git'
dest: '{{ executable_temp_dir }}/minecraft-launcher'
- name: Install minecraft-launcher with makepkg
command: makepkg -si --noconfirm
args:
chdir: '{{ executable_temp_dir }}/minecraft-launcher'