diff options
author | Daniil Baturin <daniil@baturin.org> | 2013-11-02 23:32:51 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2013-11-02 23:32:51 +0100 |
commit | 8828bf3a2d9bf99786c3fa271ce77ee19c9b6db6 (patch) | |
tree | 6117f315ee54850fcaf1d6de2d6c9ed345c5e825 /scripts | |
parent | c34fc7c364b2b78cdcbf7d213a459577b09bf663 (diff) | |
download | vyatta-cfg-system-8828bf3a2d9bf99786c3fa271ce77ee19c9b6db6.tar.gz vyatta-cfg-system-8828bf3a2d9bf99786c3fa271ce77ee19c9b6db6.zip |
Replace s/Vyatta/VyOS/ in parition handling installer functions
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install/install-get-partition | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/install/install-get-partition b/scripts/install/install-get-partition index 594fa929..873f1f7e 100755 --- a/scripts/install/install-get-partition +++ b/scripts/install/install-get-partition @@ -386,7 +386,7 @@ select_partition () { # take the first partition as the default lpartition=$(echo $myparts | /usr/bin/awk '{ print $1 }') - echo "I found the following partitions suitable for the Vyatta image:" + echo "I found the following partitions suitable for the VyOS image:" echo -e "Partition\tSize" echo -e "$display" echo @@ -745,7 +745,7 @@ set_root_fstype () { setup_method_manual() { parted=$1 - echo "The Vyatta install needs a minimum ${ROOT_MIN}MB root" + echo "The VyOS install needs a minimum ${ROOT_MIN}MB root" echo "with partiton type 83 (Linux)." echo -e "\n\n" @@ -820,7 +820,7 @@ setup_method_auto () { lsize=$(get_drive_size "$INSTALL_DRIVE") total=$ROOT_MIN if [ "$total" -gt "$lsize" ]; then - echo "Unfortunately, Vyatta requires a total of at least $total"MB" to properly install." + echo "Unfortunately, VyOS 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" @@ -946,7 +946,7 @@ while true; do fi cat <<EOF -The Vyatta image will require a minimum ${ROOT_MIN}MB root. +The VyOS image will require a minimum ${ROOT_MIN}MB root. Would you like me to try to partition a drive automatically or would you rather partition it manually with parted? If you have already setup your partitions, you may skip this step |