summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/Property/Firewall.hs1
-rw-r--r--src/Propellor/Property/Grub.hs4
-rw-r--r--src/Propellor/Property/Postfix.hs4
-rw-r--r--src/Propellor/Property/Ssh.hs1
-rw-r--r--src/Propellor/Property/Systemd.hs2
-rw-r--r--src/Propellor/Types.hs6
6 files changed, 9 insertions, 9 deletions
diff --git a/src/Propellor/Property/Firewall.hs b/src/Propellor/Property/Firewall.hs
index 3018f989..f9a027be 100644
--- a/src/Propellor/Property/Firewall.hs
+++ b/src/Propellor/Property/Firewall.hs
@@ -9,6 +9,7 @@ module Propellor.Property.Firewall (
Target(..),
Proto(..),
Rules(..),
+ Port,
ConnectionState(..)
) where
diff --git a/src/Propellor/Property/Grub.hs b/src/Propellor/Property/Grub.hs
index 71593523..0e89196c 100644
--- a/src/Propellor/Property/Grub.hs
+++ b/src/Propellor/Property/Grub.hs
@@ -4,10 +4,10 @@ import Propellor
import qualified Propellor.Property.File as File
import qualified Propellor.Property.Apt as Apt
--- | Eg, "hd0,0" or "xen/xvda1"
+-- | Eg, \"hd0,0\" or \"xen/xvda1\"
type GrubDevice = String
--- | Eg, "/dev/sda"
+-- | Eg, \"\/dev/sda\"
type OSDevice = String
type TimeoutSecs = Int
diff --git a/src/Propellor/Property/Postfix.hs b/src/Propellor/Property/Postfix.hs
index 7821b333..cdb7bdee 100644
--- a/src/Propellor/Property/Postfix.hs
+++ b/src/Propellor/Property/Postfix.hs
@@ -77,8 +77,8 @@ getMainCf name = parse . lines <$> readProcess "postconf" [name]
(_, v) -> v
parse [] = Nothing
--- | Checks if a main.cf field is set. A field that is set to ""
--- is considered not set.
+-- | Checks if a main.cf field is set. A field that is set to
+-- the empty string is considered not set.
mainCfIsSet :: String -> IO Bool
mainCfIsSet name = do
v <- getMainCf name
diff --git a/src/Propellor/Property/Ssh.hs b/src/Propellor/Property/Ssh.hs
index 238e67e4..791b363b 100644
--- a/src/Propellor/Property/Ssh.hs
+++ b/src/Propellor/Property/Ssh.hs
@@ -1,4 +1,5 @@
module Propellor.Property.Ssh (
+ PubKeyText,
setSshdConfig,
permitRootLogin,
passwordAuthentication,
diff --git a/src/Propellor/Property/Systemd.hs b/src/Propellor/Property/Systemd.hs
index 7fe600a0..613ed01c 100644
--- a/src/Propellor/Property/Systemd.hs
+++ b/src/Propellor/Property/Systemd.hs
@@ -1,5 +1,7 @@
module Propellor.Property.Systemd (
module Propellor.Property.Systemd.Core,
+ ServiceName,
+ MachineName,
started,
stopped,
enabled,
diff --git a/src/Propellor/Types.hs b/src/Propellor/Types.hs
index 9f1c8f1b..728cebc1 100644
--- a/src/Propellor/Types.hs
+++ b/src/Propellor/Types.hs
@@ -4,14 +4,10 @@
module Propellor.Types
( Host(..)
, Info(..)
- , getInfoRecursive
, Propellor(..)
, Property(..)
, RevertableProperty(..)
- , IsProp
- , describe
- , toProp
- , requires
+ , IsProp(..)
, Desc
, Result(..)
, ToResult(..)