mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-11 13:17:21 +00:00
Imported using git-ubuntu import. Changelog parent: 5d6ee8ad5b4068bcb1e29495beebf9bf11397240 New changelog entries: * Don't add a docker group to desktop next
9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
USER=ubuntu
|
|
|
|
DEFGROUPS="sudo"
|
|
|
|
echo "I: add $USER to ($DEFGROUPS) group(s)"
|
|
usermod -a -G ${DEFGROUPS} ${USER}
|