Subject: | /usr/bin/frontpanel creates object without checking $configfile |
the 'frontpanel' script tries to create the N::A::F object, even if no
options are provided. so if the configfile isnt present, it dies.
this should do something more like
GetOptions(
%foo,
'help|h' => \&help,
) or &help;
if ($conditions) {
## some code here
else { help() }
sub help { print "Do Stuff" }