summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-11-24 19:43:40 +0100
committerChristian Poessinger <christian@poessinger.com>2021-11-24 19:44:50 +0100
commit11fc452dcb3675ee042b200c901a94cc35d4a7fe (patch)
treec7792918f3b175110b987c95e59c2b4d44971006
parentc8ffccfc637c091b4e691f16e1669b34c101c42c (diff)
downloadlive-boot-equuleus.tar.gz
live-boot-equuleus.zip
fstab: T3990: do not mount /vat/tmp with size=25M optionequuleus
Added initially in commit 0fb1a61 ("fstab: T3990: mount tmpfs on /var/tmp to get clean FS on reboots") but this causes the "add system image" command to fail as new ISO images are downloaded to /var/tmp. (cherry picked from commit c6e4cf6369a7ed070e3650fa395972f7023b8583)
-rwxr-xr-xcomponents/9990-fstab.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/9990-fstab.sh b/components/9990-fstab.sh
index 8753327..9fb53a3 100755
--- a/components/9990-fstab.sh
+++ b/components/9990-fstab.sh
@@ -27,7 +27,7 @@ Fstab ()
if ! grep -qs "^tmpfs /var/tmp" /root/etc/fstab
then
- echo "tmpfs /var/tmp tmpfs nosuid,nodev,size=25M 0 0" >> /root/etc/fstab
+ echo "tmpfs /var/tmp tmpfs nosuid,nodev 0 0" >> /root/etc/fstab
fi
if [ -z "${NOFASTBOOT}" ]