Propellor.Property.Nginx: use System.Posix.Files
Bug: the "onChange reloaded" in siteEnabled does not seem to be fired... Does it works in Propellor.Property.Apache.siteEnabled? Signed-off-by: Félix Sipma <gueux@gueux.org>
This commit is contained in:
parent
5a6ff0b0f3
commit
784210a573
|
@ -4,21 +4,26 @@ import Propellor
|
|||
import qualified Propellor.Property.File as File
|
||||
import qualified Propellor.Property.Apt as Apt
|
||||
import qualified Propellor.Property.Service as Service
|
||||
import System.Posix.Files
|
||||
|
||||
type ConfigFile = [String]
|
||||
|
||||
siteEnabled :: HostName -> ConfigFile -> RevertableProperty
|
||||
siteEnabled hn cf = RevertableProperty enable disable
|
||||
where
|
||||
enable = trivial (cmdProperty "ln" ["-s", siteValRelativeCfg hn, siteVal hn])
|
||||
enable = check test prop
|
||||
`describe` ("nginx site enabled " ++ hn)
|
||||
`requires` siteAvailable hn cf
|
||||
`requires` installed
|
||||
`onChange` reloaded
|
||||
disable = trivial $
|
||||
("nginx site disabled " ++ hn) ==>
|
||||
File.notPresent (siteCfg hn)
|
||||
`onChange` cmdProperty "rm" [siteVal hn]
|
||||
where
|
||||
test = not <$> doesFileExist (siteVal hn)
|
||||
prop = property "nginx site in place" $ makeChange $
|
||||
createSymbolicLink target dir
|
||||
target = siteValRelativeCfg hn
|
||||
dir = siteVal hn
|
||||
disable = trivial $ File.notPresent (siteVal hn)
|
||||
`describe` ("nginx site disable" ++ hn)
|
||||
`requires` installed
|
||||
`onChange` reloaded
|
||||
|
||||
|
|
Loading…
Reference in New Issue