Use ${_arg}_postcmd even if we're not using the default ${_arg}_cmd method.

This commit is contained in:
lukem 2002-03-13 06:58:34 +00:00
parent 496665ab2c
commit 9bcc098690
1 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: rc.subr,v 1.43 2002/03/13 04:50:08 lukem Exp $
# $NetBSD: rc.subr,v 1.44 2002/03/13 06:58:34 lukem Exp $
#
# Copyright (c) 1997-2002 The NetBSD Foundation, Inc.
# All rights reserved.
@ -403,7 +403,10 @@ run_rc_command()
return 1
fi
eval $_cmd
if ! eval $_cmd && [ -z "$_rc_force_run" ]; then
return 1
fi
eval $_postcmd
return 0
fi