Remove KBLAYOUT setting
it is not needed anymore by any book.
This commit is contained in:
parent
2b3edd2e77
commit
60e539b9fc
1 changed files with 1 additions and 4 deletions
|
@ -29,7 +29,6 @@ declare -a TARGET
|
||||||
declare DEP_LEVEL
|
declare DEP_LEVEL
|
||||||
declare SUDO
|
declare SUDO
|
||||||
declare LANGUAGE
|
declare LANGUAGE
|
||||||
declare KBLAYOUT
|
|
||||||
declare WRAP_INSTALL
|
declare WRAP_INSTALL
|
||||||
declare DEL_LA_FILES
|
declare DEL_LA_FILES
|
||||||
declare STATS
|
declare STATS
|
||||||
|
@ -55,7 +54,6 @@ parse_configuration() { #
|
||||||
DEL_LA_FILES=* | \
|
DEL_LA_FILES=* | \
|
||||||
STATS=* | \
|
STATS=* | \
|
||||||
LANGUAGE=* | \
|
LANGUAGE=* | \
|
||||||
KBLAYOUT=* | \
|
|
||||||
SUDO=* ) eval ${REPLY} # Define/set a global variable..
|
SUDO=* ) eval ${REPLY} # Define/set a global variable..
|
||||||
continue ;;
|
continue ;;
|
||||||
esac
|
esac
|
||||||
|
@ -83,7 +81,7 @@ parse_configuration() { #
|
||||||
validate_configuration() { #
|
validate_configuration() { #
|
||||||
#--------------------------#
|
#--------------------------#
|
||||||
local -r dotSTR=".................."
|
local -r dotSTR=".................."
|
||||||
local -r PARAM_LIST="DEP_LEVEL SUDO LANGUAGE KBLAYOUT MAIL_SERVER WRAP_INSTALL DEL_LA_FILES STATS"
|
local -r PARAM_LIST="DEP_LEVEL SUDO LANGUAGE MAIL_SERVER WRAP_INSTALL DEL_LA_FILES STATS"
|
||||||
local -r PARAM_VALS='${config_param}${dotSTR:${#config_param}} ${L_arrow}${BOLD}${!config_param}${OFF}${R_arrow}'
|
local -r PARAM_VALS='${config_param}${dotSTR:${#config_param}} ${L_arrow}${BOLD}${!config_param}${OFF}${R_arrow}'
|
||||||
local config_param
|
local config_param
|
||||||
local -i index
|
local -i index
|
||||||
|
@ -216,7 +214,6 @@ xsltproc --xinclude --nonet \
|
||||||
--stringparam del-la-files "$DEL_LA_FILES" \
|
--stringparam del-la-files "$DEL_LA_FILES" \
|
||||||
--stringparam list-stat "$LIST_STAT" \
|
--stringparam list-stat "$LIST_STAT" \
|
||||||
--stringparam language "$LANGUAGE" \
|
--stringparam language "$LANGUAGE" \
|
||||||
--stringparam xkblayout "$KBLAYOUT" \
|
|
||||||
--stringparam fqdn "$(hostname -f)" \
|
--stringparam fqdn "$(hostname -f)" \
|
||||||
-o ./scripts/ ${MakeScripts} \
|
-o ./scripts/ ${MakeScripts} \
|
||||||
${BookXml}
|
${BookXml}
|
||||||
|
|
Reference in a new issue