Mercurial > code > home > repos > infra
comparison packages.py @ 42:057d0816afcd
more pkgs
author | drewp@bigasterisk.com |
---|---|
date | Mon, 14 Feb 2022 18:21:37 -0800 |
parents | fbd0849dfdbd |
children | c4ffa1667504 |
comparison
equal
deleted
inserted
replaced
41:768e655e487b | 42:057d0816afcd |
---|---|
10 | 10 |
11 if is_pi: | 11 if is_pi: |
12 apt.packages(packages=['mandb', 'apt-listchanges'], present=False) | 12 apt.packages(packages=['mandb', 'apt-listchanges'], present=False) |
13 files.template(src='templates/pi_sources.list.j2', dest='/etc/apt/sources.list', rel='bullseye') | 13 files.template(src='templates/pi_sources.list.j2', dest='/etc/apt/sources.list', rel='bullseye') |
14 # 'apt upgrade'? | 14 # 'apt upgrade'? |
15 apt.packages(update=True, packages=['dirmngr', 'gnupg2', 'apt-utils']) | 15 apt.packages( |
16 update=False, # see system.py | |
17 packages=['dirmngr', 'gnupg2', 'apt-utils']) | |
16 | 18 |
17 apt.key(src='https://ftp-master.debian.org/keys/archive-key-8.asc') | 19 apt.key(src='https://ftp-master.debian.org/keys/archive-key-8.asc') |
18 apt.key(src='https://ftp-master.debian.org/keys/archive-key-8-security.asc') | 20 apt.key(src='https://ftp-master.debian.org/keys/archive-key-8-security.asc') |
19 apt.key(src='https://ftp-master.debian.org/keys/archive-key-9-security.asc') | 21 apt.key(src='https://ftp-master.debian.org/keys/archive-key-9-security.asc') |
20 apt.key(keyserver='keyserver.ubuntu.com', keyid='04EE7237B7D453EC') | 22 apt.key(keyserver='keyserver.ubuntu.com', keyid='04EE7237B7D453EC') |
46 'rsync', | 48 'rsync', |
47 'dstat', | 49 'dstat', |
48 'ifstat', | 50 'ifstat', |
49 'mosquitto-clients', | 51 'mosquitto-clients', |
50 'ncdu', | 52 'ncdu', |
53 "udns-utils", | |
51 ]) | 54 ]) |
52 | 55 |
53 if not is_pi: | 56 if not is_pi: |
54 apt.packages(packages=[ | 57 apt.packages(packages=[ |
55 'keychain', | 58 'keychain', |
58 'python3-pip', | 61 'python3-pip', |
59 'python3-virtualenv', | 62 'python3-virtualenv', |
60 'sysstat', | 63 'sysstat', |
61 'debian-goodies', | 64 'debian-goodies', |
62 'lxterminal', | 65 'lxterminal', |
66 'iotop', | |
67 'lpr', | |
63 ]) | 68 ]) |
64 | 69 |
65 if not is_pi and not (host.name == 'prime'): | 70 if not is_pi and not (host.name == 'prime'): |
66 apt.packages(packages='mlocate', present=False) | 71 apt.packages(packages='mlocate', present=False) |
67 apt.packages(packages='plocate') | 72 apt.packages(packages='plocate') |