You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-ftp/vsftpd/files/vsftpd.init-3.0.5

20 lines
409 B

#!/sbin/openrc-run
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License, v2
instance=${RC_SVCNAME#*.}
: ${command=/usr/sbin/vsftpd}
command_background=true
if [ "${instance}" = "${RC_SVCNAME}" ]; then
: ${pidfile=/run/vsftpd.pid}
else
: ${command_args=/etc/vsftpd/${instance}.conf}
: ${pidfile=/run/vsftpd.${instance}.pid}
fi
depend() {
use dns logger net
}