6f9cdf5958
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
10 lines
161 B
Bash
10 lines
161 B
Bash
#!/bin/sh
|
|
|
|
. /etc/archiso/functions
|
|
|
|
shell="$(cmdline_param shell)"
|
|
[ -n "${shell}" ] && shell="/bin/bash"
|
|
[ ! -e "${shell}" ] && shell="/bin/sh"
|
|
|
|
exec ${shell}
|