diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-20 10:17:38 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:40 +0100 |
commit | e86a27449ac3410aad6df15093cb4d41e701266f (patch) | |
tree | 4b59fc91971dd0f10335271e833f714e78158f7d | |
parent | a12a4b71fbb63126045cdc89781c0b8e2cbddbb0 (diff) | |
download | vyos-live-build-e86a27449ac3410aad6df15093cb4d41e701266f.tar.gz vyos-live-build-e86a27449ac3410aad6df15093cb4d41e701266f.zip |
Install loop-aes-utils if we are using encryption.
-rwxr-xr-x | functions/defaults.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 3a3b4237c..9c4d2d34a 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -437,6 +437,10 @@ Set_defaults () # Setting packages string # LH_PACKAGES + if [ -z "${LH_PACKAGES}" ] && [ "${LH_ENCRYPTION}" != "disabled" ] + then + LH_PACKAGES="loop-aes-utils" + fi # Setting packages list string LH_PACKAGES_LISTS="${LH_PACKAGES_LISTS:-standard}" |