summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorDmytro Aleksandrov <alkersan@gmail.com>2019-08-22 17:26:30 +0300
committerDmytro Aleksandrov <alkersan@gmail.com>2019-08-23 22:36:27 +0300
commitca1caa6c6effb82b22dad0db4c4f47247c3722ad (patch)
tree2a2bf3c7293897cbb23da07cc617463cd8111888 /python
parent2f3aa28f259ee7f23ef8a4a091db8ced2202bbd8 (diff)
downloadvyos-1x-ca1caa6c6effb82b22dad0db4c4f47247c3722ad.tar.gz
vyos-1x-ca1caa6c6effb82b22dad0db4c4f47247c3722ad.zip
[op-mode] T1607 rewrite 'reset conntrack', 'reset & show ip[v6]' to python/xml syntax
Diffstat (limited to 'python')
-rw-r--r--python/vyos/util.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py
index 6ab606983..88bb0c8f4 100644
--- a/python/vyos/util.py
+++ b/python/vyos/util.py
@@ -18,6 +18,7 @@ import re
import grp
import time
import subprocess
+import sys
import psutil
@@ -176,3 +177,17 @@ def wait_for_commit_lock():
while commit_in_progress():
time.sleep(1)
+def ask_yes_no(question, default=False) -> bool:
+ """Ask a yes/no question via input() and return their answer."""
+ default_msg = "[Y/n]" if default else "[y/N]"
+ while True:
+ sys.stdout.write("%s %s " % (question, default_msg))
+ c = input().lower()
+ if c == '':
+ return default
+ elif c in ("y", "ye", "yes"):
+ return True
+ elif c in ("n", "no"):
+ return False
+ else:
+ sys.stdout.write("Please respond with yes/y or no/n\n")