all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* mcron job with cd to directory?
@ 2017-05-17 13:12 ng0
  2017-05-17 20:04 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: ng0 @ 2017-05-17 13:12 UTC (permalink / raw)
  To: help-guix

Does someone know how you could re-create this:

(crontab -l of root)
# Regnerate stagit indexes every hour:
0 * * * * (cd /var/www/git && echo `pwd` && /root/git_pragmatique_xyz.sh)

in mcron?

I have some cronjobs where the initial
current-working-dir must be a specific directory.

I think I am missing (lambda) in what I have written below,
but the mcron documentation just

(define %stagit-job1
  #~(job '(next-hour '(4))
           (and
            (chdir "/srv/www/git/pragmatique")
            (system* "sh" "/root/git_pragmatique.xyz.sh"))))
(define %stagit-job2
  #~(job '(next-hour '(4))
           (and
            (chdir "/srv/www/git/ng0")
            (system* "sh" "/root/git_ng0.sh"))))


Of course we all know that the longterm fix is to write
an Guix service for stagit which allows multiple targets,
because stagit's example.sh is just that, an example ;)
-- 
https://pragmatique.xyz
PGP: https://people.pragmatique.xyz/ng0/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-05-17 21:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-17 13:12 mcron job with cd to directory? ng0
2017-05-17 20:04 ` Ludovic Courtès
2017-05-17 20:15   ` ng0
2017-05-17 21:01     ` Clément Lassieur

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.