summaryrefslogtreecommitdiff
path: root/Propellor/Types/Attr.hs
blob: cf8bdf1a46d2f9d5124b3817e60f93fb3a7a3d0c (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
40
41
42
43
44
module Propellor.Types.Attr where

import Propellor.Types.OS
import qualified Propellor.Types.Dns as Dns

import qualified Data.Set as S

-- | The attributes of a host. For example, its hostname.
data Attr = Attr
	{ _hostname :: HostName
	, _os :: Maybe System
	, _dns :: S.Set Dns.Record
	, _sshPubKey :: Maybe String

	, _dockerImage :: Maybe String
	, _dockerRunParams :: [HostName -> String]
	}

instance Eq Attr where
	x == y = and
		[ _hostname x == _hostname y
		, _os x == _os y
		, _dns x == _dns y
		, _sshPubKey x == _sshPubKey y

		, _dockerImage x == _dockerImage y
		, let simpl v = map (\a -> a "") (_dockerRunParams v)
		  in simpl x == simpl y
		]

instance Show Attr where
	show a = unlines
		[ "hostname " ++ _hostname a
		, "OS " ++ show (_os a)
		, "dns " ++ show (_dns a)
		, "sshPubKey " ++ show (_sshPubKey a)
		, "docker image " ++ show (_dockerImage a)
		, "docker run params " ++ show (map (\mk -> mk "") (_dockerRunParams a))
		]

newAttr :: HostName -> Attr
newAttr hn = Attr hn Nothing S.empty Nothing Nothing []

type SetAttr = Attr -> Attr