Add node version manager (nvm) and minor fixes.
This commit is contained in:
parent
48bdb12e77
commit
68e84fdd77
@ -99,7 +99,7 @@
|
||||
become: true
|
||||
become_user: "{{ build_user.name }}"
|
||||
args:
|
||||
creates: /var/cache/pacman/custom/custom.db.tar
|
||||
creates: /var/cache/pacman/custom/custom.db.tar.sig
|
||||
|
||||
- name: Install scripts
|
||||
copy:
|
||||
|
@ -1,3 +1,19 @@
|
||||
- name: Build aur packages
|
||||
register: buildaur
|
||||
become_user: "{{ build_user.name }}"
|
||||
command: "aurutils-sync --no-view {{ item }}"
|
||||
args:
|
||||
creates: "/var/cache/pacman/custom/{{ item }}-*.pkg.tar.*"
|
||||
loop:
|
||||
- nvm
|
||||
|
||||
- name: Update cache
|
||||
when: buildaur.changed
|
||||
pacman:
|
||||
name: []
|
||||
state: present
|
||||
update_cache: true
|
||||
|
||||
- name: Install packages
|
||||
package:
|
||||
name:
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: Install packages
|
||||
package:
|
||||
name:
|
||||
- youtube-dl
|
||||
- yt-dlp
|
||||
state: present
|
||||
|
@ -5,7 +5,6 @@
|
||||
args:
|
||||
creates: "/var/cache/pacman/custom/{{ item }}-*.pkg.tar.*"
|
||||
loop:
|
||||
- wev
|
||||
- wlvncc-git
|
||||
- wl-screenrec-git
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user