Deleted Added
full compact
rc.subr (178770) rc.subr (178775)
1# $NetBSD: rc.subr,v 1.67 2006/10/07 11:25:15 elad Exp $
1# $NetBSD: rc.subr,v 1.67 2006/10/07 11:25:15 elad Exp $
2# $FreeBSD: head/etc/rc.subr 178770 2008-05-05 07:43:48Z mtm $
2# $FreeBSD: head/etc/rc.subr 178775 2008-05-05 15:50:20Z maxim $
3#
4# Copyright (c) 1997-2004 The NetBSD Foundation, Inc.
5# All rights reserved.
6#
7# This code is derived from software contributed to The NetBSD Foundation
8# by Luke Mewburn.
9#
10# Redistribution and use in source and binary forms, with or without

--- 163 unchanged lines hidden (view full) ---

174 case $1 in
175 # "yes", "true", "on", or "1"
176 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
177 always=true
178 ;;
179 *)
180 always=false
181 ;;
3#
4# Copyright (c) 1997-2004 The NetBSD Foundation, Inc.
5# All rights reserved.
6#
7# This code is derived from software contributed to The NetBSD Foundation
8# by Luke Mewburn.
9#
10# Redistribution and use in source and binary forms, with or without

--- 163 unchanged lines hidden (view full) ---

174 case $1 in
175 # "yes", "true", "on", or "1"
176 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
177 always=true
178 ;;
179 *)
180 always=false
181 ;;
182 fi
182 esac
183 if [ "$autoboot" = yes -o "$always" = true ]; then
184 echo "ERROR: ABORTING BOOT (sending SIGTERM to parent)!"
185 kill -TERM ${RC_PID}
186 fi
187 exit 1
188}
189
190#

--- 1397 unchanged lines hidden ---
183 if [ "$autoboot" = yes -o "$always" = true ]; then
184 echo "ERROR: ABORTING BOOT (sending SIGTERM to parent)!"
185 kill -TERM ${RC_PID}
186 fi
187 exit 1
188}
189
190#

--- 1397 unchanged lines hidden ---