mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
serve restic: trigger systemd notify
Allow to use Type=notify together with serving restic api
This commit is contained in:
parent
bdfe213c47
commit
99dd748fec
@ -13,6 +13,8 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
sysdnotify "github.com/iguanesolutions/go-systemd/v5/notify"
|
||||
|
||||
"github.com/go-chi/chi/v5"
|
||||
"github.com/go-chi/chi/v5/middleware"
|
||||
"github.com/rclone/rclone/cmd"
|
||||
@ -177,7 +179,17 @@ with a path of ` + "`/<username>/`" + `.
|
||||
return nil
|
||||
}
|
||||
fs.Logf(s.f, "Serving restic REST API on %s", s.URLs())
|
||||
|
||||
if err := sysdnotify.Ready(); err != nil {
|
||||
fs.Logf(s.f, "failed to notify ready to systemd: %v", err)
|
||||
}
|
||||
|
||||
s.Wait()
|
||||
|
||||
if err := sysdnotify.Stopping(); err != nil {
|
||||
fs.Logf(s.f, "failed to notify stopping to systemd: %v", err)
|
||||
}
|
||||
|
||||
return nil
|
||||
})
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user