Allow sudo for wheel, otherwise you're locked out (#62)

This commit is contained in:
Laurențiu Nicola 2020-11-23 21:39:55 +02:00 committed by Philip Mueller
parent 7bba0c8c5a
commit b4ecfd3c2a
2 changed files with 2 additions and 1 deletions

View File

@ -131,6 +131,7 @@ set -eux
useradd -m ${ALMA_USER}
passwd ${ALMA_USER}
usermod -G wheel -a ${ALMA_USER}
echo "%wheel ALL=(ALL) ALL" > /etc/sudoers.d/wheel
"""
environment_variables = ["ALMA_USER"]
```

View File

@ -5,6 +5,6 @@ set -eux
useradd -m ${ALMA_USER}
passwd ${ALMA_USER}
usermod -G users,lp,video,network,storage,wheel,audio -a ${ALMA_USER}
echo "%wheel ALL=(ALL) ALL" > /etc/sudoers.d/99_wheel
echo "%wheel ALL=(ALL) ALL" > /etc/sudoers.d/wheel
"""
environment_variables = ["ALMA_USER"]