summaryrefslogtreecommitdiffstats
path: root/src/ifplugd.action
diff options
context:
space:
mode:
Diffstat (limited to 'src/ifplugd.action')
-rwxr-xr-xsrc/ifplugd.action5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ifplugd.action b/src/ifplugd.action
index 9716bce..617902f 100755
--- a/src/ifplugd.action
+++ b/src/ifplugd.action
@@ -44,7 +44,10 @@ case "$2" in
;;
down)
if [[ -e "$PROFILE_FILE" ]]; then
- "$SUBR_DIR/network" stop "$(< "$PROFILE_FILE")" && rm -f "$PROFILE_FILE"
+ if ForceConnect=yes "$SUBR_DIR/network" stop "$(< "$PROFILE_FILE")"; then
+ rm -f "$PROFILE_FILE"
+ exit 0
+ fi
fi
;;
*)