Add role powershell

This commit is contained in:
flyingscorpio@clevo 2022-02-28 13:10:58 +01:00
parent ea1abadd31
commit 3349312836
4 changed files with 18 additions and 9 deletions

View file

@ -68,15 +68,6 @@ gitea_backup_rsync:
- run:
- sudo systemctl enable gitea_backup_rsync.timer
powershell:
- clone:
url: https://aur.archlinux.org/powershell-bin.git
dest: ~/builds/powershell-bin
condition: arch
- run:
command: cd ~/builds/powershell-bin && makepkg -cirs --needed
condition: arch
gaming:
- run:
command: sudo cp /etc/pacman.conf /etc/pacman.conf.backup

View file

@ -21,4 +21,5 @@
- { role: java, tags: java }
- { role: lilypond, tags: lilypond }
- { role: latex, tags: latex }
- { role: powershell, tags: powershell }
- { role: protonvpn, tags: protonvpn }

View file

@ -0,0 +1,4 @@
---
dependencies:
- role: check-sudo
- role: git

View file

@ -0,0 +1,13 @@
---
- name: Clone powershell-bin
git:
repo: https://aur.archlinux.org/powershell-bin.git
dest: ~/builds/powershell-bin
clone: yes
when: ansible_distribution == 'Archlinux'
- name: Make and install powershell-bin
command:
cmd: makepkg -cirs --needed
chdir: ~/builds/powershell-bin
when: ansible_distribution == 'Archlinux'