mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
Don't show tracebacks on Control-C.
This commit is contained in:
@@ -270,4 +270,7 @@ if __name__ == "__main__":
|
|||||||
except errors.AnsibleError, e:
|
except errors.AnsibleError, e:
|
||||||
display("ERROR: %s" % e, color='red', stderr=True)
|
display("ERROR: %s" % e, color='red', stderr=True)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
except KeyboardInterrupt, ke:
|
||||||
|
display("ERROR: interrupted", color='red', stderr=True)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user