diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-12-02 18:08:36 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-12-02 18:08:36 -0800 |
commit | 50b38e9ca3b99c588a2a806c88a235c14021fd27 (patch) | |
tree | 829fdce9665d01bfefba64ce7e55357318d956d9 | |
parent | 249f7eae3d1374e8e22e35113c89fc32eacdbf91 (diff) | |
download | vyatta-cfg-quagga-50b38e9ca3b99c588a2a806c88a235c14021fd27.tar.gz vyatta-cfg-quagga-50b38e9ca3b99c588a2a806c88a235c14021fd27.zip |
Use ext3 all the time
It avoids issues with corrupt filesystems on VM.
-rwxr-xr-x | scripts/install-system | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/install-system b/scripts/install-system index 9e22db68..fd55b102 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -522,14 +522,6 @@ select_drive () { INSTALL_DRIVE="$response" echo - - # If disk is small, it is probably a CF device or virtual environment - # So avoid the overhead of a journal - size=$(get_drive_size $INSTALL_DRIVE) - if [[ $size -lt 11000 ]] - then - ROOT_FSTYPE="ext2" - fi } # Allow the user to select a partition to work with |