123456789101112131415161718192021 |
- # Systems
- alias io="ssh fdamstra@10.42.42.2"
- alias salt-master="ssh fdamstra@salt-master.home.monkeybox.org"
- alias centosplay="ssh fdamstra@centosplay.home.monkeybox.org"
- # Salt
- alias highstate="salt --force-color '*' state.highstate test=true | less -R; echo TEST ONLY. To run, type \'highstate.yes\'"
- alias highstate.yes="salt --force-color '*' state.highstate | less -R"
- alias salt="salt --force-color"
- # Linux Only:
- if [[ "$(uname -s)" == "Linux" ]]; then
- alias keybase="keybase --standalone"
- fi
- # OS X Only
- if [[ "$(uname -s)" == "Darwin" ]]; then
- # Terraform switching (OS X Only, for now)
- alias tf11="tfswitch 0.11.13"
- alias tf12="tfswitch 0.12.24"
- fi
|