Add role powershell
This commit is contained in:
parent
ea1abadd31
commit
3349312836
4 changed files with 18 additions and 9 deletions
|
@ -68,15 +68,6 @@ gitea_backup_rsync:
|
||||||
- run:
|
- run:
|
||||||
- sudo systemctl enable gitea_backup_rsync.timer
|
- 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:
|
gaming:
|
||||||
- run:
|
- run:
|
||||||
command: sudo cp /etc/pacman.conf /etc/pacman.conf.backup
|
command: sudo cp /etc/pacman.conf /etc/pacman.conf.backup
|
||||||
|
|
|
@ -21,4 +21,5 @@
|
||||||
- { role: java, tags: java }
|
- { role: java, tags: java }
|
||||||
- { role: lilypond, tags: lilypond }
|
- { role: lilypond, tags: lilypond }
|
||||||
- { role: latex, tags: latex }
|
- { role: latex, tags: latex }
|
||||||
|
- { role: powershell, tags: powershell }
|
||||||
- { role: protonvpn, tags: protonvpn }
|
- { role: protonvpn, tags: protonvpn }
|
||||||
|
|
4
roles/powershell/meta/main.yml
Normal file
4
roles/powershell/meta/main.yml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
dependencies:
|
||||||
|
- role: check-sudo
|
||||||
|
- role: git
|
13
roles/powershell/tasks/main.yml
Normal file
13
roles/powershell/tasks/main.yml
Normal 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'
|
Loading…
Add table
Reference in a new issue