diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-04-05 20:05:40 +0100 |
---|---|---|
committer | Raphaƫl Hertzog <hertzog@debian.org> | 2020-04-23 09:38:02 +0000 |
commit | f24ed6ba3e61eb38a648e28eb647fac1fa25fb8e (patch) | |
tree | ee8a986df2f13da0e2458a3190cd8ea38c2f33f5 | |
parent | 78b03ce8a32f8e643e84ed9d4b3bde15943c2f19 (diff) | |
download | vyos-live-build-f24ed6ba3e61eb38a648e28eb647fac1fa25fb8e.tar.gz vyos-live-build-f24ed6ba3e61eb38a648e28eb647fac1fa25fb8e.zip |
binary_rootfs: fix missing handling of chroot_tmpfs
-rwxr-xr-x | scripts/build/binary_rootfs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/build/binary_rootfs b/scripts/build/binary_rootfs index 97f25534a..cad1ea038 100755 --- a/scripts/build/binary_rootfs +++ b/scripts/build/binary_rootfs @@ -141,6 +141,7 @@ case "${LB_CHROOT_FILESYSTEM}" in lb chroot_resolv remove "${@}" lb chroot_hosts remove "${@}" lb chroot_sysv-rc remove "${@}" + lb chroot_tmpfs remove "${@}" lb chroot_dpkg remove "${@}" lb chroot_debianchroot remove "${@}" lb chroot_sysfs remove "${@}" @@ -157,6 +158,7 @@ case "${LB_CHROOT_FILESYSTEM}" in lb chroot_sysfs install "${@}" lb chroot_debianchroot install "${@}" lb chroot_dpkg install "${@}" + lb chroot_tmpfs install "${@}" lb chroot_sysv-rc install "${@}" lb chroot_hosts install "${@}" lb chroot_resolv install "${@}" @@ -229,6 +231,7 @@ case "${LB_CHROOT_FILESYSTEM}" in lb chroot_resolv remove "${@}" lb chroot_hosts remove "${@}" lb chroot_sysv-rc remove "${@}" + lb chroot_tmpfs remove "${@}" lb chroot_dpkg remove "${@}" lb chroot_debianchroot remove "${@}" lb chroot_sysfs remove "${@}" @@ -245,6 +248,7 @@ case "${LB_CHROOT_FILESYSTEM}" in lb chroot_sysfs install "${@}" lb chroot_debianchroot install "${@}" lb chroot_dpkg install "${@}" + lb chroot_tmpfs install "${@}" lb chroot_sysv-rc install "${@}" lb chroot_hosts install "${@}" lb chroot_resolv install "${@}" @@ -364,6 +368,7 @@ case "${LB_CHROOT_FILESYSTEM}" in lb chroot_resolv remove "${@}" lb chroot_hosts remove "${@}" lb chroot_sysv-rc remove "${@}" + lb chroot_tmpfs remove "${@}" lb chroot_dpkg remove "${@}" lb chroot_debianchroot remove "${@}" lb chroot_sysfs remove "${@}" @@ -380,6 +385,7 @@ case "${LB_CHROOT_FILESYSTEM}" in lb chroot_sysfs install "${@}" lb chroot_debianchroot install "${@}" lb chroot_dpkg install "${@}" + lb chroot_tmpfs install "${@}" lb chroot_sysv-rc install "${@}" lb chroot_hosts install "${@}" lb chroot_resolv install "${@}" |