From: cajus Date: Mon, 11 Feb 2008 07:42:19 +0000 (+0000) Subject: Removed bashisms from start script X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=de7b19f7f57a2877f2599943c4463711db012d5b;p=gosa.git Removed bashisms from start script git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@8797 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/contrib/scripts/start-gosa.sh b/contrib/scripts/start-gosa.sh index 508f7b22b..4fb078951 100755 --- a/contrib/scripts/start-gosa.sh +++ b/contrib/scripts/start-gosa.sh @@ -33,7 +33,7 @@ browser=$result dbrowser=$browser # Workaround for debian -if [ "$browser" == "iceweasel" ]; then +if [ "$browser" = "iceweasel" ]; then dbrowser=firefox fi @@ -41,7 +41,7 @@ fi if [ ! -d $HOME/.mozilla/$dbrowser/*.gosa ]; then echo "No browser profile found for GOsa - creating one..." $browser -CreateProfile gosa - if [ "$browser" == "iceweasel" ]; then + if [ "$browser" = "iceweasel" ]; then config=`echo $HOME/.mozilla/firefox/*.gosa/` else config=`echo $HOME/.mozilla/$dbrowser/*.gosa/`