Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions control/control.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ func (s *Server) dispatch(ctx context.Context, req Request) Response {
}
data, _ := json.Marshal(map[string]string{
"host": params.Host,
"key": params.Host,
"message": "Connected to " + params.Host,
})
return Response{OK: true, Data: data}
Expand Down
3 changes: 2 additions & 1 deletion manifest/manifests/systemctl_is-active.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: systemctl_is-active
description: Check whether units are active
category: services
flags: []
flags:
- flag: "--no-pager"
stdin: false
stdout: true
3 changes: 2 additions & 1 deletion manifest/manifests/systemctl_is-enabled.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: systemctl_is-enabled
description: Check whether unit files are enabled
category: services
flags: []
flags:
- flag: "--no-pager"
stdin: false
stdout: true
1 change: 1 addition & 0 deletions manifest/manifests/systemctl_list-units.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ flags:
- flag: "--type"
takes_value: true
- flag: "--failed"
- flag: "--no-pager"
stdin: false
stdout: true
1 change: 1 addition & 0 deletions manifest/manifests/systemctl_show.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ category: services
flags:
- flag: "-p"
takes_value: true
- flag: "--no-pager"
stdin: false
stdout: true