Fix regression in previous commit.
authorajacoutot <ajacoutot@openbsd.org>
Sun, 4 Sep 2022 06:57:13 +0000 (06:57 +0000)
committerajacoutot <ajacoutot@openbsd.org>
Sun, 4 Sep 2022 06:57:13 +0000 (06:57 +0000)
Moving the configuration check to its own configtest function means rc_pre
exit code will now be that of the && list (sasyncd_flags).
Just do what isakmpd does and return 0.

from lucas at sexy dot is, thanks!

etc/rc.d/iked

index 8cfb786..44861ac 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/ksh
 #
-# $OpenBSD: iked,v 1.9 2022/08/29 19:14:25 ajacoutot Exp $
+# $OpenBSD: iked,v 1.10 2022/09/04 06:57:13 ajacoutot Exp $
 
 daemon="/sbin/iked"
 
@@ -15,6 +15,7 @@ rc_configtest() {
 rc_pre() {
        [[ ${sasyncd_flags} != NO ]] &&
                daemon_flags="-S ${daemon_flags}"
+       return 0
 }
 
 rc_cmd $1