mirror of https://github.com/Icinga/icinga2.git
Fix order of check_disk's ignored paths arguments
fixes #9049 Signed-off-by: Michael Friedrich <michael.friedrich@netways.de>
This commit is contained in:
parent
47b61b7f39
commit
5ce1c13d37
|
@ -578,12 +578,14 @@ object CheckCommand "disk" {
|
||||||
value = "$disk_ignore_eregi_path$"
|
value = "$disk_ignore_eregi_path$"
|
||||||
description = "Regular expression to ignore selected path/partition (case insensitive) (may be repeated)"
|
description = "Regular expression to ignore selected path/partition (case insensitive) (may be repeated)"
|
||||||
repeat_key = true
|
repeat_key = true
|
||||||
|
order = 2
|
||||||
}
|
}
|
||||||
|
|
||||||
"-i" = {
|
"-i" = {
|
||||||
value = "$disk_ignore_ereg_path$"
|
value = "$disk_ignore_ereg_path$"
|
||||||
description = "Regular expression to ignore selected path or partition (may be repeated)"
|
description = "Regular expression to ignore selected path or partition (may be repeated)"
|
||||||
repeat_key = true
|
repeat_key = true
|
||||||
|
order = 2
|
||||||
}
|
}
|
||||||
|
|
||||||
"-t" = {
|
"-t" = {
|
||||||
|
|
Loading…
Reference in New Issue