Skip to content

Commit

Permalink
Revise docs for 3.0.0-alpha.6 (winsw#713)
Browse files Browse the repository at this point in the history
* Update `reboot` action

* Update Program.cs
  • Loading branch information
nxtn committed Nov 15, 2020
1 parent d0c969d commit 0e835c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/xml-config-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ Each element contains a mandatory `action` attribute, which controls what Window
The legal values for action are:

- `restart`: restart the service
- `reboot`: reboot Windows
- `reboot`: reboot Windows. A blue screen with the [CRITICAL_PROCESS_DIED](https://docs.microsoft.com/windows-hardware/drivers/debugger/bug-check-0xef--critical-process-died) bug check code will be displayed
- `none`: do nothing and leave the service stopped

The possible suffix for the delay attribute is sec/secs/min/mins/hour/hours/day/days. If missing, the delay attribute defaults to 0.
Expand Down
2 changes: 1 addition & 1 deletion src/WinSW/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ internal static int Main(string[] args)
}

{
var customize = new Command("customize")
var customize = new Command("customize", "Customizes the wrapper executable.")
{
Handler = CommandHandler.Create<string, string>(Customize),
};
Expand Down

0 comments on commit 0e835c8

Please sign in to comment.