nixpkgs/nixos/modules/services/networking/ircd-hybrid/control.in

27 lines
676 B
Plaintext

#! @shell@ -e
# Make sure that the environment is deterministic.
export PATH=@coreutils@/bin
if test "$1" = "start"; then
if ! @procps@/bin/pgrep ircd; then
if @ipv6Enabled@; then
while ! @iproute@/sbin/ip addr |
@gnugrep@/bin/grep inet6 |
@gnugrep@/bin/grep global; do
sleep 1;
done;
fi;
rm -rf /home/ircd
mkdir -p /home/ircd
chown ircd: /home/ircd
cd /home/ircd
env - HOME=/homeless-shelter $extraEnv \
@su@/bin/su ircd --shell=/bin/sh -c ' @ircdHybrid@/bin/ircd -configfile @out@/conf/ircd.conf </dev/null -logfile /home/ircd/ircd.log' 2>&1 >/var/log/ircd-hybrid.out
fi;
fi
if test "$1" = "stop" ; then
@procps@/bin/pkill ircd;
fi;