diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2009-03-26 14:10:02 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2009-03-26 14:10:02 -0700 |
commit | bb2533b0db46fd46abd943b02bbcfbd4d99a45e0 (patch) | |
tree | 89b34b242fb70718d6b60efe16ca58bef307ebab | |
parent | e28992bd503978cb361299e438e491e3857346e9 (diff) | |
download | vyatta-cfg-quagga-bb2533b0db46fd46abd943b02bbcfbd4d99a45e0.tar.gz vyatta-cfg-quagga-bb2533b0db46fd46abd943b02bbcfbd4d99a45e0.zip |
Bugfix 4139: Increase minimum root filesystem size to 1 GB.
-rwxr-xr-x | scripts/install-system | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/install-system b/scripts/install-system index d90c64ec..17d847d7 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -51,8 +51,10 @@ rootfsdir=/mnt/rootfs # install log file name INSTALL_LOG=/tmp/install-$$.log -# root partition minimum size in MB -ROOT_MIN=500 +# Absolute minimum root partition size in MB. Below this, we won't let +# you install. +ROOT_MIN=1000 + # the base install drive e.g. sda if [ -n "$INSTALL_DRIVE" ]; then INSTALL_DRIVE="" |