empyrean: fix cron job
This commit is contained in:
parent
84fa63493f
commit
c9242c0bea
|
@ -60,10 +60,10 @@ let
|
||||||
|
|
||||||
# Script for cron jobs that sends output to journalctl -t sync-pipeline
|
# Script for cron jobs that sends output to journalctl -t sync-pipeline
|
||||||
sibd-cron = prefix: src: dest: pkgs.writeShellScript "sibd-cron" ''
|
sibd-cron = prefix: src: dest: pkgs.writeShellScript "sibd-cron" ''
|
||||||
${systemd}/bin/systemd-cat -t sync-pipeline ${sibd}/bin/sort-images-by-date ${prefix} ${src} ${dest}
|
${pkgs.systemd}/bin/systemd-cat -t sync-pipeline ${sibd}/bin/sort-images-by-date ${prefix} ${src} ${dest}
|
||||||
'';
|
'';
|
||||||
in {
|
in {
|
||||||
environment.systemPackages = [ sort-images-by-date ];
|
environment.systemPackages = [ sibd ];
|
||||||
|
|
||||||
services.cron = {
|
services.cron = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -71,4 +71,5 @@ in {
|
||||||
"0 0 * * 1 tvb ${sibd-cron "nokia" "/home/tvb/phone-sync/DCIM" "/home/tvb/phone-sync/staging"}"
|
"0 0 * * 1 tvb ${sibd-cron "nokia" "/home/tvb/phone-sync/DCIM" "/home/tvb/phone-sync/staging"}"
|
||||||
"0 0 * * 1 tvb ${sibd-cron "nokia" "/home/tvb/phone-sync/Pictures" "/home/tvb/phone-sync/staging"}"
|
"0 0 * * 1 tvb ${sibd-cron "nokia" "/home/tvb/phone-sync/Pictures" "/home/tvb/phone-sync/staging"}"
|
||||||
];
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue