* Servers now define 'firstMenu'. This allows e.g. SSH to pre auth, while Telnet still gets the matrix

This commit is contained in:
Bryan Ashby 2015-10-22 10:36:08 -06:00
parent 12e7722ec9
commit 4a22ce0924
4 changed files with 26 additions and 11 deletions

View file

@ -65,8 +65,6 @@ function getDefaultConfig() {
loginAttempts : 3,
},
firstMenu : 'connected',
preLoginTheme : '*',
users : {
@ -124,12 +122,14 @@ function getDefaultConfig() {
telnet : {
port : 8888,
enabled : true,
firstMenu : 'telnetConnected',
},
ssh : {
port : 8889,
enabled : true,
rsaPrivateKey : paths.join(__dirname, './../misc/default_key.rsa'),
dsaPrivateKey : paths.join(__dirname, './../misc/default_key.dsa'),
firstMenu : 'sshConnected',
}
},