Skip to content

Commit

Permalink
ncm-sudo: Remove trailing slashes from profile paths
Browse files Browse the repository at this point in the history
(Fix lint warnings)
  • Loading branch information
jrha committed Nov 29, 2024
1 parent 8fd8140 commit 0556319
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ include pro_declaration_functions_sudo;
"/software/components/sudo/active" = true;
"/software/components/sudo/dispatch" = true;

"/software/components/sudo/general_options/" = list(
"/software/components/sudo/general_options" = list(
dict(
"user", "mejias",
"options", dict(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ include pro_declaration_functions_sudo;
"/software/components/sudo/active" = true;
"/software/components/sudo/dispatch" = true;

"/software/components/sudo/general_options/" = list(
"/software/components/sudo/general_options" = list(
dict(
"user", "mejias",
"options", dict(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ include pro_declaration_functions_sudo;
"/software/components/sudo/active" = true;
"/software/components/sudo/dispatch" = true;

"/software/components/sudo/general_options/" = list(
"/software/components/sudo/general_options" = list(
dict(
"user", "mejias",
"options", dict(
Expand Down
2 changes: 1 addition & 1 deletion ncm-sudo/src/test/resources/test_general_options_errru.pan
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ include pro_declaration_functions_sudo;
"/software/components/sudo/active" = true;
"/software/components/sudo/dispatch" = true;

"/software/components/sudo/general_options/" = list(
"/software/components/sudo/general_options" = list(
dict(
"user", "munoz",
"host", "192.168.0.1",
Expand Down
2 changes: 1 addition & 1 deletion ncm-sudo/src/test/resources/test_general_options_valid.pan
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ include pro_declaration_functions_sudo;
"/software/components/sudo/active" = true;
"/software/components/sudo/dispatch" = true;

"/software/components/sudo/general_options/" = list(
"/software/components/sudo/general_options" = list(
dict(
"options", dict("insults", true),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ include pro_declaration_functions_sudo;
"/software/components/sudo/active" = true;
"/software/components/sudo/dispatch" = true;

"/software/components/sudo/general_options/" = list(
"/software/components/sudo/general_options" = list(
dict(
"host", "192.168.0.1",
"options", dict("insults", true),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ include pro_declaration_functions_sudo;
"/software/components/sudo/active" = true;
"/software/components/sudo/dispatch" = true;

"/software/components/sudo/general_options/" = list(
"/software/components/sudo/general_options" = list(
dict(
"run_as", "munoz",
"options", dict("insults", true),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ include pro_declaration_functions_sudo;
"/software/components/sudo/active" = true;
"/software/components/sudo/dispatch" = true;

"/software/components/sudo/general_options/" = list(
"/software/components/sudo/general_options" = list(
dict(
"user", "munoz",
"options", dict("insults", false),
Expand Down

0 comments on commit 0556319

Please sign in to comment.