On Tuesday, November 26, 2013 8:58:01 AM UTC-5, Michael DeHaan wrote: > > Yeah that's not really going to work well in current state, because the > system won't know to run the "shell" command. > > There's no way to configure a regular shell account? > >
There is a way to provide regular shell account, but appliance upgrade overwrites it. Plus Arbor guys discouraging it too :-( If we can only redefine ssh as "ssh -ttt remotehost shell" we would be golden. Here is how we run things manually. ~$ ssh atl-col-01 Last login: Tue Nov 26 16:45:52 2013 from 192.168.0.248 ArbOS v5.2 Copyright (c) 2000-2013 Arbor Networks, Inc. All Rights Reserved. Welcome to ArbOS admin@atl-col-01:/# shell DIAG> uname -a Linux atl-col-01 2.6.18-arbux26 #1 SMP PREEMPT Thu Aug 2 16:16:46 EDT 2012 i686 i686 i386 GNU/Linux DIAG> exit exit admin@atl-col-01:/# exit Connection to atl-col-01 closed. ~$ Here is how we run it interactively using a script which I like to replace with ansible ~$ echo "uname -a; exit" | ssh -qtt atl-col-01 shell uname -a; exit DIAG> uname -a; exit Linux atl-col-01 2.6.18-arbux26 #1 SMP PREEMPT Thu Aug 2 16:16:46 EDT 2012 i686 i686 i386 GNU/Linux exit ~$ > > > > On Tue, Nov 26, 2013 at 8:28 AM, Asif Iqbal <[email protected]<javascript:> > > wrote: > >> Once you ssh to arbor, you will need to type shell to get a bash shell. >> From there it is pure linux. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ansible Project" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected] <javascript:>. >> For more options, visit https://groups.google.com/groups/opt_out. >> > > > > -- > Michael DeHaan <[email protected] <javascript:>> > CTO, AnsibleWorks, Inc. > http://www.ansibleworks.com/<http://www.google.com/url?q=http%3A%2F%2Fwww.ansibleworks.com%2F&sa=D&sntz=1&usg=AFQjCNEn7XMcb-1wMxliSyOhlnyBBlDaQg> > > -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
