Skip to content

Commit 87f2e38

Browse files
committed
systemd: add notify support
That way, we can reliably know when the daemon is ready.
1 parent a4914a4 commit 87f2e38

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

cmd/ipfs/daemon.go

+2
Original file line numberDiff line numberDiff line change
@@ -411,10 +411,12 @@ func daemonFunc(req *cmds.Request, re cmds.ResponseEmitter, env cmds.Environment
411411

412412
// The daemon is *finally* ready.
413413
fmt.Printf("Daemon is ready\n")
414+
notifyReady()
414415

415416
// Give the user some immediate feedback when they hit C-c
416417
go func() {
417418
<-req.Context.Done()
419+
notifyStopping()
418420
fmt.Println("Received interrupt signal, shutting down...")
419421
fmt.Println("(Hit ctrl-c again to force-shutdown the daemon.)")
420422
}()

cmd/ipfs/daemon_linux.go

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// +build linux
2+
3+
package main
4+
5+
import (
6+
daemon "github.com/coreos/go-systemd/daemon"
7+
)
8+
9+
func notifyReady() {
10+
_, _ = daemon.SdNotify(false, daemon.SdNotifyReady)
11+
}
12+
13+
func notifyStopping() {
14+
_, _ = daemon.SdNotify(false, daemon.SdNotifyStopping)
15+
}

cmd/ipfs/daemon_other.go

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// +build !linux
2+
3+
package main
4+
5+
func notifyReady() {}
6+
7+
func notifyStopping() {}

misc/systemd/ipfs.service

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Description=IPFS Daemon
33

44
[Service]
5+
Type=notify
56
ExecStart=/usr/bin/ipfs daemon --init --migrate
67
KillSignal=SIGINT
78

0 commit comments

Comments
 (0)