summaryrefslogtreecommitdiff
path: root/source4/scripting/bin
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2011-10-12 23:19:12 +0200
committerJelmer Vernooij <jelmer@samba.org>2011-10-13 00:23:39 +0200
commit63c9186e92ae2c7f1f7383352cc95d38b2efc45a (patch)
tree0f20a60286a1d7c4198ebe79231dc1218c0fe82b /source4/scripting/bin
parentfba4b7a5b9cba2c5319793fcf8bda9767836419e (diff)
downloadsamba-63c9186e92ae2c7f1f7383352cc95d38b2efc45a.tar.gz
samba-63c9186e92ae2c7f1f7383352cc95d38b2efc45a.tar.bz2
samba-63c9186e92ae2c7f1f7383352cc95d38b2efc45a.zip
netcmd: Add errf stream to command instances.
Diffstat (limited to 'source4/scripting/bin')
-rwxr-xr-xsource4/scripting/bin/samba-tool3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/scripting/bin/samba-tool b/source4/scripting/bin/samba-tool
index f05fa3c023..9f06e8daae 100755
--- a/source4/scripting/bin/samba-tool
+++ b/source4/scripting/bin/samba-tool
@@ -45,7 +45,7 @@ from samba.netcmd.vampire import cmd_vampire
class cmd_sambatool(SuperCommand):
"""samba-tool SuperCommand"""
-
+
subcommands = {}
subcommands["dbcheck"] = cmd_dbcheck()
subcommands["delegation"] = cmd_delegation()
@@ -81,4 +81,5 @@ if __name__ == '__main__':
retval = -1
except Exception, e:
cmd.show_command_error(e)
+ retval = 1
sys.exit(retval)