mirror of
https://github.com/jtesta/ssh-audit.git
synced 2024-11-16 13:35:39 +01:00
7 lines
222 B
Python
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
|