Missing the 'r' on the end.
I missed adding the 'r' to the end of the function. Fixing this so that instead of `vssh` which we already have an alias for, we have instead `vsshr`.pull/991/head
parent
3218f2799e
commit
138139c25e
|
|
@ -1,4 +1,4 @@
|
||||||
# Simple function for vagrant ssh that immediately switches to root.
|
# Simple function for vagrant ssh that immediately switches to root.
|
||||||
function vssh() {
|
function vsshr() {
|
||||||
vagrant ssh $1 -- -t 'sudo su -; /bin/bash'
|
vagrant ssh $1 -- -t 'sudo su -; /bin/bash'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue