summaryrefslogtreecommitdiff
path: root/Propellor/CmdLine.hs
diff options
context:
space:
mode:
authorJoey Hess2014-03-31 19:01:56 -0400
committerJoey Hess2014-03-31 19:01:56 -0400
commit178cd65e475128a9a0d4199f7fd0c02007b77356 (patch)
treecb0c061e9b779b1e88c1a77422288d5c921a8c48 /Propellor/CmdLine.hs
parentcc74d78abac38f408842fe83b3117c3ed3849735 (diff)
propellor spin
Diffstat (limited to 'Propellor/CmdLine.hs')
-rw-r--r--Propellor/CmdLine.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Propellor/CmdLine.hs b/Propellor/CmdLine.hs
index 7461a824..2ab83f33 100644
--- a/Propellor/CmdLine.hs
+++ b/Propellor/CmdLine.hs
@@ -189,7 +189,7 @@ sendGitClone host url = void $ actionMessage ("Pushing git repository to " ++ ho
withTmpFile "gitbundle" $ \tmp _ -> allM id
-- TODO: ssh connection caching, or better push method
-- with less connections.
- [ boolSystem "git" [Param "bundle", Param "create", Param "-2", File tmp, Param "HEAD"]
+ [ boolSystem "git" [Param "bundle", Param "create", File tmp, Param "HEAD"]
, boolSystem "scp" [File tmp, Param ("root@"++host++":"++remotebundle)]
, boolSystem "ssh" [Param ("root@"++host), Param unpackcmd]
]