summaryrefslogtreecommitdiff
path: root/usr.sbin/rcctl/Makefile
diff options
context:
space:
mode:
authorAntoine Jacoutot <ajacoutot@cvs.openbsd.org>2014-08-19 14:08:21 +0000
committerAntoine Jacoutot <ajacoutot@cvs.openbsd.org>2014-08-19 14:08:21 +0000
commit70464e758425d2cab9dc0e15dae13f725d31eade (patch)
tree7b04b4d85d5e47a337d17131b03cb86509fda004 /usr.sbin/rcctl/Makefile
parent58ea17f3c4a18063688551f90c472a4233634055 (diff)
Introduce rcctl(8), a simple utility for maintaining rc.conf.local(8).
# rcctl usage: rcctl enable|disable|status|action [service [flags [...]]] Lots of man page improvement from the usual suspects (jmc@ and schwarze@) not hooked up yet but committing now so work can continue in-tree agreed by several
Diffstat (limited to 'usr.sbin/rcctl/Makefile')
-rw-r--r--usr.sbin/rcctl/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/usr.sbin/rcctl/Makefile b/usr.sbin/rcctl/Makefile
new file mode 100644
index 00000000000..53f124ce696
--- /dev/null
+++ b/usr.sbin/rcctl/Makefile
@@ -0,0 +1,11 @@
+# $OpenBSD: Makefile,v 1.1 2014/08/19 14:08:20 ajacoutot Exp $
+
+MAN= rcctl.8
+
+SCRIPT= rcctl.sh
+
+realinstall:
+ ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${.CURDIR}/${SCRIPT} ${DESTDIR}${BINDIR}/rcctl
+
+.include <bsd.prog.mk>