From 74ac3139bc465024b1bab8593dff6c36cdc1bd0d Mon Sep 17 00:00:00 2001 From: Richard Laager Date: Wed, 16 Jan 2019 22:35:02 -0600 Subject: [PATCH] Ubuntu 18.04: Sort optional /var datasets --- Ubuntu-18.04-Root-on-ZFS.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Ubuntu-18.04-Root-on-ZFS.md b/Ubuntu-18.04-Root-on-ZFS.md index 340b3b2..d5a1f41 100644 --- a/Ubuntu-18.04-Root-on-ZFS.md +++ b/Ubuntu-18.04-Root-on-ZFS.md @@ -151,15 +151,15 @@ With ZFS, it is not normally necessary to use a mount command (either `mount` or If this system will store local email in /var/mail: # zfs create rpool/var/mail + If this system will use NFS (locking): + # zfs create -o com.sun:auto-snapshot=false \ + -o mountpoint=/var/lib/nfs rpool/var/nfs + If you will use Postfix, it requires exec=on for its chroot. Choose: # zfs inherit exec rpool/var OR # zfs create -o exec=on rpool/var/spool/postfix - If this system will use NFS (locking): - # zfs create -o com.sun:auto-snapshot=false \ - -o mountpoint=/var/lib/nfs rpool/var/nfs - If you want a separate /tmp dataset (choose this now or tmpfs later): # zfs create -o com.sun:auto-snapshot=false \ -o setuid=off rpool/tmp