diff options
author | John Southworth <john.southworth@vyatta.com> | 2012-08-28 13:36:49 -0700 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2012-08-28 13:36:49 -0700 |
commit | f344e975d1b0eb489af7fb2d2f22168bc465b1de (patch) | |
tree | 79240053ef4da303bf4877d48a3911aab8b1c4ee | |
parent | 05512f4b9c3037177c6d14f4ac90c7370f639f20 (diff) | |
download | vyatta-cfg-system-f344e975d1b0eb489af7fb2d2f22168bc465b1de.tar.gz vyatta-cfg-system-f344e975d1b0eb489af7fb2d2f22168bc465b1de.zip |
Write barriers don't work on all devices, disable them
-rwxr-xr-x | scripts/install-system | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-system b/scripts/install-system index fbff5e1f..6f3dccdc 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -972,7 +972,7 @@ install_root_filesystem () { echo "Unable to read filesystem UUID. Exiting." exit 1 else - echo -e "UUID=$uuid\t/\t$ROOT_FSTYPE\tnoatime\t0 1" >> $rootfsdir/etc/fstab + echo -e "UUID=$uuid\t/\t$ROOT_FSTYPE\tnoatime,nobarrier\t0 1" >> $rootfsdir/etc/fstab fi #setup the hostname file |