summaryrefslogtreecommitdiffhomepage
path: root/test/docs
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2024-01-04 11:06:15 +0100
committerDavid Lönnhager <david.l@mullvad.net>2024-01-04 14:47:58 +0100
commit49a473d190d4297526c80c011549755af2957ea1 (patch)
tree11e37004f99e5d8ca4d5ff38ece91264784a2cc9 /test/docs
parent2d693c2201ee2678f99de5faef75ef041b677799 (diff)
downloadmullvadvpn-49a473d190d4297526c80c011549755af2957ea1.tar.xz
mullvadvpn-49a473d190d4297526c80c011549755af2957ea1.zip
Mention 'sudo' group in BUILD_OS_IMAGE.md
Diffstat (limited to 'test/docs')
-rw-r--r--test/docs/BUILD_OS_IMAGE.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/docs/BUILD_OS_IMAGE.md b/test/docs/BUILD_OS_IMAGE.md
index f837047c41..b2b9cd1fb9 100644
--- a/test/docs/BUILD_OS_IMAGE.md
+++ b/test/docs/BUILD_OS_IMAGE.md
@@ -34,9 +34,10 @@ To better illustrate the remaining steps of the installation process, we assume
#### sudo
-The user should be able to execute `sudo` without a password.
+The user should be able to execute `sudo` without a password. On Debian/Ubuntu, the user should be added to the group `sudo`.
+On Fedora, the group is typically called `wheel`, which is used in the example below.
-One way of accomplishing this is to add the `test` user to the `wheel` group
+Add the `test` user to the `wheel` group
```bash
gpasswd -a test wheel
```