mirror of
https://github.com/abraunegg/onedrive
synced 2026-03-14 14:35:46 +01:00
OneDrive Client for Linux v2.5.0 --------- Signed-off-by: Thomas Staudinger <Staudi.Kaos@gmail.com> Co-authored-by: JC-comp <147694781+JC-comp@users.noreply.github.com> Co-authored-by: Dimitri Papadopoulos Orfanos <3234522+DimitriPapadopoulos@users.noreply.github.com> Co-authored-by: Pierrick Caillon <megamisan@users.noreply.github.com> Co-authored-by: Pierrick Caillon <pierrick.caillon@megami.fr> Co-authored-by: Thomas Staudinger <Staudi.Kaos@gmail.com> Co-authored-by: Yuan Liu <Lyncredible@users.noreply.github.com>
32 lines
936 B
SYSTEMD
32 lines
936 B
SYSTEMD
[Unit]
|
|
Description=OneDrive Client for Linux running for %i
|
|
Documentation=https://github.com/abraunegg/onedrive
|
|
After=network-online.target
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
# Commented out hardenings are disabled because they may not work out of the box on your distribution
|
|
# If you know what you are doing please try to enable them.
|
|
|
|
ProtectSystem=full
|
|
|
|
#PrivateDevices=true
|
|
ProtectHostname=true
|
|
#ProtectClock=true
|
|
ProtectKernelTunables=true
|
|
#ProtectKernelModules=true
|
|
#ProtectKernelLogs=true
|
|
ProtectControlGroups=true
|
|
RestrictRealtime=true
|
|
ExecStart=@prefix@/bin/onedrive --monitor --confdir=/home/%i/.config/onedrive
|
|
User=%i
|
|
Group=users
|
|
Restart=on-failure
|
|
RestartSec=3
|
|
# Do not restart the service if a --resync is required which is done via a 126 exit code
|
|
RestartPreventExitStatus=126
|
|
# Time to wait for the service to stop gracefully before forcefully terminating it
|
|
TimeoutStopSec=90
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|