mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
10 lines
295 B
Bash
10 lines
295 B
Bash
#!/bin/sh
|
|
if [ $# -eq 0 -o x$1 = xstart ]; then
|
|
if [ -x !!PREFIX!!/news/bin/rc.news -a -f !!PREFIX!!/news/db/history.dir ]; then
|
|
limits -C news !!PREFIX!!/news/bin/rc.news && echo ' inn'
|
|
fi
|
|
fi
|
|
if [ x$1 = xstop ]; then
|
|
!!PREFIX!!/news/bin/ctlinnd shutdown machine is going down
|
|
fi
|