changeset 2:7f7af7e2ba8d

plocate is so much better!
author drewp@bigasterisk.com
date Thu, 04 Nov 2021 18:26:04 -0700
parents b664f1027992
children 61945df2a392
files system.py
diffstat 1 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/system.py	Thu Nov 04 18:10:02 2021 -0700
+++ b/system.py	Thu Nov 04 18:26:04 2021 -0700
@@ -108,14 +108,20 @@
 
 apt.packages(packages=[
     'build-essential',
+    'i2c-tools',
+    'keychain',
+    'python3-docker',
+    'python3-invoke',
     'python3-pip',
     'python3-virtualenv',
-    'python3-docker',
     'rsync',
-    'i2c-tools',
     'sysstat',
 ])
 
+if not is_pi:
+    apt.packages(packages='mlocate', present=False)
+    apt.packages(packages='plocate')
+
 #
 # ssh
 #