mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 14:50:56 +00:00
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
// Copyright (C) 2019 The Syncthing Authors.
|
|
//
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var showCommand = cli.Command{
|
|
Name: "show",
|
|
HideHelp: true,
|
|
Usage: "Show command group",
|
|
Subcommands: []cli.Command{
|
|
{
|
|
Name: "version",
|
|
Usage: "Show syncthing client version",
|
|
Action: expects(0, dumpOutput("system/version")),
|
|
},
|
|
{
|
|
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")),
|
|
},
|
|
{
|
|
Name: "system",
|
|
Usage: "Show system status",
|
|
Action: expects(0, dumpOutput("system/status")),
|
|
},
|
|
{
|
|
Name: "connections",
|
|
Usage: "Report about connections to other devices",
|
|
Action: expects(0, dumpOutput("system/connections")),
|
|
},
|
|
{
|
|
Name: "usage",
|
|
Usage: "Show usage report",
|
|
Action: expects(0, dumpOutput("svc/report")),
|
|
},
|
|
},
|
|
}
|