[5/5] network startup: Always cleanup before red gets started
Commit Message
There is no sense in doing this only in /etc/init.d/network
and not in /etc/init.d/networking/red
This files should be always deleted before a startup
Signed-off-by: Jonatan Schlag <jonatan.schlag@ipfire.org>
---
src/initscripts/networking/red | 3 +++
src/initscripts/system/network | 6 +-----
2 files changed, 4 insertions(+), 5 deletions(-)
@@ -80,6 +80,9 @@ fi
case "${1}" in
start)
+ # Remove possible leftover files
+ rm -f /var/ipfire/red/{active,device,dial-on-demand,dns1,dns2,local-ipaddress,remote-ipaddress,resolv.conf}
+
if [ "${DEVICE}" != "${GREEN_DEV}" ] && [ "${DEVICE}" != "" ]; then
boot_mesg "Bringing up the ${DEVICE} interface..."
boot_mesg_flush
@@ -62,11 +62,7 @@ case "${DO}" in
/etc/rc.d/init.d/networking/orange start
# RED
- if [ "$red" == "1" ]; then
- # Remove possible leftover files
- rm -f /var/ipfire/red/{active,device,dial-on-demand,dns1,dns2,local-ipaddress,remote-ipaddress,resolv.conf}
- /etc/rc.d/init.d/networking/red start
- fi
+ [ "$red" == "1" ] && /etc/rc.d/init.d/networking/red start
# Create IPsec interfaces
/usr/local/bin/ipsec-interfaces