()
| 81 | } |
| 82 | |
| 83 | func (s *notifySocket) setupSocketDirectory() error { |
| 84 | return os.Mkdir(path.Dir(s.socketPath), 0o755) |
| 85 | } |
| 86 | |
| 87 | func notifySocketStart(context *cli.Context, notifySocketHost, id string) (*notifySocket, error) { |
| 88 | notifySocket := newNotifySocket(context, notifySocketHost, id) |