Indentation: space to tab

This commit is contained in:
BarbUk 2018-11-30 00:41:27 +04:00
parent 4afbf2f987
commit 4944800d09
1 changed files with 27 additions and 27 deletions

View File

@ -104,33 +104,33 @@ object CheckCommand "ceph" {
}
object CheckCommand "btrfs" {
import "plugin-check-command"
command = [ "sudo", PluginDir + "/check_btrfs" ]
import "plugin-check-command"
command = [ "sudo", PluginDir + "/check_btrfs" ]
arguments = {
"--allocated-warning-gib" = {
value = "$btrfs_awg$"
description = "Exit with WARNING status if less than the specified amount of disk space (in GiB) is unallocated"
}
"--allocated-critical-gib" = {
value = "$btrfs_acg$"
description = "Exit with CRITICAL status if less than the specified amount of disk space (in GiB) is unallocated"
}
"--allocated-warning-percent" = {
value = "$btrfs_awp$"
description = "Exit with WARNING status if more than the specified percent of disk space is allocated"
}
"--allocated-critical-percent" = {
value = "$btrfs_acp$"
description = "Exit with CRITICAL status if more than the specified percent of disk space is allocated"
}
"--mountpoint" = {
value = "$btrfs_mountpoint$"
description = "Path to the BTRFS mountpoint"
required = true
}
}
vars.btrfs_awp = 80
vars.btrfs_acp = 90
arguments = {
"--allocated-warning-gib" = {
value = "$btrfs_awg$"
description = "Exit with WARNING status if less than the specified amount of disk space (in GiB) is unallocated"
}
"--allocated-critical-gib" = {
value = "$btrfs_acg$"
description = "Exit with CRITICAL status if less than the specified amount of disk space (in GiB) is unallocated"
}
"--allocated-warning-percent" = {
value = "$btrfs_awp$"
description = "Exit with WARNING status if more than the specified percent of disk space is allocated"
}
"--allocated-critical-percent" = {
value = "$btrfs_acp$"
description = "Exit with CRITICAL status if more than the specified percent of disk space is allocated"
}
"--mountpoint" = {
value = "$btrfs_mountpoint$"
description = "Path to the BTRFS mountpoint"
required = true
}
}
vars.btrfs_awp = 80
vars.btrfs_acp = 90
}