From 8de4c4ca3f24e13b59ca10b42b777bb1164e86d6 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Mon, 30 Oct 2023 09:12:45 +0100 Subject: [PATCH] Add noset/set commands for vault password (#658) Signed-off-by: Christian Berendt --- .../new-vault-password-commands-48db1885ef2519f1.yaml | 8 ++++++++ setup.cfg | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 releasenotes/notes/new-vault-password-commands-48db1885ef2519f1.yaml diff --git a/releasenotes/notes/new-vault-password-commands-48db1885ef2519f1.yaml b/releasenotes/notes/new-vault-password-commands-48db1885ef2519f1.yaml new file mode 100644 index 00000000..cdc51dd3 --- /dev/null +++ b/releasenotes/notes/new-vault-password-commands-48db1885ef2519f1.yaml @@ -0,0 +1,8 @@ +--- +features: + - | + Add noset/set commands for `vault password`. +deprecations: + - | + The old `vault password set` and `vault password noset` + commands will be removed in the future. diff --git a/setup.cfg b/setup.cfg index d8f3c136..5d0d2676 100644 --- a/setup.cfg +++ b/setup.cfg @@ -80,11 +80,13 @@ osism.commands: netbox sync ironic = osism.commands.netbox:Ironic noset bootstrap = osism.commands.noset:NoBootstrap noset maintenance = osism.commands.noset:NoMaintenance + noset vault password = osism.commands.vault:UnsetPassword reconciler = osism.commands.reconciler:Run reconciler sync = osism.commands.reconciler:Sync service = osism.commands.service:Run set bootstrap = osism.commands.set:Bootstrap set maintenance = osism.commands.set:Maintenance + set vault password = osism.commands.vault:SetPassword task list = osism.commands.get:Tasks task revoke = osism.commands.task:Revoke validate = osism.commands.validate:Run