Skip to content

Commit

Permalink
Instance reset password: remove wrong "rm" alias (#583)
Browse files Browse the repository at this point in the history
# Description
<!--
* Prefix: the title with the component name being changed. Add a short
and self describing sentence to ease the review
* Please add a few lines providing context and describing the change
* Please self comment changes whenever applicable to help with the
review process
* Please keep the checklist as part of the PR. Tick what applies to this
change.
-->

Remove the wrong instance reset password `rm` alias.

## Checklist
(For exoscale contributors)

* [x] Changelog updated (under *Unreleased* block)
* [x] Testing

## Testing

<!--
Describe the tests you did
-->

---------

Signed-off-by: Pierre-Emmanuel Jacquier <[email protected]>
  • Loading branch information
pierre-emmanuelJ authored Mar 27, 2024
1 parent 7005259 commit 84ef254
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Instance reset password: remove wrong "rm" alias #583

### Deprecations

- Removed Windows ARM targets from prebuilt binaries #582
Expand Down
2 changes: 1 addition & 1 deletion cmd/instance_reset_password.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type instanceResetPasswordCmd struct {
Zone string `cli-short:"z" cli-usage:"instance zone"`
}

func (c *instanceResetPasswordCmd) cmdAliases() []string { return gRemoveAlias }
func (c *instanceResetPasswordCmd) cmdAliases() []string { return nil }

func (c *instanceResetPasswordCmd) cmdShort() string {
return "Reset the password of a Compute instance"
Expand Down

0 comments on commit 84ef254

Please sign in to comment.