Carl Bingel - 2004-07-26

Logged In: YES
user_id=476996

Since you had to add the "perl /usr/local/.../nagiostat" to the
exec-command, it seems as your distribution won't execute
the scripts as they are. Check the location of your perl binary
("bash# which perl") and change the first line of all scripts to
reflect the full path told by the which-command. The first line
of the script (#!/usr/bin/perl) (often called hash-bang) tells
the system how to execute the script, in this case that it
should start the perl interpreter.

--Carl