propellor-2.12.0: property-based host configuration management in haskell

Safe HaskellNone
LanguageHaskell98

Propellor.Types.Info

Synopsis

Documentation

data Info Source

Information about a Host, which can be provided by its properties.

class (Typeable v, Monoid v, Show v) => IsInfo v where Source

Values stored in Info must be members of this class.

This is used to avoid accidentially using other data types as info, especially type aliases which coud easily lead to bugs. We want a little bit of dynamic types here, but not too far..

Methods

propagateInfo :: v -> Bool Source

Should info of this type be propagated out of a container to its Host?

Instances

IsInfo NamedConfMap Source 
IsInfo DnsInfo Source

DNS Info is propagated, so that eg, aliases of a container are reflected in the dns for the host where it runs.

IsInfo AliasesInfo Source 
IsInfo PrivInfo Source 
IsInfo ChrootInfo Source 
IsInfo DockerInfo Source 
(Typeable * v, Show v) => IsInfo (InfoVal v) Source 

addInfo :: IsInfo v => Info -> v -> Info Source

Any value in the IsInfo type class can be added to an Info.

getInfo :: IsInfo v => Info -> v Source

mapInfo :: IsInfo v => (v -> v) -> Info -> Info Source

Maps a function over all values stored in the Info that are of the appropriate type.

propagatableInfo :: Info -> Info Source

Filters out parts of the Info that should not propagate out of a container.

data InfoVal v Source

Use this to put a value in Info that is not a monoid. The last value set will be used. This info does not propagate out of a container.

Constructors

NoInfoVal 
InfoVal v 

Instances

class Typeable a

The class Typeable allows a concrete representation of a type to be calculated.

Minimal complete definition

typeRep#