Forked from qertoip/CrashPlan systemd service config for Arch Linux
Last active
January 26, 2024 15:49
-
-
Save ProBackup-nl/feba82a49cc20b85ba4884f28ccb99f9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Paste this into: /usr/lib/systemd/system/crashplan.service | |
## Then: | |
# /usr/local/crashplan/bin/CrashPlanEngine stop | |
# systemctl enable --now crashplan | |
## Check whether it is running: | |
# systemctl status crashplan | |
[Unit] | |
Description=CrashPlan backup engine | |
After=network.target | |
[Service] | |
Type=forking | |
PIDFile=/usr/local/crashplan/CrashPlanEngine.pid | |
EnvironmentFile=/usr/local/crashplan/bin/run.conf | |
WorkingDirectory=/usr/local/crashplan | |
ExecStart=/usr/local/crashplan/bin/CrashPlanEngine start | |
ExecStop=/usr/local/crashplan/bin/CrashPlanEngine stop | |
ExecReload=/usr/local/crashplan/bin/CrashPlanEngine force-reload | |
SuccessExitStatus=143 | |
# ToDo: Hardening | |
# systemd-analyze security crashplan.service | |
# → Overall exposure level for crashplan.service: 9.6 UNSAFE | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment