1
0
mirror of synced 2026-01-19 09:08:30 +00:00

2006-05-26 15:17:57 by steve

Install libc6-xen on sid/etch systems.
This commit is contained in:
steve 2006-05-26 15:17:57 +00:00
parent 52fc5712f3
commit ebd526bb0d

View File

@ -13,10 +13,74 @@ dist=$2
#
# This script doesn't do anything different on a per-distribution basis
# Disable TLS and create an empty directory.
#
function disableTLS
{
mv ${prefix}/lib/tls ${prefix}/lib/tls.disabled
mkdir ${prefix}/lib/tls
}
#
# Install a Debian package onto the new system.
#
function installDebianPackage
{
package=$1
DEBIAN_FRONTEND=noninteractive chroot ${prefix} /usr/bin/apt-get --yes --force-yes install ${package}
}
mv ${prefix}/lib/tls ${prefix}/lib/tls.disabled
mkdir ${prefix}/lib/tls
#
# This function will disable TLS and install 'libc6-xen' on sid/etch
# systems.
#
function setupDebian
{
disableTLS
#
# For sid + etch systems install libc6-xen
#
case "${dist}" in
etch|sid)
installDebianPackage libc6-xen
installDebianPackage libc6-xen
;;
esac
}
#
# Handle CentOS
#
function setupCentOS4
{
disableTLS
}
#
# Entry point to the script.
#
case "${dist}" in
sarge|etch|sid)
setupDebian
;;
centos4)
setupCentOS4
;;
*)
echo "Unknown distribution '${dist}'. Fixme";
exit;
;;
esac