update for cron change

This commit is contained in:
Joey Hess 2015-02-12 12:40:52 -04:00
parent 5c38eca6c2
commit 514bc70c39
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ hosts =
& File.dirExists "/var/www"
& Docker.docked webserverContainer
& Docker.garbageCollected `period` Daily
& Cron.runPropellor "30 * * * *"
& Cron.runPropellor (Cron.Times "30 * * * *")
-- add more hosts here...
--, host "foo.example.com" = ...

View File

@ -22,7 +22,7 @@ You can add a central git repository to your existing propellor setup easily:
`cd ~/.propellor/; git remote add deploy git://git.example.com/propellor.git`
2. Add a property to your hosts like:
`Cron.runPropellor "*/30 * * * *"`
`Cron.runPropellor (Cron.Times "*/30 * * * *")`
3. Let your hosts know about the changed configuration (including the url
to the central repository), by running `propellor --spin $HOST` for each

View File

@ -66,7 +66,7 @@ Some other properties you may find in your config.hs, or want to add:
& Apt.unattendedUpgrades
& User.hasSomePassword "root"
& "/etc/default/foodaemon" `File.containsLine` "ENABLED=yes"
& Cron.runPropellor "30 * * * *"
& Cron.runPropellor (Cron.Times "30 * * * *")
"""]]
Some of these properties can be reverted -- this makes Propellor undo whatever