| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
SuperUserSpark.Check.Types
Documentation
type SparkChecker = ExceptT CheckError (ReaderT CheckSettings IO) Source #
data Instruction Source #
Constructors
| CopyFile (Path Abs File) (Path Abs File) | |
| CopyDir (Path Abs Dir) (Path Abs Dir) | |
| LinkFile (Path Abs File) (Path Abs File) | |
| LinkDir (Path Abs Dir) (Path Abs Dir) |
Instances
data CleanupInstruction Source #
data DeploymentCheckResult Source #
Constructors
| DeploymentDone | Done already |
| ReadyToDeploy Instruction | Immediately possible |
| DirtySituation String Instruction CleanupInstruction | Possible after cleanup of destination |
| ImpossibleDeployment [String] | Entirely impossible |
data CheckResult Source #
Constructors
| AlreadyDone | Done already |
| Ready Instruction | Immediately possible |
| Dirty String Instruction CleanupInstruction | Possible after cleanup |
| Impossible String | Entirely impossible |
Instances