Mercurial > code > home > repos > infra
annotate packages/package_lists.py @ 332:d4893670f888 default tip
WIP: use watchdog reboot timer on pi
author | drewp@bigasterisk.com |
---|---|
date | Thu, 27 Feb 2025 11:09:29 -0800 |
parents | 5b88b38f2471 |
children |
rev | line source |
---|---|
174
b6b11048d0fb
collect nodejs pkg install stuff together
drewp@bigasterisk.com
parents:
167
diff
changeset
|
1 # nodejs+friends are handled outside this file |
b6b11048d0fb
collect nodejs pkg install stuff together
drewp@bigasterisk.com
parents:
167
diff
changeset
|
2 |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
3 setup = [ |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
4 'atool', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
5 'build-essential', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
6 'curl', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
7 'iproute2', # needed for wireguard |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
8 'iptables', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
9 'mosquitto-clients', |
118
69058ad170be
watch output from `zfs list -o space` as metrics
drewp@bigasterisk.com
parents:
114
diff
changeset
|
10 'mtail', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
11 'rsync', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
12 'udns-utils', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
13 'vim-tiny', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
14 'wireguard-tools', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
15 ] |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
16 |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
17 pi_setup = [ |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
18 'apt-utils', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
19 'dirmngr', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
20 'gnupg2', |
186 | 21 'pigpiod', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
22 ] |
248 | 23 # something in here tries to get libflac8 & libpulse0 on pipe, which it doesn't have |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
24 general = [ |
131 | 25 'apt-listchanges', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
26 'aptitude', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
27 'atool', |
135 | 28 'bsd-mailx', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
29 'fdisk', |
247 | 30 'flatpak', |
167 | 31 'hdparm', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
32 'isc-dhcp-client', |
175 | 33 'jq', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
34 'keychain', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
35 'kitty-terminfo', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
36 'less', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
37 'libgraphviz-dev', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
38 'links', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
39 'lua5.3', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
40 'mercurial', |
256 | 41 'moreutils', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
42 'netcat-openbsd', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
43 'ntpdate', |
208 | 44 'rename', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
45 'sshfs', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
46 'vim-nox', |
167 | 47 'wakeonlan', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
48 'wget', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
49 'wireguard', |
167 | 50 'xosview', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
51 'zsh', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
52 ] |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
53 |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
54 non_pi = [ |
280 | 55 'emacs', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
56 'lpr', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
57 'nfs-client', |
270 | 58 'python3-dulwich', # desired, but it may depend on an old python3 |
151
258865bd7059
add pkg (used for photo copies, in dev)
drewp@bigasterisk.com
parents:
147
diff
changeset
|
59 'python3-atomicwrites', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
60 'python3-invoke', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
61 'python3-pip', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
62 'python3-venv', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
63 'python3-virtualenv', |
280 | 64 'rclone', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
65 ] |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
66 |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
67 debug = [ |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
68 'debian-goodies', |
195 | 69 'dmidecode', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
70 'dstat', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
71 'ethtool', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
72 'gdb', |
195 | 73 'hdparm', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
74 'htop', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
75 'ifstat', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
76 'iotop', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
77 'iproute2', |
195 | 78 'lshw', |
79 'lsof', | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
80 'mtr-tiny', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
81 'ncdu', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
82 'net-tools', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
83 'nmap', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
84 'oping', |
252 | 85 'screen', |
195 | 86 'smartmontools', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
87 'speedtest-cli', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
88 'strace', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
89 'sysstat', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
90 'tcpdump', |
195 | 91 'wakeonlan', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
92 ] |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
93 |
289
65e28d2e0cd8
move static templates to files/ ; use inventory tags for selecting hosts+features ; other refactors
drewp@bigasterisk.com
parents:
286
diff
changeset
|
94 for_ditto = [ |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
95 'dnsmasq', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
96 'nfs-common', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
97 'openntpd', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
98 'zfs-auto-snapshot', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
99 'zfs-zed', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
100 'zfsutils-linux', |
278 | 101 'tgt', |
214 | 102 #'libedgetpu1-std', # for coral? not working on bang |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
103 ] |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
104 |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
105 for_pipe = [ |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
106 'dnsmasq', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
107 'python3-iptables', |
278 | 108 'open-iscsi', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
109 ] |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
110 |
131 | 111 for_prime = [ |
112 'opendkim', | |
113 'opendkim-tools', | |
114 ] | |
115 | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
116 laptop = [ |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
117 'brightnessctl', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
118 'i3', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
119 'network-manager', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
120 'xserver-xorg-input-synaptics', |
239 | 121 'tlp', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
122 ] |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
123 |
141 | 124 audio_plugins = [ |
145 | 125 'amb-plugins', |
126 'ambdec', | |
127 'autotalent', | |
128 'blepvco', | |
129 'blop', | |
130 'bs2b-ladspa', | |
131 'caps', | |
132 'cmt', | |
133 'csladspa', | |
134 'dpf-plugins-ladspa', | |
135 'fil-plugins', | |
136 'guitarix-ladspa', | |
137 'invada-studio-plugins-ladspa', | |
138 'ladspa-sdk', | |
139 'lsp-plugins-ladspa', | |
140 'mcp-plugins', | |
141 'omins', | |
142 'rev-plugins', | |
143 'ste-plugins', | |
144 'swh-plugins', | |
145 'tap-plugins', | |
146 'vco-plugins', | |
147 'wah-plugins', | |
141 | 148 ] |
149 | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
150 desktop = [ |
141 | 151 'adwaita-icon-theme-full', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
152 'alsa-utils', |
141 | 153 'apache2-utils', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
154 'arandr', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
155 'ardour', |
141 | 156 'audacity', |
157 'brasero', | |
158 'breeze', | |
159 'brightnessctl', | |
160 'checkinstall', | |
161 'cmake', | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
162 'code', |
141 | 163 'cups', |
298 | 164 'dclock', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
165 'dolphin', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
166 'eog', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
167 'evtest', |
141 | 168 'eye', |
169 'fatrace', | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
170 'firefox', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
171 'flameshot', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
172 'fontmatrix', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
173 'fonts-dejavu-core', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
174 'fonts-dejavu-extra', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
175 'fonts-dejavu', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
176 'fonts-droid-fallback', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
177 'fonts-emojione', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
178 'fonts-font-awesome', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
179 'fonts-freefont-ttf', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
180 'fonts-lato', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
181 'fonts-liberation2', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
182 'fonts-noto', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
183 'fonts-opensymbol', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
184 'fonts-quicksand', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
185 'fonts-texgyre', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
186 'fonts-ubuntu-console', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
187 'fonts-ubuntu', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
188 'fonts-urw-base35', |
214 | 189 'fvwm3', |
141 | 190 'gdb', |
191 'gedit', | |
192 'gimp-data-extras', | |
193 'gimp-gmic', | |
194 'gimp-plugin-registry', | |
195 'gimp-texturize', | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
196 'gimp', |
141 | 197 'gnome-icon-theme', |
198 'gnumeric', | |
199 'gnuplot', | |
200 'golang', | |
201 'google-chrome-stable', | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
202 'google-chrome-unstable', |
141 | 203 'gstreamer1.0-libav', |
204 'gstreamer1.0-opencv', | |
205 'gstreamer1.0-plugins-bad', | |
206 'gstreamer1.0-plugins-ugly', | |
207 'gstreamer1.0-tools', | |
208 'gstreamer1.0-vaapi', | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
209 'heif-gdk-pixbuf', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
210 'heif-thumbnailer', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
211 'humanity-icon-theme', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
212 'i3lock', |
141 | 213 'imagemagick', |
214 'imwheel', | |
195 | 215 'jq', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
216 'k4dirstat', |
141 | 217 'libheif-examples', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
218 'libreoffice-draw', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
219 'libreoffice-impress', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
220 'libreoffice-writer', |
270 | 221 'libfuse2', # for obsidian (appimage) |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
222 'libxcb-xkb1', # needed for kitty |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
223 'lxterminal', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
224 'meld', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
225 'mpv', |
141 | 226 'nmap', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
227 'nodm', |
141 | 228 'okular', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
229 'pavucontrol', |
298 | 230 'pamixer', |
231 'pipewire-audio', | |
141 | 232 'python3-dulwich', |
233 'python3-evemu', | |
234 'python3-opencv', | |
235 'python3-pycurl', | |
236 'python3-rdflib', | |
237 'python3-venv', | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
238 'qjackctl', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
239 'qv4l2', |
141 | 240 'rar', |
241 'rclone', | |
242 'recordmydesktop', | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
243 'simple-scan', |
247 | 244 'simplescreenrecorder', |
141 | 245 'solvespace', |
195 | 246 'sqlitebrowser', |
141 | 247 'sshfs', |
247 | 248 'steam-launcher', |
141 | 249 'swi-prolog', |
298 | 250 'syncthing-gtk', # this may pull old ubu syncthing version, which sync.py replaces |
141 | 251 'system-config-printer', |
273
f7178138b736
pkgs and special podman future version
drewp@bigasterisk.com
parents:
270
diff
changeset
|
252 'systemd-resolved', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
253 'trayer', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
254 'ttf-bitstream-vera', |
308 | 255 'visidata', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
256 'vlc', |
141 | 257 'wamerican', |
258 'wireshark', | |
259 'wmctrl', | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
260 'x11-apps', |
141 | 261 'x11vnc', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
262 'xclip', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
263 'xfonts-base', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
264 'xfonts-encodings', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
265 'xfonts-utils', |
141 | 266 'xpad', |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
267 'xsane', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
268 'xterm', |
141 | 269 'xtightvncviewer', |
270 'xvfb', | |
270 | 271 'libssl-dev', # for pypi 'packages' |
272 'libcurl4-openssl-dev', # for pypi 'packages' | |
273 'kicad', | |
274 'openscad', | |
275 'dunst', | |
276 'gmic', | |
277 'git-cola', | |
278 'optipng', | |
279 'pngcrush', | |
280 'pngquant', | |
281 'cdparanoia', | |
114
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
282 ] |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
283 |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
284 xorg = [ |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
285 'kbd', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
286 'nvidia-modprobe', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
287 'nvidia-prime', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
288 'nvidia-settings', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
289 'screen-resolution-extra', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
290 'xserver-xorg', |
7e280bf26dba
package lists big update, pulling from /var/log/apt on a few hosts
drewp@bigasterisk.com
parents:
diff
changeset
|
291 ] |
268
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
292 |
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
293 |
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
294 def k8s_node_with_nvidia_gpu(hostName): |
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
295 version = { |
298 | 296 'dash': '550', |
297 'dot': '550', # just not updated yet | |
298 'slash': '550', | |
299 'ditto': '550-server', | |
268
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
300 # 'bang': '390-server', # no longer in ubuntu |
298 | 301 'squib': '470', # held back for old gfx card |
268
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
302 }[hostName] |
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
303 return [ |
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
304 'nvidia-container-runtime', |
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
305 f'nvidia-headless-{version}', |
298 | 306 f'nvidia-utils-{version}', |
307 f'libnvidia-decode-{version}', | |
308 f'libnvidia-encode-{version}', | |
268
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
309 f'nvidia-driver-{version}', |
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
310 ] + ([] if 'server' in version else [ |
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
311 f'xserver-xorg-video-nvidia-{version}', |
34ab4aec7d4b
notes and changes for getting nvidia gpu k3d support going, which was very hard
drewp@bigasterisk.com
parents:
265
diff
changeset
|
312 ]) |