Commit 7f7e7220 authored by unknown's avatar unknown
Browse files

- made test for multiple --user options more sh-compatible

parent 11e07569
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ parse_arguments() {
      --datadir=*) DATADIR=`echo "$arg" | sed -e "s;--[^=]*=;;"` ;;
      --pid-file=*) pid_file=`echo "$arg" | sed -e "s;--[^=]*=;;"` ;;
      --user=*)
        if [ $SET_USER == 0 ]
        if test $SET_USER -eq 0
        then
          user=`echo "$arg" | sed -e "s;--[^=]*=;;"` ; SET_USER=1
        fi