summaryrefslogtreecommitdiff
path: root/regress/ticket/close.sh
blob: ecef0234062676de27b3d04896066886061f3eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
# $FML: close.sh,v 1.1 2001/02/16 11:31:11 fukachan Exp $
#

tmp=/tmp/$$
pwd=`pwd`

trap "rm -f $tmp" 0 1 3 15

cd ../.. || exit 1;

/usr/local/libexec/fml/fmlticket \
		--params pwd=$PWD \
		-c $pwd/main.cf \
		-R open \
		close /var/spool/ml/elena $*

exit 0;