diff --git a/debian/changelog b/debian/changelog index 2fc28288..06b47c65 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (2.359) xenial; urgency=medium + + * live-build/ubuntu-core/hooks/01-setup_user.chroot: + - add default ubuntu user to "adm" and "sudo" groups + + -- Michael Vogt Mon, 07 Dec 2015 11:03:35 +0100 + livecd-rootfs (2.358) xenial; urgency=medium * Fix typo in ubuntu-cpc preventing non-intel builds. diff --git a/live-build/ubuntu-core/hooks/01-setup_user.chroot b/live-build/ubuntu-core/hooks/01-setup_user.chroot index e9f3e2b1..04586c58 100755 --- a/live-build/ubuntu-core/hooks/01-setup_user.chroot +++ b/live-build/ubuntu-core/hooks/01-setup_user.chroot @@ -6,7 +6,7 @@ USER=ubuntu UGID=1000 echo "I: creating default user $USER" -adduser --gecos $USER --disabled-login $USER --uid $UGID +adduser --ingroup adm --ingroup sudo --gecos $USER --disabled-login $USER --uid $UGID chown -R $UGID:$UGID /home/$USER