From 45abba3c374b41c6a326a48cee1ed28950aa84bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20T=2E=20Jochym?= Date: Thu, 15 Sep 2022 17:34:25 +0200 Subject: [PATCH] Add requested comments specific to debian --- bootstrap/bootstrap.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap/bootstrap.py b/bootstrap/bootstrap.py index a34df0972..5b14db705 100644 --- a/bootstrap/bootstrap.py +++ b/bootstrap/bootstrap.py @@ -421,6 +421,7 @@ def serve_forever(server): ["apt-get", "install", "--yes", "software-properties-common"], env=apt_get_adjusted_env, ) + # Section "universe" exists and is required only in ubuntu. if distro == "ubuntu": run_subprocess(["add-apt-repository", "universe", "--yes"]) run_subprocess(["apt-get", "update"]) @@ -433,7 +434,7 @@ def serve_forever(server): "python3-venv", "python3-pip", "git", - "sudo", + "sudo", # sudo is missing in default debian install ], env=apt_get_adjusted_env, )