From 83b8c34b0586b9c28ea56d68ff84bbe5224804e7 Mon Sep 17 00:00:00 2001 From: Nicolas Bock Date: Wed, 5 Aug 2026 18:52:14 -0600 Subject: [PATCH] Add 'sudo' to snap install commands in tutorial Alll commands need a sudo. Signed-off-by: Nicolas Bock --- doc/tutorial/multi-member.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/tutorial/multi-member.md b/doc/tutorial/multi-member.md index 04500e1c7..ce83a672b 100644 --- a/doc/tutorial/multi-member.md +++ b/doc/tutorial/multi-member.md @@ -266,9 +266,9 @@ Complete the following steps on each VM (`micro1`, `micro2`, `micro3`, and `micr 1. Install the required snaps: sudo snap install lxd --channel=5.21/stable --cohort="+" - snap install microceph --channel=squid/stable --cohort="+" - snap install microovn --channel=24.03/stable --cohort="+" - snap install microcloud --channel=2/stable --cohort="+" + sudo snap install microceph --channel=squid/stable --cohort="+" + sudo snap install microovn --channel=24.03/stable --cohort="+" + sudo snap install microcloud --channel=2/stable --cohort="+" ```{note} The `--cohort="+"` flag in the command ensures that the same version of the snap is installed on all machines.