summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/PropAccum.hs6
-rw-r--r--src/Propellor/Property/LetsEncrypt.hs5
2 files changed, 4 insertions, 7 deletions
diff --git a/src/Propellor/PropAccum.hs b/src/Propellor/PropAccum.hs
index d9fa8ec7..fcac60bf 100644
--- a/src/Propellor/PropAccum.hs
+++ b/src/Propellor/PropAccum.hs
@@ -78,9 +78,3 @@ Props c &^ p = Props (toChildProperty p : c)
-> RevertableProperty (MetaTypes y) (MetaTypes z)
-> Props (MetaTypes (Combine x z))
Props c ! p = Props (c ++ [toChildProperty (revert p)])
-
--- addPropsHost :: Host -> [Prop] -> Host
--- addPropsHost (Host hn ps i) p = Host hn ps' i'
--- where
--- ps' = ps ++ [toChildProperty p]
--- i' = i <> getInfoRecursive p
diff --git a/src/Propellor/Property/LetsEncrypt.hs b/src/Propellor/Property/LetsEncrypt.hs
index 88d4f5a8..592a1e1d 100644
--- a/src/Propellor/Property/LetsEncrypt.hs
+++ b/src/Propellor/Property/LetsEncrypt.hs
@@ -1,4 +1,5 @@
--- | This module uses the letsencrypt reference client.
+-- | This module gets LetsEncrypt <https://letsencrypt.org/> certificates
+-- using CertBot <https://certbot.eff.org/>
module Propellor.Property.LetsEncrypt where
@@ -7,6 +8,8 @@ import qualified Propellor.Property.Apt as Apt
import System.Posix.Files
+-- Not using the certbot name yet, until it reaches jessie-backports and
+-- testing.
installed :: Property DebianLike
installed = Apt.installed ["letsencrypt"]