diff options
| author | Félix Sipma <felix.sipma@no-log.org> | 2018-02-23 16:33:00 +0100 |
|---|---|---|
| committer | Félix Sipma <felix.sipma@no-log.org> | 2018-02-23 16:33:00 +0100 |
| commit | fad7824a13580f505549cc746589c94542bec9cb (patch) | |
| tree | bc2e706c70e6ee9ce00bb090c866fc4c407a89d7 /src/Propellor | |
| parent | 6749014553b13ad148cde450baefb241a98ed771 (diff) | |
rename Dhparams to Openssl
Diffstat (limited to 'src/Propellor')
| -rw-r--r-- | src/Propellor/Property/Openssl.hs (renamed from src/Propellor/Property/Dhparams.hs) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Propellor/Property/Dhparams.hs b/src/Propellor/Property/Openssl.hs index 2c30cb87..eb373e49 100644 --- a/src/Propellor/Property/Dhparams.hs +++ b/src/Propellor/Property/Openssl.hs @@ -1,6 +1,6 @@ -- | Maintainer: Félix Sipma <felix+propellor@gueux.org> -module Propellor.Property.Dhparams where +module Propellor.Property.Openssl where import Propellor.Base import qualified Propellor.Property.Apt as Apt @@ -9,11 +9,11 @@ import Utility.FileMode import Utility.SafeCommand -length' :: Int -length' = 2048 +dhparamsLength :: Int +dhparamsLength = 2048 -file :: FilePath -file = "/etc/ssl/private/dhparams.pem" +dhparams :: FilePath +dhparams = "/etc/ssl/private/dhparams.pem" safeDhparams :: Property DebianLike safeDhparams = propertyList "safe dhparams" $ props |
