69a8b3e4e9
+ it was not discussed first + it is not consistent with the rest of the rc.d system. everything else: - has defaults & example configuration in /etc/defaults/rc.conf - uses lower-case variable names, including ipmon itself Similar functionality added by the change I'm backing out may be reintroduced in the future once it's been changed to meet our de-facto rc.d standards, as opposed to something that appears to have been lifted from a non-NetBSD source (HP/UX ?) ...
19 lines
255 B
Bash
Executable File
19 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: ipmon,v 1.9 2002/04/18 05:02:01 lukem Exp $
|
|
#
|
|
|
|
# PROVIDE: ipmon
|
|
# REQUIRE: syslogd
|
|
# BEFORE: SERVERS
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ipmon"
|
|
rcvar=$name
|
|
command="/usr/sbin/${name}"
|
|
command_args="-D"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|