summaryrefslogtreecommitdiff
path: root/src/Propellor/Types/Chroot.hs
blob: d37d34c705ac8c8ef3206b870499a1b4a93cdbc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module Propellor.Types.Chroot where

import Data.Monoid
import qualified Data.Map as M
import Propellor.Types.Empty

data ChrootInfo host = ChrootInfo
	{ _chroots :: M.Map FilePath host
	, _chrootCfg :: ChrootCfg
	}
	deriving (Show)

instance Monoid (ChrootInfo host) where
	mempty = ChrootInfo mempty mempty
	mappend old new = ChrootInfo
		{ _chroots = M.union (_chroots old) (_chroots new)
		, _chrootCfg = _chrootCfg old <> _chrootCfg new
		}

instance Empty (ChrootInfo host) where
	isEmpty i = and
		[ isEmpty (_chroots i)
		, isEmpty (_chrootCfg i)
		]

data ChrootCfg
	= NoChrootCfg
	| SystemdNspawnCfg [(String, Bool)]
	deriving (Show, Eq)

instance Monoid ChrootCfg where
	mempty = NoChrootCfg
	mappend v NoChrootCfg = v
	mappend NoChrootCfg v = v
	mappend (SystemdNspawnCfg l1) (SystemdNspawnCfg l2) =
		SystemdNspawnCfg (l1 <> l2)

instance Empty ChrootCfg where
	isEmpty c= c == NoChrootCfg