diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-08-25 08:29:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-25 08:29:23 +0200 |
commit | ca6c3e44833d0de868997a9672a16779c1abf9d2 (patch) | |
tree | 21196a9d57f7afd6bc1439cfcbb86ee0dd4b2856 /python | |
parent | 9d68ce363d50a13246fcd7407795ef536501d296 (diff) | |
parent | ca1caa6c6effb82b22dad0db4c4f47247c3722ad (diff) | |
download | vyos-1x-ca6c3e44833d0de868997a9672a16779c1abf9d2.tar.gz vyos-1x-ca6c3e44833d0de868997a9672a16779c1abf9d2.zip |
Merge pull request #112 from alkersan/T1607_reset_ip_conntrack_rewrite
[op-mode] T1607 rewrite 'reset conntrack' and 'reset & show ip[v6]' to python/xml syntax
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/util.py | 15 |
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") |