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

- port static uid/gid setup from ubuntu-touch
* live-build/ubuntu-core/hooks/15-pycompile-snappy.chroot:
  - byte compile .pyc files for snappy
ubuntu/yakkety
Michael Vogt 10 years ago
parent 4fbd8cd88a
commit d1b1d9e6c1

9
debian/changelog vendored

@ -1,3 +1,12 @@
livecd-rootfs (2.275+ppa1) vivid; urgency=low
* live-build/ubuntu-core/hooks/00-uid-gid-fix.chroot_early:
- port static uid/gid setup from ubuntu-touch
* live-build/ubuntu-core/hooks/15-pycompile-snappy.chroot:
- byte compile .pyc files for snappy
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 07 Jan 2015 09:36:11 +0100
livecd-rootfs (2.275) vivid; urgency=low
[ Michael Vogt ]

@ -10,3 +10,24 @@ echo "I: set user $USER password to $USER"
echo "$USER:$USER" | chpasswd
chown -R $UGID:$UGID /home/$USER
# Enable libnss-extrusers
sed -i 's/^group:.*compat/\0 extrausers/' /etc/nsswitch.conf
sed -i 's/^passwd:.*compat/\0 extrausers/' /etc/nsswitch.conf
sed -i 's/^shadow:.*compat/\0 extrausers/' /etc/nsswitch.conf
# Move user from /etc to extrausers location
grep "^$USER" /etc/group >> /var/lib/extrausers/group
grep "^$USER" /etc/passwd >> /var/lib/extrausers/passwd
grep "^$USER" /etc/shadow >> /var/lib/extrausers/shadow
grep "^$USER" /etc/gshadow >> /var/lib/extrausers/gshadow
chmod 0644 /var/lib/extrausers/group
chmod 0644 /var/lib/extrausers/passwd
chmod 0640 /var/lib/extrausers/shadow
chmod 0640 /var/lib/extrausers/gshadow
chown root:shadow /var/lib/extrausers/shadow
chown root:shadow /var/lib/extrausers/gshadow
sed -i "/^$USER/d" /etc/group
sed -i "/^$USER/d" /etc/passwd
sed -i "/^$USER/d" /etc/shadow
sed -i "/^$USER/d" /etc/gshadow

@ -0,0 +1,6 @@
#!/bin/sh
set -e
# ensure python create the byte .pyc files for snappy
snappy -v
Loading…
Cancel
Save