* live-build/ubuntu-core/hooks/00-uid-gid-fix.chroot_early:

- copy touch hacks to create needed userdirs (lightdm & usermetrics),
    the users are added by the script and not the usual postinst so their
    uderdirs are not created as they should
ubuntu/yakkety
Sebastien Bacher 10 years ago
parent eb41638781
commit 5fa4811051

4
debian/changelog vendored

@ -4,6 +4,10 @@ livecd-rootfs (2.317) UNRELEASED; urgency=medium
- create other needed directories - create other needed directories
* live-build/ubuntu-desktop-next/includes.chroot: * live-build/ubuntu-desktop-next/includes.chroot:
- copy ubuntu-core's include for /etc/hosts and resolv.conf config - copy ubuntu-core's include for /etc/hosts and resolv.conf config
* live-build/ubuntu-core/hooks/00-uid-gid-fix.chroot_early:
- copy touch hacks to create needed userdirs (lightdm & usermetrics),
the users are added by the script and not the usual postinst so their
uderdirs are not created as they should
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 19 Jun 2015 10:26:41 +0200 -- Sebastien Bacher <seb128@ubuntu.com> Fri, 19 Jun 2015 10:26:41 +0200

@ -277,6 +277,18 @@ if [ -n "$ERRCNT" ]; then
exit 1 exit 1
fi fi
# Create some missing directories
mkdir -p /var/lib/lightdm
chown lightdm:lightdm /var/lib/lightdm
chmod 750 /var/lib/lightdm
mkdir -p /var/lib/usermetrics
chown usermetrics:usermetrics /var/lib/usermetrics
chmod 750 /var/lib/usermetrics
echo "adjusting ownership of /var/log" >&2
chown root:syslog /var/log
ls -ln /var | grep log >&2
# Record the current state for later comparison # Record the current state for later comparison
for file in /etc/passwd /etc/shadow /etc/group /etc/gshadow; do for file in /etc/passwd /etc/shadow /etc/group /etc/gshadow; do

Loading…
Cancel
Save