mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-11 13:17:21 +00:00
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.
14 lines
562 B
Bash
Executable File
14 lines
562 B
Bash
Executable File
#! /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
|