Skip to content
This repository has been archived by the owner on Aug 6, 2022. It is now read-only.

Commit

Permalink
Merge pull request #12 from RonMallory/patch-10
Browse files Browse the repository at this point in the history
fix: add molecule test alias
  • Loading branch information
RonMallory authored Sep 25, 2020
2 parents 4a74840 + 0be1c95 commit 5d8a0f7
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .bash_aliases
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,25 @@ alias psg="ps aux | grep -v grep | grep -i -e VSZ -e"
alias mkdir="mkdir -pv"
# wget default
alias wget="wget -c"

# ----------------------
# Vagrant Aliases
# ----------------------

## create a snapshot
alias vpu='vagrant snapshot push'
alias vspu='vagrant snapshot push'
## restore to snapshot
alias vpp='vagrant snapshot pop'
alias vspo='vagrant snapshot pop'
## start vagrant
alias vu='vagrant up'
## vagrant destroy
alias vd='vagrant destroy --force'
## vagrant up and snapshot push
alias vusp'vagrant up && snapshot push'
# ----------------------
# Git Aliases
# ----------------------

alias ga='git add'
alias gaa='git add --all'
alias gb='git branch'
Expand Down Expand Up @@ -79,7 +84,7 @@ alias gstp='git stash pop'
alias gsts='git stash save'

# ----------------------
# Ansible Alias
# Ansible Aliases
# ----------------------

alias ap='ansible-playbook'
Expand All @@ -88,3 +93,10 @@ alias ag='ansible-galaxy'
alias alint='ansible-lint'
alias ylint='yamllint'

# ----------------------
# Molecule Aliases
# ----------------------

alias mt='molecule test'
alias mtd'molecule --debug test'

0 comments on commit 5d8a0f7

Please sign in to comment.