Skip to content

Commit

Permalink
Features/health rules overwrite param (#40)
Browse files Browse the repository at this point in the history
* backwards compatability for health rules runtime param overwrite-health-rules;

* Update false flag name;
  • Loading branch information
AlexJov committed Nov 24, 2020
1 parent cee290c commit 16c48cb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,11 @@ parse_commandline()
_arg_health_rules_only_explicitly_set=true
test "${1:0:5}" = "--no-" && _arg_health_rules_only=false
;;
--no-overwrite-health-rules|--overwrite-health-rules)
_arg_health_rules_overwrite=true
_arg_health_rules_overwrite_explicitly_set=true
test "${1:0:5}" = "--no-" && _arg_health_rules_overwrite=false
;;
--no-health-rules-overwrite|--health-rules-overwrite)
_arg_health_rules_overwrite=true
_arg_health_rules_overwrite_explicitly_set=true
Expand Down

0 comments on commit 16c48cb

Please sign in to comment.