Install more packages
This commit is contained in:
parent
03a0c71104
commit
129b4d1571
2 changed files with 23 additions and 12 deletions
|
@ -18,9 +18,11 @@
|
||||||
- composer
|
- composer
|
||||||
- cups
|
- cups
|
||||||
- curl
|
- curl
|
||||||
|
- dbus-broker
|
||||||
- dia
|
- dia
|
||||||
- evince
|
- evince
|
||||||
- fcitx5
|
- fcitx5
|
||||||
|
- file-roller
|
||||||
- flameshot
|
- flameshot
|
||||||
- foot
|
- foot
|
||||||
- git
|
- git
|
||||||
|
@ -29,9 +31,11 @@
|
||||||
- inkscape
|
- inkscape
|
||||||
- isort
|
- isort
|
||||||
- libreoffice
|
- libreoffice
|
||||||
|
- lightdm
|
||||||
- lxpolkit
|
- lxpolkit
|
||||||
- mesa-utils
|
- mesa-utils
|
||||||
- mesa-utils-bin
|
- mesa-utils-bin
|
||||||
|
- meson
|
||||||
- network-manager-gnome
|
- network-manager-gnome
|
||||||
- network-manager-config-connectivity-debian
|
- network-manager-config-connectivity-debian
|
||||||
- nextcloud-desktop
|
- nextcloud-desktop
|
||||||
|
@ -40,9 +44,13 @@
|
||||||
- npm
|
- npm
|
||||||
- pass
|
- pass
|
||||||
- pavucontrol
|
- pavucontrol
|
||||||
|
- pipewire
|
||||||
- pipewire-audio
|
- pipewire-audio
|
||||||
- pipx
|
- pipx
|
||||||
- plocate
|
- plocate
|
||||||
|
- plymouth
|
||||||
|
- plymouth-themes
|
||||||
|
- plymouth-label
|
||||||
- pkexec
|
- pkexec
|
||||||
- puppet-lint
|
- puppet-lint
|
||||||
- python3-deepdiff
|
- python3-deepdiff
|
||||||
|
@ -51,6 +59,7 @@
|
||||||
- qt5ct
|
- qt5ct
|
||||||
- rsync
|
- rsync
|
||||||
- scdaemon
|
- scdaemon
|
||||||
|
- shfmt
|
||||||
- simple-scan
|
- simple-scan
|
||||||
- sway
|
- sway
|
||||||
- sway-backgrounds
|
- sway-backgrounds
|
||||||
|
@ -62,17 +71,18 @@
|
||||||
- tsocks
|
- tsocks
|
||||||
- unzip
|
- unzip
|
||||||
- waybar
|
- waybar
|
||||||
|
- waypipe
|
||||||
- wdisplays
|
- wdisplays
|
||||||
- wget
|
- wget
|
||||||
- wl-clipboard
|
- wl-clipboard
|
||||||
- wlr-randr
|
- wlr-randr
|
||||||
- wofi
|
- wofi
|
||||||
- xdg-desktop-portal
|
- xdg-desktop-portal
|
||||||
|
- xdg-desktop-portal-gtk
|
||||||
- xdg-desktop-portal-wlr
|
- xdg-desktop-portal-wlr
|
||||||
- xwayland
|
- xwayland
|
||||||
- yapf3
|
- yapf3
|
||||||
- yq
|
- yq
|
||||||
- zathura
|
|
||||||
- zsh
|
- zsh
|
||||||
state: latest
|
state: latest
|
||||||
update_cache: true
|
update_cache: true
|
||||||
|
|
|
@ -14,18 +14,19 @@
|
||||||
path: '{{key_path}}'
|
path: '{{key_path}}'
|
||||||
register: key
|
register: key
|
||||||
- name: Get key
|
- name: Get key
|
||||||
ansible.builtin.command:
|
|
||||||
chdir: /tmp
|
|
||||||
cmd: wget -O ./keyring.gpg '{{ key_url }}'
|
|
||||||
creates: /tmp/keyring.gpg
|
|
||||||
when: not key.stat.exists
|
|
||||||
- name: Dearmor key
|
|
||||||
ansible.builtin.command:
|
|
||||||
chdir: /tmp
|
|
||||||
cmd: gpg --dearmor -o {{ key_path }} ./keyring.gpg
|
|
||||||
creates: '{{key_path}}'
|
|
||||||
become: true
|
become: true
|
||||||
|
ansible.builtin.command:
|
||||||
|
chdir: /tmp
|
||||||
|
cmd: wget -O '{{ key_path }}' '{{ key_url }}'
|
||||||
|
creates: '{{key_path}}'
|
||||||
when: not key.stat.exists
|
when: not key.stat.exists
|
||||||
|
# - name: Dearmor key
|
||||||
|
# ansible.builtin.command:
|
||||||
|
# chdir: /tmp
|
||||||
|
# cmd: gpg --dearmor -o {{ key_path }} ./keyring.gpg
|
||||||
|
# creates: '{{key_path}}'
|
||||||
|
# become: true
|
||||||
|
# when: not key.stat.exists
|
||||||
- name: install repo
|
- name: install repo
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
|
@ -38,7 +39,7 @@
|
||||||
autoclean: true
|
autoclean: true
|
||||||
autoremove: true
|
autoremove: true
|
||||||
install_recommends: true
|
install_recommends: true
|
||||||
pkg: [firefox-mozilla-build]
|
pkg: [firefox]
|
||||||
state: latest
|
state: latest
|
||||||
update_cache: true
|
update_cache: true
|
||||||
- name: Get host app
|
- name: Get host app
|
||||||
|
|
Loading…
Add table
Reference in a new issue