Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cmd/incus/config_template.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ type cmdConfigTemplateList struct {
func (c *cmdConfigTemplateList) Command() *cobra.Command {
cmd := &cobra.Command{}
cmd.Use = usage("list", i18n.G("[<remote>:]<instance>"))
cmd.Aliases = []string{"ls"}
cmd.Short = i18n.G("List instance file templates")
cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
`List instance file templates`))
Expand Down
1 change: 1 addition & 0 deletions cmd/incus/snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ type snapshotColumn struct {
func (c *cmdSnapshotList) Command() *cobra.Command {
cmd := &cobra.Command{}
cmd.Use = usage("list", i18n.G("[<remote>:]<instance>"))
cmd.Aliases = []string{"ls"}
cmd.Short = i18n.G("List instance snapshots")
cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
`List instance snapshots
Expand Down
1 change: 1 addition & 0 deletions cmd/incus/storage_volume.go
Original file line number Diff line number Diff line change
Expand Up @@ -2791,6 +2791,7 @@ type cmdStorageVolumeSnapshotList struct {
func (c *cmdStorageVolumeSnapshotList) Command() *cobra.Command {
cmd := &cobra.Command{}
cmd.Use = usage("list", i18n.G("[<remote>:]<pool> <volume>"))
cmd.Aliases = []string{"ls"}
cmd.Short = i18n.G("List storage volume snapshots")
cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
`List storage volume snapshots`))
Expand Down
Loading