-
Notifications
You must be signed in to change notification settings - Fork 0
/
status.go
41 lines (38 loc) · 984 Bytes
/
status.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package fleet
import (
"fmt"
"os"
)
// Status prints the systemd status of target unit(s)
func (c *FleetClient) Status(target string) (err error) {
units, err := c.Units(target)
if err != nil {
return
}
for _, unit := range units {
printUnitStatus(unit)
fmt.Println()
}
return
}
// printUnitStatus displays the systemd status for a given unit
func printUnitStatus(name string) int {
u, err := cAPI.Unit(name)
if suToGlobal(*u) {
fmt.Fprintf(os.Stderr, "Unable to get status for global unit %s. Check the status on the host using systemctl.\n", name)
return 1
}
if err != nil {
fmt.Fprintf(os.Stderr, "Error retrieving Unit %s: %v", name, err)
return 1
}
if u == nil {
fmt.Fprintf(os.Stderr, "Unit %s does not exist.\n", name)
return 1
} else if u.CurrentState == "" {
fmt.Fprintf(os.Stderr, "Unit %s does not appear to be running.\n", name)
return 1
}
cmd := fmt.Sprintf("systemctl status -l %s", name)
return runCommand(cmd, u.MachineID)
}