1
0
mirror of synced 2026-02-15 11:46:05 +00:00

Fix quoting in hooks/common/91-install-fs-tools

This commit is contained in:
Axel Beckert
2013-01-21 16:32:10 +01:00
parent 6423a67982
commit a297aa4f5b

View File

@@ -28,13 +28,13 @@ logMessage Script $0 starting
#
# Install any required packages for the given root filesystem
#
if [ $has_xfs -eq 1 ]; then
if [ "$has_xfs" -eq 1 ]; then
installDebianPackage ${prefix} xfsprogs
fi
if [ $has_reiserfs -eq 1 ]; then
if [ "$has_reiserfs" -eq 1 ]; then
installDebianPackage ${prefix} reiserfsprogs
fi
if [ $has_btrfs -eq 1 ]; then
if [ "$has_btrfs" -eq 1 ]; then
installDebianPackage ${prefix} btrfs-tools
fi