diff options
author | Richard Nelson <unixabg@gmail.com> | 2010-06-22 22:20:51 -0500 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:12 +0100 |
commit | 761fcaa8e001a516180d9537eee9c05b8b90ab8b (patch) | |
tree | 1be4a9c0a3678706d0045f7ba718cbfffa0b545d | |
parent | 7af37e5a362de703255ca6e2bf5bc9d4c36fc96e (diff) | |
download | vyos-live-build-761fcaa8e001a516180d9537eee9c05b8b90ab8b.tar.gz vyos-live-build-761fcaa8e001a516180d9537eee9c05b8b90ab8b.zip |
LH_HOSTNAME expression cleanup.
-rwxr-xr-x | cgi/cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ else LH_BOOTLOADER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])bootloader=[a-z]+' | cut -f 2 -d '=' | head -n1) LH_DEBIAN_INSTALLER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])debian_installer=[a-z]+' | cut -f 2 -d '=' | head -n1) LH_ENCRYPTION=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])encryption=[0-9a-z]+' | cut -f 2 -d '=' | head -n1) - LH_HOSTNAME=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])hostname=[0-9,a-z,A-Z,.,-]+' | cut -f 2 -d '=' | head -n1) + LH_HOSTNAME=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])hostname=[-0-9a-zA-Z.]+' | cut -f 2 -d '=' | head -n1) LH_ISO_APPLICATION=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])iso_application=[0-9,a-z,A-Z,., ,~,;,:,/,_,-]+' | cut -f 2 -d '=' | head -n1) LH_ISO_PREPARER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])iso_preparer=[0-9,a-z,A-Z,., ,~,;,:,/,_,-]+' | cut -f 2 -d '=' | head -n1) LH_ISO_PUBLISHER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])iso_publisher=[0-9,a-z,A-Z,., ,~,;,:,/,_,/,-]+' | cut -f 2 -d '=' | head -n1) |