Skip to content

Commit ac6b709

Browse files
author
Joji Mekkatt
committed
Fix rule cli breakage due to model change
1 parent 1e1892c commit ac6b709

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

netctl/netctl.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ func addRule(ctx *cli.Context) {
106106
}
107107

108108
// If from EPG is specified, make sure from network is specified too
109-
if ctx.String("from-group") != "" && ctx.String("from-network") == "" {
110-
errExit(ctx, exitHelp, "from-group argument requires -from-network too", false)
109+
if ctx.String("from-group") != "" && ctx.String("from-network") != "" {
110+
errExit(ctx, exitHelp, "Can't specify both from-group argument and -from-network ", false)
111111
}
112112
} else if dir == "out" {
113113
if ctx.String("from-group") != "" {
@@ -121,8 +121,8 @@ func addRule(ctx *cli.Context) {
121121
}
122122

123123
// If to EPG is specified, make sure to network is specified too
124-
if ctx.String("to-group") != "" && ctx.String("to-network") == "" {
125-
errExit(ctx, exitHelp, "-to-group argument requires -to-network too", false)
124+
if ctx.String("to-group") != "" && ctx.String("to-network") != "" {
125+
errExit(ctx, exitHelp, "Can't specify both -to-group and -to-network", false)
126126
}
127127
} else {
128128
errExit(ctx, exitHelp, "Unknown direction", false)

0 commit comments

Comments
 (0)