github.com/demonoid81/moby@v0.0.0-20200517203328-62dd8e17c460/cmd/dockerd/daemon_linux.go (about)

     1  package main
     2  
     3  import systemdDaemon "github.com/coreos/go-systemd/v22/daemon"
     4  
     5  // preNotifySystem sends a message to the host when the API is active, but before the daemon is
     6  func preNotifySystem() {
     7  }
     8  
     9  // notifySystem sends a message to the host when the server is ready to be used
    10  func notifySystem() {
    11  	// Tell the init daemon we are accepting requests
    12  	go systemdDaemon.SdNotify(false, systemdDaemon.SdNotifyReady)
    13  }