Date: Tue, 11 Apr 2017 16:25:23 +0200 From: =?UTF-8?Q?BERTRAND_Jo=c3=abl?= <joel.bertr...@systella.fr> Message-ID: <5e2b10c3-7812-b73f-9524-913da6cea...@systella.fr>
| /etc/rc.d/npf:# REQUIRE: root bootconf mountcritlocal tty network openvpn That's the one that is causing the loop. npf (on your system) requires openvpn, openvpn requires NETWORKING, and NETWORKING requires npf (actually the other way, npf is BEFORE: NETWORKING). The standard npf script doesn't require openvpn, so when that was added the loop was formed. That's all that's needed for you to fix things, decide which of npf and openvpm should start first, and make openvpn depend upon network rather that NETWORKING (or upon something that depends upon network if openvpn needs to start a bit later in the sequence). Then use rcorder /etc/rc.d/* and verify that the start order will be what you want, and adjust as needed. kre