diff options
author | Rob Austein <sra@hactrn.net> | 2013-05-07 20:46:17 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2013-05-07 20:46:17 +0000 |
commit | a757c5f251a71c414ddbe8975e04414cb3de104a (patch) | |
tree | 4a29b84f369bc75d4a86672f384d47b144e39a32 /rpkid | |
parent | e326a1ada63e27e3c2797adec084aa4102de4cca (diff) |
Do something imperfect that works now for cron setup, rather than
continuing to skip cron setup when installing from source until we
have a perfect solution.
svn path=/trunk/; revision=5329
Diffstat (limited to 'rpkid')
-rw-r--r-- | rpkid/Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/rpkid/Makefile.in b/rpkid/Makefile.in index a33bbef2..dcc54392 100644 --- a/rpkid/Makefile.in +++ b/rpkid/Makefile.in @@ -247,8 +247,14 @@ install-bpki: # want run under the same user IDs either, so what with having to use # /usr/bin/crontab on some platforms, this should be entirely too # entertaining. Might be ok to run them all as user rpkid eventually. -install-cron: - @true +# +# We really should be running exactly the same cron setup/teardown +# code here as we do in platform-specific post-installation scripts, +# but for now we just use crontab(1) here on all platforms. + +install-cron: install-cron-using-crontab + +uninstall deinstall:: uninstall-cron-using-crontab # Code for setting up and tearing down cron jobs using the crontab(1) # program. We don't use this on all platforms, but we do use it on |