Mercurial > code > home > repos > infra
changeset 42:057d0816afcd
more pkgs
author | drewp@bigasterisk.com |
---|---|
date | Mon, 14 Feb 2022 18:21:37 -0800 |
parents | 768e655e487b |
children | d6f0b4dd2f05 |
files | packages.py |
diffstat | 1 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/packages.py Mon Feb 14 18:20:25 2022 -0800 +++ b/packages.py Mon Feb 14 18:21:37 2022 -0800 @@ -12,7 +12,9 @@ apt.packages(packages=['mandb', 'apt-listchanges'], present=False) files.template(src='templates/pi_sources.list.j2', dest='/etc/apt/sources.list', rel='bullseye') # 'apt upgrade'? - apt.packages(update=True, packages=['dirmngr', 'gnupg2', 'apt-utils']) + apt.packages( + update=False, # see system.py + packages=['dirmngr', 'gnupg2', 'apt-utils']) apt.key(src='https://ftp-master.debian.org/keys/archive-key-8.asc') apt.key(src='https://ftp-master.debian.org/keys/archive-key-8-security.asc') @@ -48,6 +50,7 @@ 'ifstat', 'mosquitto-clients', 'ncdu', + "udns-utils", ]) if not is_pi: @@ -60,6 +63,8 @@ 'sysstat', 'debian-goodies', 'lxterminal', + 'iotop', + 'lpr', ]) if not is_pi and not (host.name == 'prime'): @@ -77,4 +82,4 @@ ]) if host.name == 'plus': - apt.packages(packages=['network-manager']) \ No newline at end of file + apt.packages(packages=['network-manager'])