diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/casper-reconfigure | 6 |
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 |
