2014-03-31 05:29:47 +00:00
|
|
|
module Propellor.Property.Cron where
|
|
|
|
|
|
|
|
import Propellor
|
|
|
|
import qualified Propellor.Property.File as File
|
|
|
|
import qualified Propellor.Property.Apt as Apt
|
|
|
|
|
|
|
|
type CronTimes = String
|
|
|
|
|
2014-04-01 21:54:20 +00:00
|
|
|
-- | Installs a cron job, run as a specificed user, in a particular
|
|
|
|
--directory. Note that the Desc must be unique, as it is used for the
|
|
|
|
--cron.d/ filename.
|
|
|
|
job :: Desc -> CronTimes -> UserName -> FilePath -> String -> Property
|
|
|
|
job desc times user cddir command = ("/etc/cron.d/" ++ desc) `File.hasContent`
|
|
|
|
[ "# Generated by propellor"
|
2014-03-31 05:29:47 +00:00
|
|
|
, ""
|
|
|
|
, "SHELL=/bin/sh"
|
|
|
|
, "PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"
|
|
|
|
, ""
|
2014-04-01 21:54:20 +00:00
|
|
|
, times ++ "\t" ++ user ++ "\t" ++ "cd " ++ cddir ++ " && " ++ command
|
2014-03-31 05:29:47 +00:00
|
|
|
]
|
2014-04-01 21:54:20 +00:00
|
|
|
`requires` Apt.installed ["cron"]
|
2014-04-02 00:47:05 +00:00
|
|
|
`requires` serviceRunning "cron"
|
2014-04-01 21:54:20 +00:00
|
|
|
`describe` ("cronned " ++ desc)
|
|
|
|
|
|
|
|
-- | Installs a cron job, and runs it niced and ioniced.
|
|
|
|
niceJob :: Desc -> CronTimes -> UserName -> FilePath -> String -> Property
|
|
|
|
niceJob desc times user cddir command = job desc times user cddir
|
|
|
|
("nice ionice -c 3 " ++ command)
|
|
|
|
`requires` Apt.installed ["util-linux", "moreutils"]
|
|
|
|
|
|
|
|
-- | Installs a cron job to run propellor.
|
|
|
|
runPropellor :: CronTimes -> Property
|
|
|
|
runPropellor times = niceJob "propellor" times "root" localdir "chronic make"
|