# HG changeset patch # User Jeff Hammel # Date 1712764021 25200 # Node ID d6cce2e5cca6b5347d8d4e6f15b9dca6a994116e # Parent 30006a5583fa3022d65b286925640b76177c7c29 update for modern Ubuntu 22.04 diff -r 30006a5583fa -r d6cce2e5cca6 python/install_config.py --- a/python/install_config.py Thu Apr 11 08:23:38 2024 -0700 +++ b/python/install_config.py Wed Apr 10 08:47:01 2024 -0700 @@ -125,7 +125,7 @@ Step.__call__(self) self.write_hgrc() - # get the which command + # get the `which` command sys.path.append(os.path.join(HOME, 'python')) from which import which @@ -162,7 +162,6 @@ class DebianPackages(Step): """ubuntu packages to install""" - # TODO: actually install packages PACKAGES=["antiword", "arandr", @@ -186,9 +185,9 @@ ] def __call__(self): - # TODO: actually install this shit + # TODO: actually install these packages print ("Ensure the following packages are installed:") - print ("sudo apt-get install %s" % ' '.join(self.PACKAGES)) + print ("sudo apt install -y %s" % ' '.join(self.PACKAGES)) ### CLI