diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-11-06 12:52:58 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-12-03 14:19:54 -0800 |
commit | 170911aef2aedee4ba8ab47fd9eb71e9b646720b (patch) | |
tree | c6dc4fd4ec0ed34b1cb648fd1f7f4d4e43a3e9aa | |
parent | ac9da56eec55dec949597930963697f118da3d7d (diff) | |
download | vyatta-cfg-system-170911aef2aedee4ba8ab47fd9eb71e9b646720b.tar.gz vyatta-cfg-system-170911aef2aedee4ba8ab47fd9eb71e9b646720b.zip |
fix grammar of previous patch
-rwxr-xr-x | scripts/install-system | 2 | ||||
-rwxr-xr-x | scripts/quick-install | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install-system b/scripts/install-system index 44d3f1f2..eb182e39 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -1060,7 +1060,7 @@ setup_method_auto() { lsize=$(get_drive_size "$INSTALL_DRIVE") total=$ROOT_MIN if [ "$total" -gt "$lsize" ]; then - echo "Unfortunately, the Vyatta requires a total of at least $total"MB" to properly install." + echo "Unfortunately, Vyatta requires a total of at least $total"MB" to properly install." echo "$INSTALL_DRIVE is below the minimum required capacity and therefore, cannot be used to" echo -e "complete the installation.\n" echo "If other drives are present" diff --git a/scripts/quick-install b/scripts/quick-install index 7a1273b9..82475cb1 100755 --- a/scripts/quick-install +++ b/scripts/quick-install @@ -675,7 +675,7 @@ setup_method_auto() { lsize=$(get_drive_size "$INSTALL_DRIVE") total=$(($ROOT_MIN + $CONFIG_MIN)) if [ "$total" -gt "$lsize" ]; then - echo "Unfortunately, the Vyatta requires a total of at least $total"MB" to properly install." + echo "Unfortunately, Vyatta requires a total of at least $total"MB" to properly install." echo "$INSTALL_DRIVE is below the minimum required capacity and therefore, cannot be used to" echo -e "complete the installation.\n" echo "If other drives are present" |