mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-11 13:17:21 +00:00
Imported using git-ubuntu import. Changelog parent: f5af78966b977349a8f7dae9fd2fcc042246d3bc New changelog entries: * Create hooks and image build config for the ubuntu-desktop-next new based on snappy image.
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}
|