Indentation: space to tab

This commit is contained in:
BarbUk 2018-11-30 00:41:27 +04:00
parent 4afbf2f987
commit 4944800d09

View File

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