diff options
| author | Joey Hess <joeyh@joeyh.name> | 2015-09-14 20:45:50 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2015-09-14 20:45:50 -0400 |
| commit | 9b715f72c2eb7dec71e0392a2363474f23c1e761 (patch) | |
| tree | cedb5f1c4129a9440f17afd80d837bc97411f888 /doc/forum/cron_email.mdwn | |
| parent | e5c398a0f6dfc65d56c2dcdf2e8bbf031579ef38 (diff) | |
| parent | b6eebba9ca80e9d643aa1d9af03899932f9704db (diff) | |
Merge branch 'master' of ssh://propellor.branchable.com
Diffstat (limited to 'doc/forum/cron_email.mdwn')
| -rw-r--r-- | doc/forum/cron_email.mdwn | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/forum/cron_email.mdwn b/doc/forum/cron_email.mdwn new file mode 100644 index 00000000..19f1bb4d --- /dev/null +++ b/doc/forum/cron_email.mdwn @@ -0,0 +1,27 @@ +Hello, + +In my institut, I want to manage a few of my computers with propellor (the cluster will come ;) +So I would like to add a MAILTO to cron. + +The best would be to configure exim4 to redirect all root email to my personnal mbox but for now I just want to do it for cron + +So I created a property for this. + +-- redirect all root email to an email +redirectCronEmail :: String -> Property NoInfo +redirectCronEmail email = "/etc/default/cron" `File.containsLine` ("MAILTO=" ++ email) + `requires` Apt.serviceInstalledRunning "cron" + `onChange` Service.restarted "cron" + + +Would you be so kind to add an equivalent into Cron. (PS I do not know if my property is properly written) + +something like + +Cron.mailTO "toto@titi.org" + +or maybe this is not the right way to solve my problem. + +Cheers + +Frederic |
