Skip to content

Commit

Permalink
Merge pull request #160 from anarcat/lvm-all
Browse files Browse the repository at this point in the history
lvm: add support for "all" checks
  • Loading branch information
SuperQ committed Jun 8, 2023
2 parents 502a85e + 0ca17e6 commit 5aca539
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lvm-prom-collector
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,14 @@ snapshots=false
physical=false
groups=false

while getopts "htpsg" opt; do
while getopts "ahtpsg" opt; do
case $opt in
a)
thin_pools=true
snapshots=true
physical=true
groups=true
;;
p)
physical=true
;;
Expand Down

0 comments on commit 5aca539

Please sign in to comment.