From 3528eafa4d62d814ce56c8c9e6be3360fc5b1e81 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 19 Dec 2022 13:53:47 -0700 Subject: [PATCH] fix --- debian.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian.sh b/debian.sh index 110d29d..8dcd5f4 100755 --- a/debian.sh +++ b/debian.sh @@ -300,6 +300,9 @@ fstab() { echo "/dev/mapper/root /.snapshots btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@.snapshots 0 1" >>$TARGET/etc/fstab echo "/dev/mapper/root /var/lib/libvirt btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@libvirt 0 1" >>$TARGET/etc/fstab echo "tmpfs /var/log tmpfs defaults 0 0" >>$TARGET/etc/fstab + echo "tmpfs /var/tmp tmpfs defaults 0 0" >>$TARGET/etc/fstab + echo "tmpfs /var/cache tmpfs defaults 0 0" >>$TARGET/etc/fstab + echo "tmpfs /home/${USER}/.cache tmpfs rw,user,exec 0 0" >>$TARGET/etc/fstab echo "/dev/mapper/root /home btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@home 0 1" >>$TARGET/etc/fstab echo "/dev/mapper/root /root btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@root 0 1" >>$TARGET/etc/fstab echo "/dev/mapper/root /var/lib/postgresql btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@postgres 0 1" >>$TARGET/etc/fstab