Roxen.git/
server/
start
Branch:
Tag:
Non-build tags
All tags
No tags
2002-11-03
2002-11-03 20:06:42 by Martin Nilsson <mani@lysator.liu.se>
4305dea66033309fad0b71c0125ac507d5655de7 (
11
lines) (+
8
/-
3
)
[
Show
|
Annotate
]
Branch:
Aphoto_2.0_beta3
Don't set VARDIR if already defined. Fixed bug in server dependency check.
Rev: server/start:1.206
1:
#!/bin/sh #
-
# $Id: start,v 1.
205
2002/
10
/
30
19
:
10
:
49
nilsson
Exp $
+
# $Id: start,v 1.
206
2002/
11
/
03
20
:
06
:
42
mani
Exp $
### If --silent-start is given as the first argument, ### nothing will be printed to stdout by the script.
65:
LOGDIR=../logs FILES="default" program=server_core/loader.pike
+
+
if [ "x$VARDIR" = "x" ] ; then
VARDIR=../var
-
+
else :; fi
+
LOCALDIR=../local SELF_TEST_DIR=data/test
763:
LS="`ls -lL \"$pike\" 2>/dev/null`" LS="$LS `cd pike_modules && find . -ls 2>/dev/null`" LS="$LS `cd server_core && find . -ls 2>/dev/null`"
-
LS="$LS `cd data/
includes
&& find . -ls 2>/dev/null`"
+
LS="$LS `cd data/
include
&& find . -ls 2>/dev/null`"
LS="$LS `cd plugins && find . -ls 2>/dev/null`" VERSION_DATA="$PIKEVERSION $DEFINES $LS `uname -m` `uname -r`"