Mercurial > code > home > repos > infra
comparison system.py @ 2:7f7af7e2ba8d
plocate is so much better!
author | drewp@bigasterisk.com |
---|---|
date | Thu, 04 Nov 2021 18:26:04 -0700 |
parents | b664f1027992 |
children | 61945df2a392 |
comparison
equal
deleted
inserted
replaced
1:b664f1027992 | 2:7f7af7e2ba8d |
---|---|
106 # don't try to get aufs-dkms on rpi-- https://github.com/docker/for-linux/issues/709 | 106 # don't try to get aufs-dkms on rpi-- https://github.com/docker/for-linux/issues/709 |
107 apt.packages(packages=['docker.io'], no_recommends=True) | 107 apt.packages(packages=['docker.io'], no_recommends=True) |
108 | 108 |
109 apt.packages(packages=[ | 109 apt.packages(packages=[ |
110 'build-essential', | 110 'build-essential', |
111 'i2c-tools', | |
112 'keychain', | |
113 'python3-docker', | |
114 'python3-invoke', | |
111 'python3-pip', | 115 'python3-pip', |
112 'python3-virtualenv', | 116 'python3-virtualenv', |
113 'python3-docker', | |
114 'rsync', | 117 'rsync', |
115 'i2c-tools', | |
116 'sysstat', | 118 'sysstat', |
117 ]) | 119 ]) |
120 | |
121 if not is_pi: | |
122 apt.packages(packages='mlocate', present=False) | |
123 apt.packages(packages='plocate') | |
118 | 124 |
119 # | 125 # |
120 # ssh | 126 # ssh |
121 # | 127 # |
122 | 128 |