Fix for config.pl if no arguments are passed
diff --git a/scripts/config.pl b/scripts/config.pl
index 6f11d0e..8921a87 100755
--- a/scripts/config.pl
+++ b/scripts/config.pl
@@ -145,6 +145,9 @@
     }
 }
 
+# If no command was specified, exit...
+if ( not defined($action) ){ die $usage; }
+
 # Check the config file is present
 if (! -f $config_file)  {