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-im/silc-server/files/silcd.initd-r1

26 lines
625 B

#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
description="Server for Secure Internet Live Conferencing"
pidfile="/run/silcd.pid"
command="/usr/sbin/silcd"
command_args="-f /etc/silc/silcd.conf >/dev/null 2>&1"
start_stop_daemon_args="-w 2000"
depend() {
need net
use dns
}
start_pre() {
local silcdconf="/etc/silc/silcd.conf"
if [ ! -f "${silcdconf}" ] ; then
eerror "You need to set up a ${silcdconf} file in order to start the server."
eerror "You can find an example config in /usr/share/doc/silc-server*"
return 1
fi
}