You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by ar...@apache.org on 2017/06/28 19:48:13 UTC

svn commit: r1800199 - /vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm

Author: arkurth
Date: Wed Jun 28 19:48:12 2017
New Revision: 1800199

URL: http://svn.apache.org/viewvc?rev=1800199&view=rev
Log:
Trivial
Added missing command string to warning message generated when Windows.pm::set_static_default_gateway fails.

Modified:
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm

Modified: vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm
URL: http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm?rev=1800199&r1=1800198&r2=1800199&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm Wed Jun 28 19:48:12 2017
@@ -8807,7 +8807,7 @@ sub set_static_default_gateway {
 		return;
 	}
 	elsif ($route_add_exit_status ne '0' || grep(/failed/i, @$route_add_output)) {
-		notify($ERRORS{'WARNING'}, 0, "failed to add persistent route to public default gateway: $default_gateway, exit status: $route_add_exit_status, output:\n" . join("\n", @$route_add_output));
+		notify($ERRORS{'WARNING'}, 0, "failed to add persistent route to public default gateway: $default_gateway, exit status: $route_add_exit_status, command: '$route_add_command', output:\n" . join("\n", @$route_add_output));
 		return;
 	}
 	else {