summaryrefslogtreecommitdiffstats
path: root/src/ssh_audit/exitcodes.py
blob: 5392f1d5c09ac082791dcf858af5fe8c5ef38491 (plain)
1
2
3
4
5
6
# 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