1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 02:18:08 +00:00

support for 'adaX' and 'daX' devices

This commit is contained in:
Manuel Schneider 2012-01-19 18:44:17 +01:00
parent c1a5b60113
commit 006ef061c2

View file

@ -139,7 +139,7 @@ if ($^O eq 'linux') {
# without probing them.
} elsif ($^O eq 'freebsd') {
opendir(DEV, '/dev');
@drives = grep /^ad[0-9]+$/, readdir DEV;
@drives = grep /^(a?da|ad)[0-9]+$/, readdir DEV;
closedir(DEV);
} elsif ($^O eq 'solaris') {
@drives = map { s@.*/@@ ; $_ } glob '/dev/rdsk/c*t*d*s2';