diff --git a/hooks/common/91-install-fs-tools b/hooks/common/91-install-fs-tools index c8bcd58..c3af3cb 100755 --- a/hooks/common/91-install-fs-tools +++ b/hooks/common/91-install-fs-tools @@ -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