c31f0421ce
Fix "uci: Entry not found" output if "ttylogin" is not set in "etc/config/system" Signed-off-by: Florian Eckert <fe@dev.tdt.de>
5 lines
105 B
Bash
Executable file
5 lines
105 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ "$(uci -q get system.@system[0].ttylogin)" == 1 ] || exec /bin/ash --login
|
|
|
|
exec /bin/login
|