diff options
author | GomathiselviS <gomathiselvi@gmail.com> | 2021-03-25 21:06:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-26 01:06:01 +0000 |
commit | c936f0c6d7138e23f4d8c14c4bb1c5727ab303fc (patch) | |
tree | 84f3406b82b193477311737d01cf0fa833ac51a9 /plugins | |
parent | c3b2d036bd0c0bf8d338123375a7bcc7de809f34 (diff) | |
download | vyos.vyos-c936f0c6d7138e23f4d8c14c4bb1c5727ab303fc.tar.gz vyos.vyos-c936f0c6d7138e23f4d8c14c4bb1c5727ab303fc.zip |
Add regex to match the 'delete' failures (#134)
Add regex to match the 'delete' failures
Reviewed-by: https://github.com/apps/ansible-zuul
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/terminal/vyos.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/terminal/vyos.py b/plugins/terminal/vyos.py index bf9d87b..0b5e74b 100644 --- a/plugins/terminal/vyos.py +++ b/plugins/terminal/vyos.py @@ -38,6 +38,7 @@ class TerminalModule(TerminalBase): re.compile(br"\n\s*Invalid command:"), re.compile(br"\nCommit failed"), re.compile(br"\n\s+Set failed"), + re.compile(br"\n\s+Delete failed"), ] ansi_re = TerminalBase.ansi_re + [ |