* updated kmbox (21.12.1 -> 21.12.2), untested
[t2-trunk.git] / package / network / pureftpd / pureftpd.init
blob3f193b761ccf0dec91ed5f4de6989c91ecb21254
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/pureftpd/pureftpd.init
3 # Copyright (C) 2008 - 2021 The T2 SDE Project
4
5 # This Copyright note is generated by scripts/Create-CopyPatch,
6 # more information can be found in the files COPYING and README.
7
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License version 2.
10 # --- T2-COPYRIGHT-NOTE-END ---
12 # Desc: pure-ftp daemon
13 # Runlevel: 40 rcX
16 NAME=pureftpd
17 OPTIONS="-A -B -E -s -c 5"
18 PIDFILE=/var/run/pureftpd.pid
20 main_begin
22     block_begin(start, `Starting $NAME')
23         check(`D_prefix/sbin/pure-ftpd $OPTIONS -g $PIDFILE')
24     block_end
26     block_begin(stop, `Stopping $NAME')
27         check(`if [ -s $PIDFILE ] ; then
28                 kill $(cat $PIDFILE)
29         else
30                 echo "$NAME is not running or $PIDFILE disappeared."
31                 error=1
32         fi')
33     block_end
35     block_begin(restart, `Restarting $NAME')
36         check(`if [ -s $PIDFILE ] ; then
37                 kill -HUP $(cat $PIDFILE)
38         else
39                 echo "$NAME is not running or $PIDFILE disappeared."
40                 error=1
41         fi')
42     block_end
44    block_begin(status, `Checking $NAME')
45         check(`pid=$(pidof pure-ftpd)
46         if [ -n $pid ]; then
47                 echo -n "$NAME is running (PID $pid)"
48         else
49                 echo -n "$NAME is stopped"
50         fi')
51    block_end
52 main_end