From 33b39700f75594c36a173113096ff05f369ce1b2 Mon Sep 17 00:00:00 2001 From: kapeka Date: Fri, 30 Jul 2004 17:44:16 +0000 Subject: [PATCH] solve start/stop issues with archaic leaf packaging system git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@1515 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- LrpN/etc/shorewall/start | 4 ++++ LrpN/etc/shorewall/stop | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/LrpN/etc/shorewall/start b/LrpN/etc/shorewall/start index c3b48057e..8f48d2565 100644 --- a/LrpN/etc/shorewall/start +++ b/LrpN/etc/shorewall/start @@ -4,3 +4,7 @@ # Add commands below that you want to be executed after shorewall has # been started or restarted. # +for file in /etc/shorewall/start.d/* ; do + run_user_exit $file +done + \ No newline at end of file diff --git a/LrpN/etc/shorewall/stop b/LrpN/etc/shorewall/stop index 78c5fa97b..f5be35a72 100644 --- a/LrpN/etc/shorewall/stop +++ b/LrpN/etc/shorewall/stop @@ -4,3 +4,7 @@ # Add commands below that you want to be executed at the beginning of a # "shorewall stop" command. # +for file in /etc/shorewall/stop.d/* ; do + run_user_exit $file +done + \ No newline at end of file