summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/vyatta-clear-conntrack8
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/vyatta-clear-conntrack b/scripts/vyatta-clear-conntrack
index 99874a3..0979e4a 100644
--- a/scripts/vyatta-clear-conntrack
+++ b/scripts/vyatta-clear-conntrack
@@ -55,8 +55,12 @@ get_response () {
response=''
while [ -z "$response" ]
do
- echo -ne "\nThis will clear all currently tracked and expected connections. Continue? (Y/N) [N]: "
- response=$(get_response "N" "Y N")
+ if [ "$VYATTA_PROCESS_CLIENT" == "gui2_rest" ]; then
+ response="y"
+ else
+ echo -ne "\nThis will clear all currently tracked and expected connections. Continue? (Y/N) [N]: "
+ response=$(get_response "N" "Y N")
+ fi
if [ "$response" == "n" ]; then
exit 1
else