-
Notifications
You must be signed in to change notification settings - Fork 781
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement systemd notification support after all templates have been …
…rendered (#1794) * Reopening PR, request to add feature systemd notify on runner * Change the directory structure
- Loading branch information
1 parent
2d2654f
commit 6b9060e
Showing
3 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package systemd | ||
|
||
import ( | ||
"errors" | ||
"net" | ||
"os" | ||
) | ||
|
||
var errNoSocket = errors.New("no socket") | ||
|
||
const Ready = "READY=1" | ||
|
||
// Notifier provides a method to send a message to systemd. | ||
type Notifier struct{} | ||
|
||
// Notify sends a message to the init daemon. It is common to ignore the error. | ||
func (n *Notifier) Notify(state string) error { | ||
addr := &net.UnixAddr{ | ||
Name: os.Getenv("NOTIFY_SOCKET"), | ||
Net: "unixgram", | ||
} | ||
|
||
if addr.Name == "" { | ||
return errNoSocket | ||
} | ||
|
||
conn, err := net.DialUnix(addr.Net, nil, addr) | ||
if err != nil { | ||
return err | ||
} | ||
defer conn.Close() | ||
|
||
_, err = conn.Write([]byte(state)) | ||
return err | ||
} |