Really correcting bootstrap default logic to not overwrite the 'copy' method.
This commit is contained in:
parent
ef61a9d85f
commit
431a8208a3
|
@ -85,7 +85,7 @@ Set_defaults ()
|
|||
LH_APT_SECURE="${LH_APT_SECURE:-enabled}"
|
||||
|
||||
# Setting bootstrap program
|
||||
if [ -z "${LH_BOOTSTRAP}" ] || [ ! -x "${LH_BOOTSTRAP}" ] || [ "${LH_BOOTSTRAP}" != "copy" ]
|
||||
if [ -z "${LH_BOOTSTRAP}" ] || ( [ ! -x "${LH_BOOTSTRAP}" ] && [ "${LH_BOOTSTRAP}" != "copy" ] )
|
||||
then
|
||||
if [ -x "/usr/sbin/debootstrap" ]
|
||||
then
|
||||
|
|
Loading…
Reference in New Issue