]> xenbits.xensource.com Git - people/dariof/xen-tools.git/commitdiff
Fix quoting in hooks/common/91-install-fs-tools
authorAxel Beckert <abe@deuxchevaux.org>
Mon, 21 Jan 2013 15:32:10 +0000 (16:32 +0100)
committerAxel Beckert <abe@deuxchevaux.org>
Mon, 21 Jan 2013 15:32:10 +0000 (16:32 +0100)
hooks/common/91-install-fs-tools

index c8bcd586f3d409d51939dc1fe9db76f73164e477..c3af3cbe1c9562ca552053093aa4fe3ce7ad3feb 100755 (executable)
@@ -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