summaryrefslogtreecommitdiff
path: root/src/Propellor/Types.hs
diff options
context:
space:
mode:
authorJoey Hess2014-11-18 01:01:50 -0400
committerJoey Hess2014-11-18 01:01:50 -0400
commit40f6d06f1a65b3a12adb853ab924e1181b0855b2 (patch)
tree2cc6e4c0460659f92b8e91267ea4583522b52b77 /src/Propellor/Types.hs
parent973025723c0d267c3f65362c5fa640a857b50d62 (diff)
Run remote propellor --spin with a controlling terminal.
Avoids need for hack to make ansi colors work, but also things like apt-get and wget process bars will be displayed.
Diffstat (limited to 'src/Propellor/Types.hs')
-rw-r--r--src/Propellor/Types.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Types.hs b/src/Propellor/Types.hs
index b606cef2..b3636eb4 100644
--- a/src/Propellor/Types.hs
+++ b/src/Propellor/Types.hs
@@ -137,7 +137,6 @@ instance ActionResult Result where
data CmdLine
= Run HostName
| Spin HostName
- | Boot HostName
| Set PrivDataField Context
| Dump PrivDataField Context
| Edit PrivDataField Context
@@ -145,5 +144,6 @@ data CmdLine
| AddKey String
| Continue CmdLine
| Chain HostName
+ | Sync
| Docker HostName
deriving (Read, Show, Eq)