diff options
author | Daniel Baumann <daniel@debian.org> | 2007-10-19 18:28:35 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2007-10-19 18:28:35 +0200 |
commit | acff181e6333020449a067803b348ccd55668721 (patch) | |
tree | 0cdccbe53bc08dd7cb4b5df3a498ae3503b58dfd /functions/defaults.sh | |
parent | 24767fd736ed94733afe7b238c7eb643a12a8032 (diff) | |
download | vyos-live-build-acff181e6333020449a067803b348ccd55668721.tar.gz vyos-live-build-acff181e6333020449a067803b348ccd55668721.zip |
Setting default union filesystem to for etch to unionfs.
Diffstat (limited to 'functions/defaults.sh')
-rwxr-xr-x | functions/defaults.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index bfc2694c5..715e568ae 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -299,7 +299,15 @@ Set_defaults () LH_CHROOT_FILESYSTEM="${LH_CHROOT_FILESYSTEM:-squashfs}" # Setting union filesystem - LH_UNION_FILESYSTEM="${LH_UNION_FILESYSTEM:-aufs}" + if [ -z "${LH_UNION_FILESYSTEM}" ] + then + if [ "${LH_DISTRIBUTION}" = "etch" ] + then + LH_UNION_FILESYSTEM="unionfs" + else + LH_UNION_FILESYSTEM="aufs" + fi + fi # LH_HOOKS |