From 48ea244f475b68fab7842bea5c6211a206e20509 Mon Sep 17 00:00:00 2001 From: kkruse-rax <39127659+kkruse-rax@users.noreply.github.com> Date: Fri, 15 Feb 2019 13:34:09 -0600 Subject: [PATCH] Update util.sh Added 'noatime' to datavolume as this is part of Couchbase's 'linux-tuning-guide' and would be ideally best to put this in at instance creation time and not after the fact. --- scripts/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/util.sh b/scripts/util.sh index bf5c91f..4690031 100644 --- a/scripts/util.sh +++ b/scripts/util.sh @@ -9,7 +9,7 @@ formatDataDisk () mkfs -t ext4 ${DEVICE} echo "Updating fstab" - LINE="${DEVICE}\t${MOUNTPOINT}\text4\tdefaults,nofail\t0\t2" + LINE="${DEVICE}\t${MOUNTPOINT}\text4\tdefaults,noatime,nofail\t0\t2" echo -e ${LINE} >> /etc/fstab echo "Mounting the disk"