diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-06-23 15:31:53 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-06-23 15:31:53 -0700 |
commit | b113b093f4cc4556aba1ed40b987181a0d9eb932 (patch) | |
tree | 692cb22e2e68d6387966896de8af1d36af4784d8 | |
parent | c9b6da7f0127f549b44cada295540671fb41f32d (diff) | |
download | vyatta-cfg-system-b113b093f4cc4556aba1ed40b987181a0d9eb932.tar.gz vyatta-cfg-system-b113b093f4cc4556aba1ed40b987181a0d9eb932.zip |
Spellin fixes
Fix some of my creative spelling in messages
-rwxr-xr-x | scripts/install-system | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/install-system b/scripts/install-system index 3871c77b..3b3d406d 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -551,9 +551,9 @@ system_setup () { local response=$(get_response "Yes" "Yes No Y N") if [ "$response" == "yes" ] || [ "$response" == "y" ]; then - echo -n 'System adminstrator (root) password: ' + echo -n 'System administrator (root) password: ' change_password root - echo -n 'Router adminstrator (vyatta) password: ' + echo -n 'Router administrator (vyatta) password: ' change_password vyatta fi } @@ -571,7 +571,7 @@ install_grub () { while [ -z "$INSTALL_DRIVE" ] do - echo "I need to install the GRUB bootloader." + echo "I need to install the GRUB boot loader." echo "I found the following drives on your system:" select_drive "Which drive should GRUB modify the boot partition on?" done @@ -595,7 +595,7 @@ install_grub () { echo "This looks like a removable device. Setting root grub device to $root." >> $INSTALL_LOG fi - # get list of kernels, except xen + # get list of kernels, except Xen kernel_versions=$(ls /boot/vmlinuz-* 2> /dev/null | grep -v xen | sed 's:/boot/vmlinuz::g' | sort -r) # get xen kernel info |