summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/HostingProvider
diff options
context:
space:
mode:
authorJoey Hess2015-05-18 00:37:50 -0400
committerJoey Hess2015-05-18 00:37:50 -0400
commitbdba36ea26d7f521553b0c1e833b5ccf5d25ee96 (patch)
treecb32294814a864d4e9a5270c13f3ce906a2d5160 /src/Propellor/Property/HostingProvider
parent4f925f982a2740f4751fce4f138bde485077e22e (diff)
show docs in haddock
Diffstat (limited to 'src/Propellor/Property/HostingProvider')
-rw-r--r--src/Propellor/Property/HostingProvider/DigitalOcean.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Property/HostingProvider/DigitalOcean.hs b/src/Propellor/Property/HostingProvider/DigitalOcean.hs
index be62ccdc..a5de9818 100644
--- a/src/Propellor/Property/HostingProvider/DigitalOcean.hs
+++ b/src/Propellor/Property/HostingProvider/DigitalOcean.hs
@@ -9,7 +9,7 @@ import qualified Propellor.Property.Reboot as Reboot
import Data.List
--- Digital Ocean does not provide any way to boot
+-- | Digital Ocean does not provide any way to boot
-- the kernel provided by the distribution, except using kexec.
-- Without this, some old, and perhaps insecure kernel will be used.
--
@@ -40,7 +40,7 @@ runningInstalledKernel = do
findVersion kernelver <$>
readProcess "file" ("-L" : kernelimages)
--- File output looks something like this, we want to unambiguously
+-- | File output looks something like this, we want to unambiguously
-- match the running kernel version:
-- Linux kernel x86 boot executable bzImage, version 3.16-3-amd64 (debian-kernel@lists.debian.org) #1 SMP Debian 3.1, RO-rootFS, swap_dev 0x2, Normal VGA
findVersion :: String -> String -> Bool