summarylogtreecommitdiffstats
path: root/MSUStart
blob: b56dabbde86379140ca01b142a21b34b6be10521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

URL="http://localhost:8845/MSU/JumpPage.php?Target=StoragePage"
BROWSER=`which firefox`
RETVAL=0

if [ "x$BROWSER" = "x" ]
then
    echo
    echo "Please install Mozilla Firefox or manually visit http://localhost:8845/."
    echo
else
    $BROWSER $URL >/dev/null 2>&1 &
fi