From 6882a5fd0ffc6eed978c661b6849ae90bf8b7d8c Mon Sep 17 00:00:00 2001 From: Pascal Kontschan Date: Tue, 24 Feb 2026 17:28:28 +0100 Subject: [PATCH] changed alias mct to mcr, as it collides with existing alias mct=microk8s.ctr --- plugins/molecule/README.md | 2 +- plugins/molecule/molecule.plugin.zsh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/molecule/README.md b/plugins/molecule/README.md index 09ae18c29..cae4ed22e 100644 --- a/plugins/molecule/README.md +++ b/plugins/molecule/README.md @@ -14,7 +14,7 @@ plugins=(... molecule) | Alias | Command | Description | | :---- | :---------------- | ---------------------------------------------------------------------------------- | | mol | molecule | Molecule aids in the development and testing of Ansible roles. | -| mct | molecule create | Use the provisioner to start the instances. | +| mcr | molecule create | Use the provisioner to start the instances. | | mcv | molecule converge | Use the provisioner to configure instances (dependency, create, prepare converge). | | mls | molecule list | List status of instances. | | mvf | molecule verify | Run automated tests against instances. | diff --git a/plugins/molecule/molecule.plugin.zsh b/plugins/molecule/molecule.plugin.zsh index ff6990c65..a530a8134 100644 --- a/plugins/molecule/molecule.plugin.zsh +++ b/plugins/molecule/molecule.plugin.zsh @@ -16,7 +16,7 @@ _MOLECULE_COMPLETE=zsh_source molecule >| "$ZSH_CACHE_DIR/completions/_molecule" # Alias # molecule: https://docs.ansible.com/projects/molecule/ alias mol='molecule' -alias mct='molecule create' +alias mcr='molecule create' alias mcv='molecule converge' alias mls='molecule list' alias mvf='molecule verify'