summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 14:46:24 +0200
committerDaniel Baumann <daniel@debian.org>2007-09-23 14:46:24 +0200
commit6c1a2cfab139bb4a61e7bcf5f4cafe3b7498f64e (patch)
tree333a05a0a341c98203688dc4d01589340eca951c /bin
parenta4a7503df76005df67b006e1324004c808830c32 (diff)
downloadlive-boot-6c1a2cfab139bb4a61e7bcf5f4cafe3b7498f64e.tar.gz
live-boot-6c1a2cfab139bb4a61e7bcf5f4cafe3b7498f64e.zip
Adding casper 1.66+debian-1.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/casper-reconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/casper-reconfigure b/bin/casper-reconfigure
index 628bff3..7855210 100755
--- a/bin/casper-reconfigure
+++ b/bin/casper-reconfigure
@@ -47,6 +47,10 @@ if [ -z "$version" ]; then
exit 0
fi
-runcommandinroot "$root" dpkg-reconfigure -fnoninteractive --no-reload -phigh "$package"
+if [ "${BUILD_SYSTEM}" == "Debian" ]; then
+ runcommandinroot "$root" dpkg-reconfigure -fnoninteractive --no-reload -phigh "$package"
+else
+ runcommandinroot "$root" dpkg-reconfigure -fnoninteractive --no-reload "$package"
+fi
exit 0