8 lines
236 B
Desktop File
8 lines
236 B
Desktop File
[Unit]
|
|
Description=Sync logs from RAM to disk
|
|
After=local-fs.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStartPre=/bin/mkdir -p /var/log.hdd
|
|
ExecStart=/bin/sh -c 'rsync -aXv --delete --exclude="*.hdd" /var/log/ /var/log.hdd/ 2>/dev/null || true' |