Make sure buildd images have a /usr/sbin/policy-rc.d symlink

Installing policyrcd-script-zg2 doesn't quite do this because of the way
that live-build installs its own temporary version of policy-rc.d.  The
only remotely sensible way I can see to deal with this is to create the
symlink manually.
snap-tool-base-none
Colin Watson 6 years ago
parent 5376c013a7
commit 3b22ad381a

6
debian/changelog vendored

@ -1,3 +1,9 @@
livecd-rootfs (2.563) UNRELEASED; urgency=medium
* Make sure buildd images have a /usr/sbin/policy-rc.d symlink.
-- Colin Watson <cjwatson@ubuntu.com> Mon, 18 Feb 2019 14:55:41 +0000
livecd-rootfs (2.562) disco; urgency=medium
* subiquity: make subiqutiy_config.mount optional

@ -0,0 +1,13 @@
#! /bin/sh
set -e
# Put the /usr/sbin/policy-rc.d alternatives symlink in place. Ordinarily
# update-alternatives ought to create this when policyrcd-script-zg2 is
# installed, but that doesn't work because live-build has already installed
# a dummy one at that point. The simplest approach is to repair the
# situation by putting it in place here.
if [ -L binary/etc/alternatives/policy-rc.d ] && \
[ ! -e binary/usr/sbin/policy-rc.d ] && \
[ ! -L binary/usr/sbin/policy-rc.d ]; then
ln -s /etc/alternatives/policy-rc.d binary/usr/sbin/policy-rc.d
fi
Loading…
Cancel
Save