Missed adding verbose to a couple of IPAClient invocations.

443987
This commit is contained in:
Rob Crittenden 2008-06-11 14:31:52 -04:00
parent b3ca8359ee
commit 8752ebd185
4 changed files with 4 additions and 4 deletions

View File

@ -90,7 +90,7 @@ def main():
if not options.attributes or not options.source or not options.target:
usage()
client = ipaclient.IPAClient()
client = ipaclient.IPAClient(verbose=options.verbose)
source_grp = client.find_groups(options.source)
counter = source_grp[0]

View File

@ -88,7 +88,7 @@ def main():
if not options.attributes and not options.source and not options.target:
usage()
client = ipaclient.IPAClient()
client = ipaclient.IPAClient(verbose=options.verbose)
# first do some sanity checking

View File

@ -125,7 +125,7 @@ def main():
elif ((options.desc or options.addattr or options.delattr or options.setattr) and (len(args) != 2)):
usage()
client = ipaclient.IPAClient()
client = ipaclient.IPAClient(verbose=options.verbose)
if options.add:
group = get_group(client, options, args[2])
if group is None:

View File

@ -114,7 +114,7 @@ def main():
username = args[1]
client = ipaclient.IPAClient()
client = ipaclient.IPAClient(verbose=options.verbose)
try:
attrs = ['*']