util: load_pkgs

- set basic switch false if extra is true
This commit is contained in:
udeved 2017-02-04 14:24:33 +01:00
parent d010e0702f
commit 40742ef822

View file

@ -400,8 +400,6 @@ load_profile_config(){
[[ -z ${pxe_boot} ]] && pxe_boot="true"
[[ -z ${extra} ]] && extra='false'
[[ -z ${plymouth_boot} ]] && plymouth_boot="true"
[[ -z ${nonfree_mhwd} ]] && nonfree_mhwd="true"
@ -461,6 +459,12 @@ load_profile_config(){
[[ -z ${smb_workgroup} ]] && smb_workgroup=''
[[ -z ${basic} ]] && basic='true'
[[ -z ${extra} ]] && extra='false'
#${basic} && extra='false'
${extra} && basic='false'
check_profile_vars
return 0