10 lines
511 B
Plaintext
10 lines
511 B
Plaintext
|
module start "de" "Desktopenvironment install"
|
||
|
|
||
|
if [[ ! "${cfg[de]}" == "none" ]]; then
|
||
|
test -f "${modules}"/"${modulename}".d/install/de/"${cfg[de]}".mod && source "${modules}"/"${modulename}".d/install/de/"${cfg[de]}".mod
|
||
|
test -f "${modules}"/"${modulename}".d/install/system/"${cfg[gfx_system]}".mod && source "${modules}"/"${modulename}".d/install/system/"${cfg[gfx_system]}".mod
|
||
|
test -f "${dest}"/etc/locale-user.conf && cp "${dest}"/etc/locale-user.conf "${dest}"/etc/sv/${cfg[dm]}/conf
|
||
|
fi
|
||
|
|
||
|
module end
|