live-build/ubuntu-core/hooks/02-add_user_to_groups.chroot: use commas

instead of spaces.
This commit is contained in:
Loïc Minier 2015-02-04 18:03:30 +01:00
parent 4a1ccc7b13
commit 1b037f5e20
2 changed files with 8 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
livecd-rootfs (2.280) vivid; urgency=medium
* live-build/ubuntu-core/hooks/02-add_user_to_groups.chroot: use commas
instead of spaces.
-- Loïc Minier <loic.minier@ubuntu.com> Wed, 04 Feb 2015 18:03:08 +0100
livecd-rootfs (2.279) vivid; urgency=medium
* Revert changes to post-debootstrap hashes for core.

View File

@ -2,7 +2,7 @@
USER=ubuntu
DEFGROUPS="docker sudo"
DEFGROUPS="docker,sudo"
echo "I: add $USER to ($DEFGROUPS) group(s)"
usermod -a -G ${DEFGROUPS} ${USER}