vdirsyncer: synchronize metadata as well (#4167)
This commit is contained in:
parent
3be2abb2e6
commit
d895a77448
|
@ -67,9 +67,11 @@ in {
|
|||
Service = {
|
||||
Type = "oneshot";
|
||||
# TODO `vdirsyncer discover`
|
||||
ExecStart = "${cfg.package}/bin/vdirsyncer ${
|
||||
concatStringsSep " " vdirsyncerOptions
|
||||
} sync";
|
||||
ExecStart = let optStr = concatStringsSep " " vdirsyncerOptions;
|
||||
in [
|
||||
"${cfg.package}/bin/vdirsyncer ${optStr} metasync"
|
||||
"${cfg.package}/bin/vdirsyncer ${optStr} sync"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue