Skip to content

Commit a81de1b

Browse files
Ramkishor ChaladiRamkishor Chaladi
authored andcommitted
updated the latest text in Long
1 parent 02f7022 commit a81de1b

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

plugin/commands/block/volume_lun.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ func NewVolumeLunCommand(sl *metadata.SoftlayerStorageCommand) *VolumeLunCommand
2525
cobraCmd := &cobra.Command{
2626
Use: "volume-set-lun-id " + T("IDENTIFIER") + " " + T("LUN_ID"),
2727
Short: T("Set the LUN ID on an existing block storage volume"),
28-
Long: T(`${COMMAND_NAME} sl {{.storageType}} volume-set-lun-id VOLUME_ID LUN_ID
28+
Long: T("Set the LUN ID on an existing block storage volume") + " " + T(`${COMMAND_NAME} sl {{.storageType}} volume-set-lun-id VOLUME_ID LUN_ID
2929
3030
The LUN ID only takes effect during the Host Authorization process. It is
3131
recommended (but not necessary) to de-authorize all hosts before using
32-
this method.
32+
this method. See "block access-revoke".
3333
VOLUME_ID - the volume ID on which to set the LUN ID
3434
LUN_ID - recommended range is an integer between 0 and 255. Advanced users
3535
can use an integer between 0 and 4095`, sl.StorageI18n),

plugin/commands/block/volume_refresh.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
type VolumeRefreshCommand struct {
1515
*metadata.SoftlayerStorageCommand
1616
Command *cobra.Command
17-
StorageManager managers.StorageManager
18-
Force bool
17+
StorageManager managers.StorageManager
18+
Force bool
1919
}
2020

2121
func NewVolumeRefreshCommand(sl *metadata.SoftlayerStorageCommand) *VolumeRefreshCommand {
@@ -26,7 +26,7 @@ func NewVolumeRefreshCommand(sl *metadata.SoftlayerStorageCommand) *VolumeRefres
2626
cobraCmd := &cobra.Command{
2727
Use: "volume-refresh " + T("IDENTIFIER") + " " + T("SNAPSHOT_ID"),
2828
Short: T("Refresh a duplicate volume with a snapshot from its parent."),
29-
Long: T(`${COMMAND_NAME} sl {{.storageType}} volume-refresh VOLUME_ID SNAPSHOT_ID
29+
Long: T("Refresh a duplicate volume with a snapshot from its parent.") + " " + T(`${COMMAND_NAME} sl {{.storageType}} volume-refresh VOLUME_ID SNAPSHOT_ID
3030
3131
EXAMPLE:
3232
${COMMAND_NAME} sl {{.storageType}} volume-refresh VOLUME_ID SNAPSHOT_ID

plugin/commands/block/volume_set_note.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func NewVolumeSetNoteCommand(sl *metadata.SoftlayerStorageCommand) *VolumeSetNot
2727
cobraCmd := &cobra.Command{
2828
Use: "volume-set-note " + T("IDENTIFIER"),
2929
Short: T("Set note for an existing {{.storageType}} storage volume.", sl.StorageI18n),
30-
Long: T(`${COMMAND_NAME} sl {{.storageType}} volume-set-note [OPTIONS] VOLUME_ID
30+
Long: T("Set note for an existing {{.storageType}} storage volume.", sl.StorageI18n) + " " + T(`${COMMAND_NAME} sl {{.storageType}} volume-set-note [OPTIONS] VOLUME_ID
3131
3232
EXAMPLE:
3333
${COMMAND_NAME} sl {{.storageType}} volume-set-note 12345678 --note 'this is my note'`, sl.StorageI18n),

0 commit comments

Comments
 (0)