]> git.sur5r.net Git - bacula/bacula/commitdiff
Final changes
authorKern Sibbald <kern@sibbald.com>
Sun, 31 Dec 2006 17:40:31 +0000 (17:40 +0000)
committerKern Sibbald <kern@sibbald.com>
Sun, 31 Dec 2006 17:40:31 +0000 (17:40 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3880 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/examples/database/bacula-sqlite_2_mysqldump.sh
bacula/platforms/contrib-rpm/rpm_wizard.sh

index 4b7a703099bf024395400b1c5d34bcfa5a9c9eba..58f4dbf08f58767dbc63d2f62bcb18c346561d3a 100755 (executable)
@@ -7,7 +7,7 @@
 # Modified by Silas Bennett <silas.bennett_AT_ge.com>, April 2006 for use with Bacula 1.36.2
 #
 
-if [ $1 == '-h' ] || [ $1 == '--help' ] ; then
+if [ $1 = '-h' ] || [ $1 = '--help' ] ; then
        echo `basename "$0"`" Usage:"
        echo "  "`basename $0`" takes a ASCII bacula sqlite database dump as an argument,"
        echo "  and writes an SQL dump suitable for use with MySQL to STDOUT."
index c26b32342d073805b6438c7b383eb6a2429e1236..d5ca0d220d8d9f665b1f37a2835b9ef5ab1df255 100755 (executable)
@@ -20,7 +20,7 @@ fi
 zenity --question --text "Bacula rpm rebuilding wizard. Do you wish to continue?"
 
 RESULT="$?"
-if [ "$RESULT" == "1" ];
+if [ "$RESULT" = "1" ];
 then
         exit;
 fi
@@ -32,7 +32,7 @@ PACKAGER=`zenity --text-info --editable --height=25 --width=300 --title="Enter Y
 SELECTED_FILE=`zenity --file-selection --title "Choose SRPM file to rebuild"`
 
 RESULT="$?"
-if [ "$RESULT" == "1" ];
+if [ "$RESULT" = "1" ];
 then
         exit;
 fi
@@ -41,7 +41,7 @@ fi
 PLATFORM=`zenity --title "Select Platform" --text "Please choose a build platform." --list --radiolist --column "Select" --column "Platform" False rh7 False rh8 False rh9 False fc1 False fc3 False fc4 False fc5 False wb3 False rhel3 False rhel4 False centos3 False centos4 False su9 False su10 False mdk False mdv`
 
 RESULT="$?"
-if [ "$RESULT" == "1" ];
+if [ "$RESULT" = "1" ];
 then
         exit;
 fi
@@ -50,7 +50,7 @@ fi
 DATABASE=`zenity --title "Select Database" --text "Please choose database support." --list --radiolist --column "Select" --column "Platform" False sqlite False mysql False mysql4 False mysql5 False postgresql False client_only`
 
 RESULT="$?"
-if [ "$RESULT" == "1" ];
+if [ "$RESULT" = "1" ];
 then
         exit;
 fi
@@ -59,7 +59,7 @@ fi
 OPTIONS=`zenity --title "Select Options" --text "Please choose other options." --list --checklist --column "Select" --column "Platform" False build_wxconsole False nobuild_gconsole False build_x86_64 False build_python`
 
 RESULT="$?"
-if [ "$RESULT" == "1" ];
+if [ "$RESULT" = "1" ];
 then
         exit;
 fi
@@ -94,7 +94,7 @@ COMMAND="${COMMAND} ${SELECTED_FILE}"
 zenity --question --text "Ready to rebuild the src rpm with $COMMAND. Do you wish to continue?"
 
 RESULT="$?"
-if [ "$RESULT" == "1" ];
+if [ "$RESULT" = "1" ];
 then
         exit;
 fi