ssh-audit/src/ssh_audit/exitcodes.py

7 lines
222 B
Python
Raw Normal View History

2020-10-11 20:41:58 +02:00
# The program return values corresponding to failure(s) encountered, warning(s) encountered, connection errors, and no problems found, respectively.
FAILURE = 3
WARNING = 2
CONNECTION_ERROR = 1
GOOD = 0
UNKNOWN_ERROR = -1