Files
for-gentoo/net-ftp/proftpd/files/proftpd.initd
T
Sławomir Nizio a5e7d8e5f3 [net-ftp/proftpd] add patch to fix sandbox violation on some configurations
It happens on amd64 when some bits of /usr/lib/rpm exist on the system
(or always on this arch?) if rpm is installed.
It's a bit incomplete, patched just to make it work and can be improved
later...
2011-11-16 01:20:17 +01:00

53 lines
1.5 KiB
Plaintext

#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/files/proftpd.initd,v 1.4 2011/09/28 09:47:22 voyageur Exp $
extra_started_commands="reload"
depend() {
need net
use logger dns mysql postgresql antivirus
}
check_configuration() {
if [ ! -e /etc/proftpd/proftpd.conf ] ; then
eerror "To execute the ProFTPD server you need a /etc/proftpd/proftpd.conf configuration"
eerror "file. In /etc/proftpd you can find a sample configuration."
return 1
fi
/usr/sbin/proftpd -t &>/dev/null
if [ $? -ne 0 ] ; then
eerror "The ProFTPD configuration file /etc/proftpd/proftpd.conf is invalid! You have to"
eerror "fix your configuration in order to run the ProFTPD server. For more information"
eerror "you may execute the ProFTPD configuration check '/usr/sbin/proftpd -t'."
return 2
fi
}
start() {
[ -d /var/run/proftpd ] || mkdir /var/run/proftpd
[ "${RC_CMD}" = "restart" ] || check_configuration || return 1
ebegin "Starting ProFTPD"
start-stop-daemon --start --quiet \
--exec /usr/sbin/proftpd \
--pidfile /var/run/proftpd/proftpd.pid
eend $?
}
stop() {
[ "${RC_CMD}" != "restart" ] || check_configuration || return 1
ebegin "Stopping ProFTPD"
start-stop-daemon --stop --quiet --retry 20 \
--pidfile /var/run/proftpd/proftpd.pid
eend $?
}
reload() {
check_configuration || return 1
ebegin "Reloading ProFTPD"
start-stop-daemon --quiet --signal HUP \
--pidfile /var/run/proftpd/proftpd.pid
eend $?
}