blob: b8e9a3d62534392c9d3144a35cec3d74959697e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
#
# Copyright (C) 2001 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $Id$
# $FML$
#
default_prefix=/usr/local
libexec_dir=$default_prefix/libexec/fml
exec $libexec_dir/fmlticket $*
echo 'not reach here'
exit 0;
|