diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-12-04 18:40:42 +0000 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-12-05 09:33:30 +0000 |
commit | 8f3e6b243dac65e1a984bd4b2bb5ddec7c36d553 (patch) | |
tree | b928e0a18aa0e5b9265048a3be0329860350bfb4 /roles/workstation/tasks/yay.yml | |
parent | 5c2e3443bedf0ef6a34888ea30361af7da314748 (diff) | |
download | rules-8f3e6b243dac65e1a984bd4b2bb5ddec7c36d553.tar.gz |
roles/workstation: Add yay task for archlinux
Diffstat (limited to 'roles/workstation/tasks/yay.yml')
-rw-r--r-- | roles/workstation/tasks/yay.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/roles/workstation/tasks/yay.yml b/roles/workstation/tasks/yay.yml new file mode 100644 index 0000000..cafbc9c --- /dev/null +++ b/roles/workstation/tasks/yay.yml @@ -0,0 +1,19 @@ +- name: clone yay repository + git: + repo: "{{ workstation_yay_repo }}" + dest: "{{ workstation_yay_dir }}" + version: origin/master + become: true + become_user: "{{ workstation_user }}" + +- name: make yay package # noqa: no-changed-when + command: + cmd: makepkg -fs + chdir: "{{ workstation_yay_dir }}" + become: true + become_user: "{{ workstation_user }}" + +- name: install yay package # noqa: no-changed-when + shell: + cmd: pacman --noconfirm -U *.zst + chdir: "{{ workstation_yay_dir }}" |