bs-units/backup-files-rsync.service
2019-09-14 09:20:11 -04:00

13 lines
338 B
Desktop File

[Unit]
Description=Backup Files
[Service]
Environment=SOURCE=/path/to/source
Environment=DESTINATION=user@host:/path/to/destination
Environment=EXCLUDES="--exclude path1 --exclude path2"
Type=simple
Nice=19
IOSchedulingClass=2
IOSchedulingPriority=7
ExecStart=/bin/sh -c '/usr/bin/rsync -HAax ${EXCLUDES} "${SOURCE}/" "${DESTINATION}/"'