1
0
mirror of https://github.com/jtesta/ssh-audit.git synced 2025-07-04 04:52:49 -05:00

Added PyPI package support.

This commit is contained in:
Joe Testa
2019-09-04 15:05:07 -04:00
parent bce9e2b152
commit eac81455a9
6 changed files with 62 additions and 1 deletions

View File

@ -3012,6 +3012,10 @@ def audit(aconf, sshv=None):
utils = Utils()
out = Output()
if __name__ == '__main__': # pragma: nocover
def main():
conf = AuditConf.from_cmdline(sys.argv[1:], usage)
audit(conf)
if __name__ == '__main__': # pragma: nocover
main()