mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-11 21:27:10 +00:00
9 lines
132 B
Plaintext
9 lines
132 B
Plaintext
|
#!/bin/sh -x
|
||
|
|
||
|
USER=ubuntu
|
||
|
|
||
|
DEFGROUPS="docker,sudo"
|
||
|
|
||
|
echo "I: add $USER to ($DEFGROUPS) group(s)"
|
||
|
usermod -a -G ${DEFGROUPS} ${USER}
|