Browse code

Launch screen with bash as shell

Since screen commands are bash specifics make sure we launch screen with
bash login shell instead of other shells.

Fixes bug928883.

Change-Id: I62b4c7182682deb4ef16ed0cf1a3b5a130c1c4ee

Chmouel Boudjnah authored on 2012/02/10 00:36:15
Showing 1 changed files
... ...
@@ -1246,7 +1246,7 @@ function screen_it {
1246 1246
 }
1247 1247
 
1248 1248
 # create a new named screen to run processes in
1249
-screen -L -d -m -S stack -t stack
1249
+screen -d -m -S stack -t stack -s /bin/bash
1250 1250
 sleep 1
1251 1251
 # set a reasonable statusbar
1252 1252
 screen -r stack -X hardstatus alwayslastline "%-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%< %= %H"