Improve parameter errors handling in Nagios mode

This commit is contained in:
Benjamin Renard 2017-09-12 12:58:43 +02:00
parent 6efc8f404f
commit 531a0a0861
1 changed files with 4 additions and 0 deletions

View File

@ -150,10 +150,14 @@ parser.add_option( "--replace-touch",
if not options.provider or not options.consumer:
print "You must provide provider and customer URI"
if options.nagios:
sys.exit(3)
sys.exit(1)
if not options.basedn:
print "You must provide base DN of connection to LDAP servers"
if options.nagios:
sys.exit(3)
sys.exit(1)
if options.touch and not options.attrs: