NTP Monitor
Problem this snippet solves: Version 9 (tested on v9.2.4)
Based on F5's example monitor, with the NTP check added. We make sure that the node gives us an NTP response and that the node hasn't beco...
Published Mar 12, 2015
Version 1.0philh_127905
Nimbostratus
Joined May 04, 2019
philh_127905
Nimbostratus
Joined May 04, 2019
Mark_57945
May 08, 2017Nimbostratus
If I read what you did correctly, you created /shared/lib/perl5/NTP.pm. Unfortunately, that isn't how Perl manages it's modules. The way Perl typically stores/accesses it's module files, the :: is translated into a file system directory break.
So, for Net::NTP above, stored in /shared/lib/perl5, the full path to NTP.pm that Perl expects would be /shared/lib/perl5/Net/NTP.pm.