* 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
This commit is contained in:
Michael Vogt 2016-09-02 20:42:01 +02:00
parent 5f9521d65f
commit d4dd5b3a8a
2 changed files with 5 additions and 10 deletions

7
debian/changelog vendored
View File

@ -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 <michael.vogt@ubuntu.com> Fri, 02 Sep 2016 17:03:57 +0200

View File

@ -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}