fc161eb
diff -urNp old/doc/ipmitool.1.in new/doc/ipmitool.1.in
fc161eb
--- old/doc/ipmitool.1.in	2017-10-03 16:10:50.446539988 +0200
fc161eb
+++ new/doc/ipmitool.1.in	2017-10-03 16:16:37.039673239 +0200
41cfa04
@@ -3170,13 +3170,14 @@ SOL configuration data for the currently
41cfa04
 
41cfa04
 Enable, disable or show status of SOL payload for the user on the specified channel. 
41cfa04
 .TP 
41cfa04
-\fIset\fP <\fBparameter\fR> <\fBvalue\fR> [<\fBchannel\fR>]
41cfa04
+\fIset\fP <\fBparameter\fR> <\fBvalue\fR> [<\fBchannel\fR>] [\fBnoguard\fR]
41cfa04
 .br 
41cfa04
 
41cfa04
 Configure parameters for Serial Over Lan.  If no channel is given,
41cfa04
 it will display SOL configuration data for the currently used
41cfa04
 channel.  Configuration parameter updates are automatically guarded
41cfa04
-with the updates to the set\-in\-progress parameter.
41cfa04
+with the updates to the set\-in\-progress parameter, unless \fInoguard\fR
41cfa04
+parameter is present.
41cfa04
 .RS
41cfa04
 .TP 
41cfa04
 Valid parameters and values are:
41cfa04
diff -urNp old/lib/ipmi_sol.c new/lib/ipmi_sol.c
41cfa04
--- old/lib/ipmi_sol.c	2017-10-03 16:10:50.447539996 +0200
41cfa04
+++ new/lib/ipmi_sol.c	2017-10-03 16:18:37.079006949 +0200
41cfa04
@@ -1875,7 +1875,7 @@ static void
41cfa04
 print_sol_usage(void)
41cfa04
 {
41cfa04
 	lprintf(LOG_NOTICE, "SOL Commands: info [<channel number>]");
41cfa04
-	lprintf(LOG_NOTICE, "              set <parameter> <value> [channel]");
41cfa04
+	lprintf(LOG_NOTICE, "              set <parameter> <value> [channel] [noguard]");
41cfa04
 	lprintf(LOG_NOTICE, "              payload <enable|disable|status> [channel] [userid]");
41cfa04
 	lprintf(LOG_NOTICE, "              activate [<usesolkeepalive|nokeepalive>] [instance=<number>]");
41cfa04
 	lprintf(LOG_NOTICE, "              deactivate [instance=<number>]");
41cfa04
@@ -1890,6 +1890,8 @@ print_sol_usage(void)
41cfa04
 static void
41cfa04
 print_sol_set_usage(void)
41cfa04
 {
41cfa04
+	lprintf(LOG_NOTICE, "\nSOL set usage: \n");
41cfa04
+	lprintf(LOG_NOTICE, "  sol set <parameter> <value> [channel] [noguard]\n");
41cfa04
 	lprintf(LOG_NOTICE, "\nSOL set parameters and values: \n");
41cfa04
   	lprintf(LOG_NOTICE, "  set-in-progress             set-complete | "
41cfa04
 		"set-in-progress | commit-write");