diff options
| author | Joey Hess <joey@kitenet.net> | 2014-11-18 00:22:05 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-11-18 00:22:05 -0400 |
| commit | 7b796bcb9cd9fb29404b1f00339064d6bdd6a331 (patch) | |
| tree | 599dc1f781b77aae91f322d7ae1855686480f758 | |
| parent | 3968241b823eb4ab4183eafa97c8c2fea850c0dc (diff) | |
enable tty over ssh
| -rw-r--r-- | src/Propellor/CmdLine.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/CmdLine.hs b/src/Propellor/CmdLine.hs index c3b792d1..cbbc3e9b 100644 --- a/src/Propellor/CmdLine.hs +++ b/src/Propellor/CmdLine.hs @@ -189,7 +189,7 @@ spin hn hst = do where hostprivdata = show . filterPrivData hst <$> decryptPrivData - go cacheparams url privdata = withBothHandles createProcessSuccess (proc "ssh" $ cacheparams ++ [user, bootstrapcmd]) $ \(toh, fromh) -> do + go cacheparams url privdata = withBothHandles createProcessSuccess (proc "ssh" $ cacheparams ++ ["-t", user, bootstrapcmd]) $ \(toh, fromh) -> do let finish = do senddata toh "privdata" privDataMarker privdata hClose toh |
