changed alias mct to mcr, as it collides with existing alias mct=microk8s.ctr

This commit is contained in:
Pascal Kontschan 2026-02-24 17:28:28 +01:00
commit 6882a5fd0f
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -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. |

View file

@ -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'