diff --git a/cmd/syncthing/cli/operations.go b/cmd/syncthing/cli/operations.go index ce1d4b79b..5a8a062ce 100644 --- a/cmd/syncthing/cli/operations.go +++ b/cmd/syncthing/cli/operations.go @@ -27,11 +27,6 @@ var operationCommand = cli.Command{ Usage: "Shutdown syncthing", Action: expects(0, emptyPost("system/shutdown")), }, - { - Name: "reset", - Usage: "Reset syncthing deleting all folders and devices", - Action: expects(0, emptyPost("system/reset")), - }, { Name: "upgrade", Usage: "Upgrade syncthing (if a newer version is available)", @@ -39,7 +34,7 @@ var operationCommand = cli.Command{ }, { Name: "folder-override", - Usage: "Override changes on folder (remote for sendonly, local for receiveonly)", + Usage: "Override changes on folder (remote for sendonly, local for receiveonly). WARNING: Destructive - deletes/changes your data.", ArgsUsage: "[folder id]", Action: expects(1, foldersOverride), }, diff --git a/cmd/syncthing/cli/show.go b/cmd/syncthing/cli/show.go index 1044124d3..7f0bdf2e4 100644 --- a/cmd/syncthing/cli/show.go +++ b/cmd/syncthing/cli/show.go @@ -23,7 +23,7 @@ var showCommand = cli.Command{ { Name: "config-status", Usage: "Show configuration status, whether or not a restart is required for changes to take effect", - Action: expects(0, dumpOutput("system/config/insync")), + Action: expects(0, dumpOutput("config/restart-required")), }, { Name: "system",