From d4dd5b3a8a1c72c5f52dfdfc7a719ab6e6b412f6 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 2 Sep 2016 20:42:01 +0200 Subject: [PATCH] * live-build/ubuntu-core/hooks/01-setup_user.chroot: - do not create "ubuntu" user for ubuntu-core anymore, the * live-build/ubuntu-core/hooks/02-add_user_to_groups.chroot - dropped --- debian/changelog | 7 +++++-- live-build/ubuntu-core/hooks/02-add_user_to_groups.chroot | 8 -------- 2 files changed, 5 insertions(+), 10 deletions(-) delete mode 100755 live-build/ubuntu-core/hooks/02-add_user_to_groups.chroot 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}