Use go-systemd const instead of magic string in Linux version of dockerd

Signed-off-by: Christian Muehlhaeuser <muesli@gmail.com>
This commit is contained in:
Christian Muehlhaeuser 2018-05-23 19:06:34 +02:00
parent 8991bac2e0
commit d393774a53
No known key found for this signature in database
GPG Key ID: 8E2950DE7C04491D
1 changed files with 1 additions and 1 deletions

View File

@ -9,5 +9,5 @@ func preNotifySystem() {
// notifySystem sends a message to the host when the server is ready to be used // notifySystem sends a message to the host when the server is ready to be used
func notifySystem() { func notifySystem() {
// Tell the init daemon we are accepting requests // Tell the init daemon we are accepting requests
go systemdDaemon.SdNotify(false, "READY=1") go systemdDaemon.SdNotify(false, systemdDaemon.SdNotifyReady)
} }