blob: 9e01bcfd65205685b7fbf635cd2aea36a3e493f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Shell function library to start and stop remctld
#
# Written by Russ Allbery <rra@stanford.edu>
# Copyright 2009 Board of Trustees, Leland Stanford Jr. University
#
# See LICENSE for licensing terms.
# Start remctld. Takes the path to remctld, which may be found via configure,
# and the path to the configuration file.
remctld_start () {
local keytab principal
rm -f "$BUILD/data/remctld.pid"
keytab=`test_file_path data/test.keytab`
principal=`test_file_path data/test.principal`
principal=`cat "$principal" 2>/dev/null`
if [ -z "$keytab" ] || [ -z "$principal" ] ; then
return 1
fi
if [ -n "$VALGRIND" ] ; then
( "$VALGRIND" --log-file=valgrind.%p --leak-check=full "$1" -m \
-p 14373 -s "$principal" -P "$BUILD/data/remctld.pid" -f "$2" -d \
-S -F -k "$keytab" &)
[ -f "$BUILD/data/remctld.pid" ] || sleep 5
else
( "$1" -m -p 14373 -s "$principal" -P "$BUILD/data/remctld.pid" \
-f "$2" -d -S -F -k "$keytab" &)
fi
[ -f "$BUILD/data/remctld.pid" ] || sleep 1
if [ ! -f "$BUILD/data/remctld.pid" ] ; then
bail 'remctld did not start'
fi
}
# Stop remctld and clean up.
remctld_stop () {
if [ -f "$BUILD/data/remctld.pid" ] ; then
kill -TERM `cat "$BUILD/data/remctld.pid"`
rm -f "$BUILD/data/remctld.pid"
fi
}
|