add: systemd service
All checks were successful
Lint / Lint (push) Successful in 14s

This commit is contained in:
洛天依 2025-01-20 02:54:23 +00:00
parent f17345dae8
commit 575e940dde
Signed by: luo
SSH Key Fingerprint: SHA256:V1KdsvGUpiKVfrJo1oHrAPnc/Z6k/6xgaZN7iTbYBl4
4 changed files with 37 additions and 4 deletions

View File

@ -8,5 +8,11 @@ indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
trim_trailing_whitespace = true
insert_final_newline = true
[{*.service,*.timer}]
indent_style = tab
indent_size = 4
insert_final_newline = false
trim_trailing_whitespace = true

View File

@ -20,11 +20,22 @@ git clone https://devops.lty.name/luo/backupd.git /opt/backupd
```
## Configuration
**Ownership**
>
> **Note**
>
> You have to complete ALL FOLLOWING STEPS to make the script work properly.
>
Don't forget to change the ownership of the directory:
**Permissions**
Don't forget to change the ownership and permissions of the files:
```bash
chown -R root:root /opt/backupd
cd /opt/backupd
for file in *.example; do
mv "$file" "${file%.example}"
done
chmod 600 rclone.conf passwd
```
**Rclone**
@ -65,7 +76,7 @@ If you wish to run the script as scheduled tasks, copy the fillowing files to `/
```bash
cp /opt/backupd/backupd.service /etc/systemd/system/
cp /opt/backupd/backupd.timer /etc/systemd/system/
cp /opt/backupd/backupd.timer /etc/systemd/system/
```
Then, enable and start the timer:

7
backupd.service Normal file
View File

@ -0,0 +1,7 @@
[Unit]
Description=A simple backup script
After=network-online.target
[Service]
Type=oneshot
ExecStart=/opt/backupd/backupd

9
backupd.timer Normal file
View File

@ -0,0 +1,9 @@
[Unit]
Description=Run backupd daily
[Timer]
OnCalendar=*-*-* 09:00:00 UTC
Persistent=true
[Install]
WantedBy=timers.target