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:43:40 +0100
commitc6e4cf6369a7ed070e3650fa395972f7023b8583 (patch)
treee88c629a8e8e41e7a83c7a89893df6901bf4296c
parentb4a984e61928d01a1c105523ace4ae405837963c (diff)
downloadlive-boot-c6e4cf6369a7ed070e3650fa395972f7023b8583.tar.gz
live-boot-c6e4cf6369a7ed070e3650fa395972f7023b8583.zip
fstab: T3990: do not mount /vat/tmp with size=25M option
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.
-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}" ]