mirror of
https://github.com/matrix-construct/construct
synced 2024-11-01 03:18:54 +01:00
8 lines
436 B
Bash
Executable file
8 lines
436 B
Bash
Executable file
#!/bin/sh
|
|
testdir=`pwd`
|
|
prefix=`sed -n -e 's/^#define IRCD_PREFIX "\(.*\)"/\1/p' "$testdir/../include/setup.h"`
|
|
[ -d $prefix ] || { echo Unable to find installation prefix; exit 1; }
|
|
|
|
$prefix/bin/charybdis -configfile $testdir/ircd.conf.1 -pidfile $testdir/ircd.pid.1
|
|
$prefix/bin/charybdis -configfile $testdir/ircd.conf.2 -pidfile $testdir/ircd.pid.2
|
|
$prefix/bin/charybdis -configfile $testdir/ircd.conf.3 -pidfile $testdir/ircd.pid.3
|