| Safe Haskell | None |
|---|---|
| Language | Haskell98 |
Propellor.Types.Dns
- type Domain = String
- data IPAddr
- fromIPAddr :: IPAddr -> String
- data NamedConf = NamedConf {
- confDomain :: Domain
- confDnsServerType :: DnsServerType
- confFile :: FilePath
- confMasters :: [IPAddr]
- confAllowTransfer :: [IPAddr]
- confLines :: [String]
- data DnsServerType
- data Zone = Zone {}
- data SOA = SOA {}
- data Record
- getIPAddr :: Record -> Maybe IPAddr
- getCNAME :: Record -> Maybe BindDomain
- getNS :: Record -> Maybe BindDomain
- type SerialNumber = Word32
- data BindDomain
- domainHostName :: BindDomain -> Maybe HostName
- newtype NamedConfMap = NamedConfMap (Map Domain NamedConf)
- fromNamedConfMap :: NamedConfMap -> Map Domain NamedConf
Documentation
fromIPAddr :: IPAddr -> String Source
Represents a bind 9 named.conf file.
Constructors
| NamedConf | |
Fields
| |
data DnsServerType Source
Instances
Represents a bind 9 zone file.
Every domain has a SOA record, which is big and complicated.
Constructors
| SOA | |
Fields
| |
Types of DNS records.
This is not a complete list, more can be added.
getCNAME :: Record -> Maybe BindDomain Source
getNS :: Record -> Maybe BindDomain Source
type SerialNumber = Word32 Source
Bind serial numbers are unsigned, 32 bit integers.
data BindDomain Source
Domains in the zone file must end with a period if they are absolute.
Let's use a type to keep absolute domains straight from relative domains.
The RootDomain refers to the top level of the domain, so can be used to add nameservers, MX's, etc to a domain.
Constructors
| RelDomain Domain | |
| AbsDomain Domain | |
| RootDomain |
Instances
newtype NamedConfMap Source
Constructors
| NamedConfMap (Map Domain NamedConf) |
Instances
| Eq NamedConfMap | |
| Ord NamedConfMap | |
| Show NamedConfMap | |
| Monoid NamedConfMap | Adding a Master NamedConf stanza for a particulr domain always overrides an existing Secondary stanza for that domain, while a Secondary stanza is only added when there is no existing Master stanza. |
| Empty NamedConfMap |