ssh-audit/src/ssh_audit/exitcodes.py
2020-10-11 14:41:58 -04:00

7 lines
222 B
Python

# 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