We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1721611 commit b48761dCopy full SHA for b48761d
1 file changed
channels/releng/airootfs.any/root/customize_airootfs.sh
@@ -27,12 +27,13 @@ language="en"
27
28
29
# Parse arguments
30
-while getopts 'p:bt:k:rxu:o:i:s:da:g:z:l:' arg; do
+while getopts 'p:bt:k:xu:o:i:s:da:g:z:l:' arg; do
31
case "${arg}" in
32
p) password="${OPTARG}" ;;
33
b) boot_splash=true ;;
34
t) theme_name="${OPTARG}" ;;
35
- k) kernel_config_line=(${OPTARG}) ;;
+ #k) kernel_config_line=(${OPTARG}) ;;
36
+ k) IFS=" " read -r -a kernel_config_line <<< "${OPTARG}" ;;
37
u) username="${OPTARG}" ;;
38
o) os_name="${OPTARG}" ;;
39
i) install_dir="${OPTARG}" ;;
@@ -43,6 +44,7 @@ while getopts 'p:bt:k:rxu:o:i:s:da:g:z:l:' arg; do
43
44
g) localegen="${OPTARG/./\\.}\\" ;;
45
z) timezone="${OPTARG}" ;;
46
l) language="${OPTARG}" ;;
47
+ *) : ;;
48
esac
49
done
50
0 commit comments