diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-11-24 19:43:40 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-11-24 19:43:40 +0100 |
commit | c6e4cf6369a7ed070e3650fa395972f7023b8583 (patch) | |
tree | e88c629a8e8e41e7a83c7a89893df6901bf4296c /components | |
parent | b4a984e61928d01a1c105523ace4ae405837963c (diff) | |
download | live-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.
Diffstat (limited to 'components')
-rwxr-xr-x | components/9990-fstab.sh | 2 |
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}" ] |