.bash_aliases 670 B

123456789101112131415161718192021
  1. # Systems
  2. alias io="ssh fdamstra@10.42.42.2"
  3. alias salt-master="ssh fdamstra@salt-master.home.monkeybox.org"
  4. alias centosplay="ssh fdamstra@centosplay.home.monkeybox.org"
  5. # Salt
  6. alias highstate="salt --force-color '*' state.highstate test=true | less -R; echo TEST ONLY. To run, type \'highstate.yes\'"
  7. alias highstate.yes="salt --force-color '*' state.highstate | less -R"
  8. alias salt="salt --force-color"
  9. # Linux Only:
  10. if [[ "$(uname -s)" == "Linux" ]]; then
  11. alias keybase="keybase --standalone"
  12. fi
  13. # OS X Only
  14. if [[ "$(uname -s)" == "Darwin" ]]; then
  15. # Terraform switching (OS X Only, for now)
  16. alias tf11="tfswitch 0.11.13"
  17. alias tf12="tfswitch 0.12.24"
  18. fi