diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-11 15:42:14 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-11 15:54:31 +0000 |
commit | 05024867d31311a2eae3f94eea45bb09befa982c (patch) | |
tree | 2f615fabb1dd58c906c6a14f1dc34962ef06bffc | |
parent | 9d2e777e18fda6489c20c96f4c09fc41f92d7727 (diff) | |
download | samba-05024867d31311a2eae3f94eea45bb09befa982c.tar.gz samba-05024867d31311a2eae3f94eea45bb09befa982c.tar.bz2 samba-05024867d31311a2eae3f94eea45bb09befa982c.zip |
land-remote: Fix --fail-slowly.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Mon Oct 11 15:54:31 UTC 2010 on sn-devel-104
-rwxr-xr-x | script/land-remote.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/script/land-remote.py b/script/land-remote.py index 93178b57aa..1009e6bd02 100755 --- a/script/land-remote.py +++ b/script/land-remote.py @@ -104,6 +104,8 @@ if opts.pushto: remote_args.append("--pushto=%s" % opts.pushto) if opts.push_master: remote_args.append("--push-master") +if opts.fail_slowly: + remote_args.append("--fail-slowly") remote_args += extra_args print "%s$ %s" % (opts.host, " ".join(remote_args)) |