diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-11-06 12:52:58 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-11-06 12:52:58 -0800 |
commit | fdab2e3a0a1f9bc658df46a2a29bccb8aa5b0f05 (patch) | |
tree | 24f4a42d129000f01d635921f06a364893d311cf | |
parent | 41f076d45ec428261150113025b952b135540697 (diff) | |
download | vyatta-cfg-system-fdab2e3a0a1f9bc658df46a2a29bccb8aa5b0f05.tar.gz vyatta-cfg-system-fdab2e3a0a1f9bc658df46a2a29bccb8aa5b0f05.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 33ff8c7f..1f507fe9 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -1000,7 +1000,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" |