pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/sysutils/cfengine2/files Add startup files missed on u...
details: https://anonhg.NetBSD.org/pkgsrc/rev/c72e69915d70
branches: trunk
changeset: 479665:c72e69915d70
user: ben <ben%pkgsrc.org@localhost>
date: Thu Aug 19 17:13:36 2004 +0000
description:
Add startup files missed on update to version 2.0.10.
diffstat:
sysutils/cfengine2/files/cfenvd.sh | 15 +++++++++++++
sysutils/cfengine2/files/cfexecd.sh | 42 +++++++++++++++++++++++++++++++++++++
sysutils/cfengine2/files/cfservd.sh | 16 ++++++++++++++
3 files changed, 73 insertions(+), 0 deletions(-)
diffs (85 lines):
diff -r a37e674087dd -r c72e69915d70 sysutils/cfengine2/files/cfenvd.sh
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/cfengine2/files/cfenvd.sh Thu Aug 19 17:13:36 2004 +0000
@@ -0,0 +1,15 @@
+#!@RCD_SCRIPTS_SHELL@
+#
+# $NetBSD: cfenvd.sh,v 1.1 2004/08/19 17:13:36 ben Exp $
+
+# PROVIDE: cfenvd
+# REQUIRE: cfexecd
+
+. /etc/rc.subr
+
+name="cfenvd"
+rcvar=$name
+command="@PREFIX@/sbin/${name}"
+
+load_rc_config $name
+run_rc_command "$1"
diff -r a37e674087dd -r c72e69915d70 sysutils/cfengine2/files/cfexecd.sh
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/cfengine2/files/cfexecd.sh Thu Aug 19 17:13:36 2004 +0000
@@ -0,0 +1,42 @@
+#!@RCD_SCRIPTS_SHELL@
+#
+# $NetBSD: cfexecd.sh,v 1.1 2004/08/19 17:13:36 ben Exp $
+#
+# start script for cfexecd
+
+# PROVIDE: cfexecd
+# REQUIRE: network
+
+. /etc/rc.subr
+
+name="cfexecd"
+rcvar=$name
+command="@PREFIX@/sbin/${name}"
+required_files="/var/cfengine/inputs/update.conf"
+extra_commands="keygen reload"
+
+cfexecd_keygen()
+{
+ (
+ umask 022
+ if [ -f /var/cfengine/ppkeys/localhost.priv ]; then
+ echo "You already have a host key" \
+ "in /var/cfengine/ppkeys/localhost.priv"
+ else
+ @PREFIX@/sbin/cfkey
+ fi
+ )
+}
+
+cfexecd_precmd()
+{
+ if [ ! -f /var/cfengine/ppkeys/localhost.priv ]; then
+ run_rc_command keygen
+ fi
+}
+
+keygen_cmd=cfexecd_keygen
+start_precmd=cfexecd_precmd
+
+load_rc_config $name
+run_rc_command "$1"
diff -r a37e674087dd -r c72e69915d70 sysutils/cfengine2/files/cfservd.sh
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/cfengine2/files/cfservd.sh Thu Aug 19 17:13:36 2004 +0000
@@ -0,0 +1,16 @@
+#!@RCD_SCRIPTS_SHELL@
+#
+# $NetBSD: cfservd.sh,v 1.1 2004/08/19 17:13:36 ben Exp $
+
+# PROVIDE: cfservd
+# REQUIRE: cfexecd
+
+. /etc/rc.subr
+
+name="cfservd"
+rcvar=$name
+command="@PREFIX@/sbin/${name}"
+required_files="/var/cfengine/inputs/cfservd.conf"
+
+load_rc_config $name
+run_rc_command "$1"
Home |
Main Index |
Thread Index |
Old Index