mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
22 lines
249 B
Perl
22 lines
249 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
sub getfiles {
|
||
|
|
||
|
opendir(DIR,".");
|
||
|
|
||
|
while($file = readdir(DIR)) {
|
||
|
|
||
|
if($file !~ /^\./) {
|
||
|
|
||
|
foreach $all ($file) {
|
||
|
|
||
|
system("snmpttconvertmib --in=$all --out=/etc/snmp/snmptt-d.conf");
|
||
|
print "$all\n";
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
closedir(DIR);
|
||
|
}
|
||
|
|
||
|
&getfiles;
|