mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Add systemd.timer files and a relevant tutorial (#635)
Include a systemd.timer file (the interval can be overridden, as mentioned in the docs). TBH, I'd suggest downstream packagers of systemd-based distributions include these files on installation (activation needs to be done manually anyway).
This commit is contained in:
parent
d2127030c2
commit
1bf863c615
6 changed files with 64 additions and 0 deletions
|
|
@ -29,6 +29,9 @@ Version 0.16.0
|
|||
- Vdirsyncer now uses more filesystem metadata for determining whether an item
|
||||
changed. You will notice a **possibly heavy CPU/IO spike on the first sync
|
||||
after upgrading**.
|
||||
- **Packagers:** Reference ``systemd.service`` and ``systemd.timer`` unit files
|
||||
are provided. It is recommended to install this if your distribution is
|
||||
systemd-based.
|
||||
|
||||
Version 0.15.0
|
||||
==============
|
||||
|
|
|
|||
7
contrib/vdirsyncer.service
Normal file
7
contrib/vdirsyncer.service
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[Unit]
|
||||
Description=Synchronize calendars and contacts
|
||||
Documentation=https://vdirsyncer.readthedocs.org/
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/vdirsyncer sync
|
||||
Type=oneshot
|
||||
10
contrib/vdirsyncer.timer
Normal file
10
contrib/vdirsyncer.timer
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
[Unit]
|
||||
Description=Synchronize vdirs
|
||||
|
||||
[Timer]
|
||||
OnBootSec=5m
|
||||
OnUnitActiveSec=15m
|
||||
AccuracySec=5m
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
||||
|
|
@ -78,3 +78,9 @@ Then change into the ``docs/`` directory and build whatever format you want
|
|||
using the ``Makefile`` in there (run ``make`` for the formats you can build).
|
||||
|
||||
.. _Sphinx: www.sphinx-doc.org/
|
||||
|
||||
Contrib files
|
||||
=============
|
||||
|
||||
Reference ``systemd.service`` and ``systemd.timer`` unit files are provided. It
|
||||
is recommended to install this if your distribution is systemd-based.
|
||||
|
|
|
|||
|
|
@ -11,3 +11,4 @@ that other software may only apply to specific versions of them.
|
|||
:maxdepth: 1
|
||||
|
||||
claws-mail
|
||||
systemd-timer
|
||||
|
|
|
|||
37
docs/tutorials/systemd-timer.rst
Normal file
37
docs/tutorials/systemd-timer.rst
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
.. _systemd_timer-tutorial:
|
||||
|
||||
Running as a systemd.timer
|
||||
==========================
|
||||
|
||||
vdirsyncer includes unit files to run at an interval (by default every 15±5
|
||||
minutes).
|
||||
|
||||
.. note::
|
||||
|
||||
These are not installed when installing via pip, only via distribution
|
||||
packages. If you installed via pip, or your distribution doesn't ship systemd
|
||||
unit files, you'll need to download vdirsyncer.service_ and vdirsyncer.timer_
|
||||
into either ``/etc/systemd/user/`` or ``~/.local/share/systemd/user``.
|
||||
|
||||
.. _vdirsyncer.service: https://raw.githubusercontent.com/pimutils/vdirsyncer/master/contrib/vdirsyncer.service
|
||||
.. _vdirsyncer.timer: https://raw.githubusercontent.com/pimutils/vdirsyncer/master/contrib/vdirsyncer.timer
|
||||
|
||||
Activation
|
||||
----------
|
||||
|
||||
To activate the timer, just run ``systemctl --user enable vdirsyncer.timer``.
|
||||
To see logs of previous runs, use ``journalctl --user -u vdirsyncer``.
|
||||
|
||||
Configuration
|
||||
-------------
|
||||
|
||||
It's quite possible that the default "every fifteen minutes" interval isn't to
|
||||
your liking. No default will suit everybody, but this is configurable by simply
|
||||
running::
|
||||
|
||||
systemctl --user edit vdirsyncer
|
||||
|
||||
This will open a blank editor, where you can override the timer by including::
|
||||
|
||||
OnBootSec=5m # This is how long after boot the first run takes place.
|
||||
OnUnitActiveSec=15m # This is how often subsequent runs take place.
|
||||
Loading…
Reference in a new issue