summaryrefslogtreecommitdiff
path: root/src/Propellor/Types.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Propellor/Types.hs')
-rw-r--r--src/Propellor/Types.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Propellor/Types.hs b/src/Propellor/Types.hs
index b606cef2..72ccd228 100644
--- a/src/Propellor/Types.hs
+++ b/src/Propellor/Types.hs
@@ -28,6 +28,7 @@ module Propellor.Types
import Data.Monoid
import Control.Applicative
import System.Console.ANSI
+import System.Posix.Types
import "mtl" Control.Monad.Reader
import "MonadCatchIO-transformers" Control.Monad.CatchIO
@@ -137,7 +138,6 @@ instance ActionResult Result where
data CmdLine
= Run HostName
| Spin HostName
- | Boot HostName
| Set PrivDataField Context
| Dump PrivDataField Context
| Edit PrivDataField Context
@@ -145,5 +145,7 @@ data CmdLine
| AddKey String
| Continue CmdLine
| Chain HostName
+ | Boot HostName
| Docker HostName
+ | GitPush Fd Fd
deriving (Read, Show, Eq)