10 lines
161 B
Plaintext
10 lines
161 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. /etc/archiso/functions
|
||
|
|
||
|
shell="$(cmdline_param shell)"
|
||
|
[ -n "${shell}" ] && shell="/bin/bash"
|
||
|
[ ! -e "${shell}" ] && shell="/bin/sh"
|
||
|
|
||
|
exec ${shell}
|