summaryrefslogtreecommitdiffstats
path: root/ipa-admintools
diff options
context:
space:
mode:
authorRob Crittenden <rcrit@ipa.greyoak.com>2008-06-11 14:31:52 -0400
committerRob Crittenden <rcrit@ipa.greyoak.com>2008-06-11 16:29:12 -0400
commit8752ebd185526e623d2ad0d3477c7ba0274d5d3d (patch)
treef55ffad71039811ca963429e377f4ade492e60a6 /ipa-admintools
parentb3ca8359ee332facd6ff131f322f57b024974be0 (diff)
downloadfreeipa-8752ebd185526e623d2ad0d3477c7ba0274d5d3d.tar.gz
freeipa-8752ebd185526e623d2ad0d3477c7ba0274d5d3d.tar.xz
freeipa-8752ebd185526e623d2ad0d3477c7ba0274d5d3d.zip
Missed adding verbose to a couple of IPAClient invocations.
443987
Diffstat (limited to 'ipa-admintools')
-rw-r--r--ipa-admintools/ipa-adddelegation2
-rw-r--r--ipa-admintools/ipa-moddelegation2
-rw-r--r--ipa-admintools/ipa-modgroup2
-rw-r--r--ipa-admintools/ipa-moduser2
4 files changed, 4 insertions, 4 deletions
diff --git a/ipa-admintools/ipa-adddelegation b/ipa-admintools/ipa-adddelegation
index fa855e2cf..640614d93 100644
--- a/ipa-admintools/ipa-adddelegation
+++ b/ipa-admintools/ipa-adddelegation
@@ -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]
diff --git a/ipa-admintools/ipa-moddelegation b/ipa-admintools/ipa-moddelegation
index f1498a94c..e52d9fa4c 100644
--- a/ipa-admintools/ipa-moddelegation
+++ b/ipa-admintools/ipa-moddelegation
@@ -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
diff --git a/ipa-admintools/ipa-modgroup b/ipa-admintools/ipa-modgroup
index 0d09342cd..327e80b36 100644
--- a/ipa-admintools/ipa-modgroup
+++ b/ipa-admintools/ipa-modgroup
@@ -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:
diff --git a/ipa-admintools/ipa-moduser b/ipa-admintools/ipa-moduser
index db609a14d..b77fede9a 100644
--- a/ipa-admintools/ipa-moduser
+++ b/ipa-admintools/ipa-moduser
@@ -114,7 +114,7 @@ def main():
username = args[1]
- client = ipaclient.IPAClient()
+ client = ipaclient.IPAClient(verbose=options.verbose)
try:
attrs = ['*']