[package] elfutils: package libelf and libdw, update to 0.152
[openwrt/svn-archive/archive.git] / net / pure-ftpd / files / pure-ftpd.init
index 8ac070343dd0d85864d7d3de05436be35d2cf9da..cb810b41fa14b1153e6d55b81316c650e3d44ed3 100644 (file)
 #!/bin/sh /etc/rc.common
-# Copyright (C) 2006 OpenWrt.org
+# Copyright (C) 2006-2011 OpenWrt.org
 START=50
 
-BIN=pure-ftpd
-DEFAULT=/etc/default/$BIN
-LOG_D=/var/log/$BIN
-RUN_D=/var/run
-PID_F=$RUN_D/$BIN.pid
-OPTIONS="-A -B -c 10 -C 4 -E -lunix -U 133:022 -g $PID_F -y 3:4"
-[ -f $DEFAULT ] && . $DEFAULT
+SSD=start-stop-daemon
+PIDF=/var/run/pure-ftpd.pid
+PROG=/usr/sbin/pure-ftpd
+
+append_bool() {
+       local section="$1"
+       local option="$2"
+       local value="$3"
+       local _val
+       config_get_bool _val "$section" "$option" '0'
+       [ "$_val" -gt 0 ] && append args "$3"
+}
+
+append_string() {
+       local section="$1"
+       local option="$2"
+       local value="$3"
+       local _val
+       config_get _val "$section" "$option"
+       [ -n "$_val" ] && append args "$3 $_val"
+}
+
+start_service() {
+       local section="$1"
+       args=""
+
+       append_string "$section" trustedgid "-a"
+       append_string "$section" syslogfacility "-f"
+       append_string "$section" fortunesfile "-F"
+       append_string "$section" maxidletime "-I"
+       append_string "$section" maxdiskusagepct "-k"
+       append_string "$section" limitrecursion "-L"
+       append_string "$section" anonymouscancreate "-M"
+       append_string "$section" maxload "-m"
+       append_string "$section" quota "-n"
+       append_string "$section" altlog "-O"
+       append_string "$section" passiveportrange "-p"
+       append_string "$section" forcepassiveip "-P"
+       append_string "$section" anonymousratio "-q"
+       append_string "$section" userratio "-Q"
+       append_string "$section" anonymousbandwidth "-t"
+       append_string "$section" userbandwidth "-T"
+       append_string "$section" minuid "-u"
+       append_string "$section" trustedip "-V"
+       append_string "$section" tls "-Y"
+       append_string "$section" tlsciphersuite "-J"
+
+       append_bool "$section" uploadscript "-o"
+       append_bool "$section" natmode "-N"
+       append_bool "$section" autorename "-r"
+       append_bool "$section" nochmod "-R"
+       append_bool "$section" antiwarez "-s"
+       append_bool "$section" allowuserfxp "-w"
+       append_bool "$section" allowanonymousfxp "-W"
+       append_bool "$section" prohibitdotfileswrite "-x"
+       append_bool "$section" prohibitdotfilesread "-X"
+       append_bool "$section" allowdotfiles "-z"
+       append_bool "$section" customerproof "-Z"
+       append_bool "$section" anonymouscantupload "-i"
+       append_bool "$section" createhomedir "-j"
+       append_bool "$section" keepallfiles "-K"
+       append_bool "$section" norename "-G"
+       append_bool "$section" dontresolve "-H"
+       append_bool "$section" verboselog "-d"
+       append_bool "$section" displaydotfiles "-D"
+       append_bool "$section" anonymousonly "-e"
+       append_bool "$section" brokenclientscompatibility "-b"
+       append_bool "$section" notruncate "-0"
+       append_bool "$section" logpid "-1"
+       append_bool "$section" ipv4only "-4"
+       append_bool "$section" ipv6only "-6"
+
+       append_string "$section" bind "-S"
+       append_string "$section" login "-l"
+
+       append_bool "$section" noanonymous "-E"
+       append_bool "$section" chrooteveryone "-A"
+       append_string "$section" maxclientsperip "-c"
+       append_string "$section" maxclientsnumber "-C"
+       append_string "$section" peruserlimits "-y"
+       append_string "$section" umask "-U"
+
+       append_string "$section" port "-S"
+       append_string "$section" authentication "-l"
+
+       config_get_bool "enabled" "$section" "enabled" '1'
+       [ "$enabled" -gt 0 ] && $SSD -S -p $PIDF -q -x $PROG -- -g $PIDF -B $args
+}
+
+stop_service() {
+       killall pure-ftpd 2>&1 > /dev/null
+
+       # FIXME: Fix Busybox start-stop-daemon to work with multiple PIDs
+       # $SSD -K -p $PIDF -q
+}
 
 start() {
-        mkdir -p $LOG_D
-        mkdir -p $RUN_D
-        $BIN $OPTIONS
+       config_load "pure-ftpd"
+       config_foreach start_service "pure-ftpd"
 }
 
 stop() {
-        [ -f $PID_F ] && kill $(cat $PID_F)
+       config_load "pure-ftpd"
+       config_foreach stop_service "pure-ftpd"
 }