Add FreeBSD rc script

I'm expecting to also have an OpenBSD rc script.
This commit is contained in:
C. McEnroe 2020-08-15 17:40:08 -04:00
parent 1e1a848f22
commit f67269202e
2 changed files with 34 additions and 4 deletions

21
FreeBSD/catsitd.in Normal file
View File

@ -0,0 +1,21 @@
#!/bin/sh
# PROVIDE: catsitd
# REQUIRE: LOGIN
# KEYWORD: shutdown
. /etc/rc.subr
name="catsitd"
rcvar="${name}_enable"
extra_commands="reload"
load_rc_config $name
: ${catsitd_enable:="NO"}
command="%%PREFIX%%/sbin/${name}"
pidfile="/var/run/${name}.pid"
command_args="-p ${pidfile}"
run_rc_command "$1"

View File

@ -6,6 +6,8 @@ RUNDIR ?= /var/run
CFLAGS += -std=c99 -Wall -Wextra -Wpedantic
CFLAGS += -D'ETCDIR="${ETCDIR}"' -D'RUNDIR="${RUNDIR}"'
RC = FreeBSD/catsitd
-include config.mk
BINS = catsit catsitd
@ -27,13 +29,19 @@ ${OBJS}: daemon.h
tags: *.c *.h
ctags -w *.c *.h
clean:
rm -f ${BINS} ${OBJS} tags
.SUFFIXES: .in
install: ${BINS} ${MAN5} ${MAN8}
install -d ${DESTDIR}${PREFIX}/sbin
.in:
sed -e 's|%%PREFIX%%|${PREFIX}|g' $< > $@
clean:
rm -f ${BINS} ${OBJS} ${RC} tags
install: ${BINS} ${RC} ${MAN5} ${MAN8}
install -d ${DESTDIR}${PREFIX}/sbin ${DESTDIR}${ETCDIR}/rc.d
install -d ${DESTDIR}${MANDIR}/man5 ${DESTDIR}${MANDIR}/man8
install ${BINS} ${DESTDIR}${PREFIX}/sbin
install ${RC} ${DESTDIR}${ETCDIR}/rc.d
install -m 644 ${MAN5} ${DESTDIR}${MANDIR}/man5
install -m 644 ${MAN8} ${DESTDIR}${MANDIR}/man8
@ -41,3 +49,4 @@ uninstall:
rm -f ${BINS:%=${DESTDIR}${PREFIX}/sbin/%}
rm -f ${MAN5:%=${DESTDIR}${MANDIR}/man5/%}
rm -f ${MAN8:%=${DESTDIR}${MANDIR}/man8/%}
rm -f ${DESTDIR}${ETCDIR}/rc.d/catsitd