Skip to content

Commit ca290e1

Browse files
authored
Fix cordon commands messages. (#2803)
1 parent b945d37 commit ca290e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/command/machine/cordon.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
func newMachineCordon() *cobra.Command {
1515
const (
16-
short = "Reactive all services on a machine"
16+
short = "Deactivate all services on a machine"
1717
long = short + "\n"
1818
usage = "cordon <id> [<id>...]"
1919
)

internal/command/machine/uncordon.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
func newMachineUncordon() *cobra.Command {
1515
const (
16-
short = "Deactivate all services on a machine"
16+
short = "Reactive all services on a machine"
1717
long = short + "\n"
1818
usage = "uncordon <id> [<id>...]"
1919
)

0 commit comments

Comments
 (0)