15 lines
270 B
SYSTEMD
15 lines
270 B
SYSTEMD
|
[Unit]
|
||
|
Description=Sync popequer notebook with git
|
||
|
|
||
|
[Service]
|
||
|
# the buffer period in seconds 5min = 300s
|
||
|
Type=simple
|
||
|
ExecStart=/usr/bin/gitwatch -r origin -s 300 {{ home }}/notebooks/%i
|
||
|
ExecStop=/bin/true
|
||
|
Restart=always
|
||
|
RestartSec=30
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=default.target
|
||
|
|