diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Property/Aiccu.hs | 2 | ||||
| -rw-r--r-- | src/Propellor/Property/DebianMirror.hs | 2 | ||||
| -rw-r--r-- | src/Propellor/Property/Firewall.hs | 8 | ||||
| -rw-r--r-- | src/Propellor/Property/Kerberos.hs | 6 | ||||
| -rw-r--r-- | src/Propellor/Property/LightDM.hs | 2 | ||||
| -rw-r--r-- | src/Propellor/Property/Logcheck.hs | 2 | ||||
| -rw-r--r-- | src/Propellor/Property/Nginx.hs | 2 | ||||
| -rw-r--r-- | src/Propellor/Property/Prosody.hs | 2 | ||||
| -rw-r--r-- | src/Propellor/Property/Unbound.hs | 4 |
9 files changed, 22 insertions, 8 deletions
diff --git a/src/Propellor/Property/Aiccu.hs b/src/Propellor/Property/Aiccu.hs index c49805b0..a1b24472 100644 --- a/src/Propellor/Property/Aiccu.hs +++ b/src/Propellor/Property/Aiccu.hs @@ -1,3 +1,5 @@ +-- | Maintainer: Jelmer Vernooij <jelmer@samba.org> + module Propellor.Property.Aiccu ( installed, restarted, diff --git a/src/Propellor/Property/DebianMirror.hs b/src/Propellor/Property/DebianMirror.hs index cd98b6ff..2e696b50 100644 --- a/src/Propellor/Property/DebianMirror.hs +++ b/src/Propellor/Property/DebianMirror.hs @@ -1,3 +1,5 @@ +-- | Maintainer: Félix Sipma <felix.sipma@no-log.org> + module Propellor.Property.DebianMirror ( DebianPriority(..) , showPriority diff --git a/src/Propellor/Property/Firewall.hs b/src/Propellor/Property/Firewall.hs index 6c95a022..a685a46f 100644 --- a/src/Propellor/Property/Firewall.hs +++ b/src/Propellor/Property/Firewall.hs @@ -1,7 +1,7 @@ --- |Properties for configuring firewall (iptables) rules --- --- Copyright 2014 Arnaud Bailly <arnaud.oqube@gmail.com> --- License: BSD-2-Clause +-- | Maintainer: Arnaud Bailly <arnaud.oqube@gmail.com> +-- +-- Properties for configuring firewall (iptables) rules + module Propellor.Property.Firewall ( rule, installed, diff --git a/src/Propellor/Property/Kerberos.hs b/src/Propellor/Property/Kerberos.hs index 74388423..5d07f4dc 100644 --- a/src/Propellor/Property/Kerberos.hs +++ b/src/Propellor/Property/Kerberos.hs @@ -1,7 +1,7 @@ +-- | Maintainer: Jelmer Vernooij <jelmer@samba.org> + module Propellor.Property.Kerberos where -import Data.String.Utils -import Utility.FileSystemEncoding import Utility.Process import Propellor @@ -30,7 +30,7 @@ kdcConfPath = "/etc/krb5kdc/kdc.conf" keyTabPath :: Maybe FilePath -> FilePath keyTabPath = maybe defaultKeyTab id --- Create a principal from a primary, instance and realm +-- | Create a principal from a primary, instance and realm principal :: String -> Maybe String -> Maybe Realm -> Principal principal p i r = p ++ maybe "" ("/"++) i ++ maybe "" ("@" ++) r diff --git a/src/Propellor/Property/LightDM.hs b/src/Propellor/Property/LightDM.hs index b779ba4d..b010eb2f 100644 --- a/src/Propellor/Property/LightDM.hs +++ b/src/Propellor/Property/LightDM.hs @@ -1,5 +1,7 @@ {-# LANGUAGE FlexibleInstances #-} +-- | Maintainer: Sean Whitton <spwhitton@spwhitton.name> + module Propellor.Property.LightDM where import Propellor diff --git a/src/Propellor/Property/Logcheck.hs b/src/Propellor/Property/Logcheck.hs index 83045dcc..8058b237 100644 --- a/src/Propellor/Property/Logcheck.hs +++ b/src/Propellor/Property/Logcheck.hs @@ -1,3 +1,5 @@ +-- | Maintainer: Jelmer Vernooij <jelmer@jelmer.uk> + module Propellor.Property.Logcheck ( ReportLevel (Workstation, Server, Paranoid), defaultPrefix, diff --git a/src/Propellor/Property/Nginx.hs b/src/Propellor/Property/Nginx.hs index 02ca202f..d69e6c73 100644 --- a/src/Propellor/Property/Nginx.hs +++ b/src/Propellor/Property/Nginx.hs @@ -1,3 +1,5 @@ +-- | Maintainer: Félix Sipma <gueux@gueux.org> + module Propellor.Property.Nginx where import Propellor diff --git a/src/Propellor/Property/Prosody.hs b/src/Propellor/Property/Prosody.hs index 31b6a624..1129e28d 100644 --- a/src/Propellor/Property/Prosody.hs +++ b/src/Propellor/Property/Prosody.hs @@ -1,3 +1,5 @@ +-- | Maintainer: Félix Sipma <felix.sipma@no-log.org> + module Propellor.Property.Prosody where import Propellor diff --git a/src/Propellor/Property/Unbound.hs b/src/Propellor/Property/Unbound.hs index e44953f6..c0fb54f1 100644 --- a/src/Propellor/Property/Unbound.hs +++ b/src/Propellor/Property/Unbound.hs @@ -1,4 +1,6 @@ --- | Properties for the Unbound caching DNS server +-- | Maintainer: Félix Sipma <felix.sipma@no-log.org> +-- +-- Properties for the Unbound caching DNS server module Propellor.Property.Unbound ( installed |
