From 48a79b69f9b77b857a0031a65e30a2259a7d2f54 Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Wed, 16 Sep 2020 21:47:07 +0200 Subject: [PATCH] pmb.config: add sudo to list of required programs sudo is installed by default on nearly all distros so it's not neccessary to mention in the readme but put it in this list to avoid nasty surprises. --- pmb/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 52c3bfe2..3c7eac85 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -37,7 +37,7 @@ ondev_min_version = "0.2.0" # Programs that pmbootstrap expects to be available from the host system. Keep # in sync with README.md, and try to keep the list as small as possible. The # idea is to run almost everything in Alpine chroots. -required_programs = ["git", "openssl", "ps"] +required_programs = ["git", "openssl", "ps", "sudo"] # Keys saved in the config file (mostly what we ask in 'pmbootstrap init') config_keys = ["aports",