diff --git a/debian/changelog b/debian/changelog index 0daf34be..c664e81a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,10 @@ livecd-rootfs (2.430) UNRELEASED; urgency=medium - * do not create "ubuntu" user for ubuntu-core anymore, the - console-conf package will create this user now + * live-build/ubuntu-core/hooks/01-setup_user.chroot: + - do not create "ubuntu" user for ubuntu-core anymore, the + console-conf package will create this user now + * live-build/ubuntu-core/hooks/02-add_user_to_groups.chroot + - dropped -- Michael Vogt Fri, 02 Sep 2016 17:03:57 +0200 diff --git a/live-build/ubuntu-core/hooks/02-add_user_to_groups.chroot b/live-build/ubuntu-core/hooks/02-add_user_to_groups.chroot deleted file mode 100755 index 104cd44c..00000000 --- a/live-build/ubuntu-core/hooks/02-add_user_to_groups.chroot +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -x - -USER=ubuntu - -DEFGROUPS="docker,sudo" - -echo "I: add $USER to ($DEFGROUPS) group(s)" -usermod -a -G ${DEFGROUPS} ${USER}