Mercurial > code > home > repos > infra
diff packages.py @ 108:0381ed592b5c
package updates
author | drewp@bigasterisk.com |
---|---|
date | Sat, 20 Aug 2022 14:12:33 -0700 |
parents | 8b8ef9d8f0fd |
children | 7e280bf26dba |
line wrap: on
line diff
--- a/packages.py Tue Jul 19 17:40:02 2022 -0700 +++ b/packages.py Sat Aug 20 14:12:33 2022 -0700 @@ -58,9 +58,30 @@ if host.name == 'pipe': apt.packages(packages=['mandb', 'apt-listchanges'], present=False) files.template(src='templates/odroid_sources.list.j2', dest='/etc/apt/sources.list', rel='focal') + apt.packages(packages=[ + 'python3-iptables', + 'podman-docker', + ]) elif is_pi: pi_sources() +apt.packages(packages=[ + 'build-essential', + 'dstat', + 'ifstat', + 'iptables', + 'iproute2', # needed for wireguard + 'kitty-terminfo', + 'mosquitto-clients', + 'ncdu', + 'rsync', + 'xosview', + 'zsh', + "atool", + "udns-utils", + "wireguard-tools", +]) + if not is_pi: if host.name != 'prime': apt.key(src='https://dl.google.com/linux/linux_signing_key.pub') @@ -79,6 +100,7 @@ 'iotop', 'keychain', 'lpr', + 'lua5.3', 'mercurial', 'mtr-tiny', 'net-tools', @@ -104,21 +126,6 @@ kitty() pnpm() -apt.packages(packages=[ - 'build-essential', - 'dstat', - 'ifstat', - 'iproute2', # needed for wireguard - 'kitty-terminfo', - 'mosquitto-clients', - 'ncdu', - 'rsync', - 'xosview', - 'zsh', - "atool", - "udns-utils", - "wireguard-tools", -]) proper_locate() @@ -136,4 +143,6 @@ if host.name == 'plus': apt.packages(packages=[ 'network-manager', + 'brightnessctl', + 'xserver-xorg-input-synaptics', ])