mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-03-12 20:01:20 +00:00
9 lines
132 B
Bash
Executable File
9 lines
132 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
USER=ubuntu
|
|
|
|
DEFGROUPS="docker,sudo"
|
|
|
|
echo "I: add $USER to ($DEFGROUPS) group(s)"
|
|
usermod -a -G ${DEFGROUPS} ${USER}
|