summaryrefslogtreecommitdiff
path: root/scripts/install
AgeCommit message (Collapse)Author
2010-09-08Fix quoting of shell -zStephen Hemminger
The -z test in shell needs to be quoted to avoid issues with shell expansion.
2010-09-08Fix quoting issues with conversion to lower caseStephen Hemminger
Add common shell function to convert to lower case. Part of Bug 6132
2010-08-02Bugfix 5964: Eliminate unnecessary version check.Bob Gilligan
2010-07-28Bugfix 5711: Don't allow special characters in image names.Bob Gilligan
2010-07-27Bugfix 5929: Preserve SSH host keys during image installation.Bob Gilligan
(cherry picked from commit 71b716b7f5e5df1dd4ea6e8a16c7f987381cab8c)
2010-05-07Merge branch 'larkspur' of vm:git/vyatta-cfg-system into larkspurStephen Hemminger
2010-05-07Preserve file attributes of root filesStephen Hemminger
Want to preserve labels and other attributes
2010-05-03Add code to check digital signature of image files.Bob Gilligan
In URL mode, we now check for a digital signature file. If one exists, we'll try to download it and check the signature.
2010-04-30Allow user to name system images when installing them.Bob Gilligan
Now we ask the user what they would like to name an image when they are installing. The default answer is the same string used previously: The Vyatta version string.
2010-03-30Improve wording of config info save dialog.Bob Gilligan
2010-03-18Bugfix 5449: Maintain "console affinity" when adding a new image.Bob Gilligan
2010-03-12Run partition editor with script flag to avoid prompting userStephen Hemminger
Bug 5443 When running on HyperV, install-system appeared to hang because although hda existed, it had no information so parted was prompting for retry. Use the -s flag (never prompt) at all the places in install-system/install-image where we don't want to have user interaction.
2010-03-09Bugfix 5424: Allow image with same version to be added to disk-based installBob Gilligan
2010-03-08Use more reliable method for determining system version.Bob Gilligan
2010-03-08Bugfix 5360: Get name of image from correct source.Bob Gilligan
The name of a system image is supposed to match the Vyatta version string. Previously, the install-image script determined the name of the image being installed by parsing a field in the Vyatta version file on the image being installed. But the format of that file has changed, and may change again the future, so it is not a good source of the Vyatta version string. The most accurate way to determine the Vyatta version string is to look up the debian package version string associated with the vyatta-version package on the image being installed. This changes the install-image script to get the system image name that way. (cherry picked from commit e1864411c77e688b1b67de40441550b1f1eba055)
2010-03-08Bugfix 5414: Use correct install root reference when copying back SSH keys.Bob Gilligan
2010-03-05Bugfix 5413: Determine system version from vyatta-version package.Bob Gilligan
(cherry picked from commit 5ea1d90dbe42b0eefbc222b98b9b357b5676cb8b)
2010-02-25Bugfix 5217: Don't use the "-#" option to curl. It runs slow on serial ports.Bob Gilligan
2010-02-16Bugfix 5327: Don't try to save config from images with none.Bob Gilligan
On image-based systems, the Vyatta configuration is mounted on /config and can be found in the disk filesystem under /boot/<image-name>/live-rw/config.
2010-02-08Bugfix 5225: Include the OS version number in the grub menu entry.Bob Gilligan
2010-01-26Bugfix 5229: Save old config info when installing on pre-existing RAID group.Bob Gilligan
2010-01-26Bugfix 5220: Use correct path to config directory on installed image.Bob Gilligan
2010-01-26Bugfix 5232: Correctly handle case where user doesn't want to save SSH keysBob Gilligan
2010-01-25Bugfix 5240: Prevent re-installation of same version on running systemsBob Gilligan
Previously, it was possible in some cases to "add" a system image that would over-write the running image. This change fixes that by getting the version string of the running system from the kernel command line instead of the Vyatta version file. This string represents the actual directory name that holds the image, so is more reliable. Also previously, an attempt to "add" a system image that had the same version string as another image installed on the system (but was not the running image) would always succeed. This would completely over-write that image. Because of this destructive behavior, it deserves a confirmation question. This change prompts the user to see if they really want to do that before proceeding.
2010-01-19Fix typo in install-imageStephen Hemminger
This could fix Bug 5151 There was a typo in script that saved old config
2010-01-18Bugfix 5220: Save config information from previous image-based install.Bob Gilligan
If previous disk-based install is found, use config info from it. Otherwise look for image-based installs. If multiple image-based installs are found, let the user select which one to save the config information from.
2010-01-13Don't allow installation to proceed if MD5 checksum errors are found.Bob Gilligan
2010-01-08Switch from wget to curl since the latter supports more URL methods.Bob Gilligan
2010-01-06Validate MD5 checksums on ISO file before proceeding with installation.Bob Gilligan
2009-12-23Add support for fetching ISO file based on URL.Bob Gilligan
2009-12-14Ignore errors from chmod/chown if ssh keys don't existStephen Hemminger
2009-12-14Fix install-image to save config/keysStephen Hemminger
Bug 5151 Part of previous change caused regression in saving config information. Also mounts old config read-only to avoid any problems.
2009-12-03Fix some file headers that cause build warningsStephen Hemminger
Debian build warnings on these files.
2009-12-03Preserve ssh host keys in install-imageStephen Hemminger
Similar to previous change to install-system
2009-11-13Add start_offset value to log message when partion attempt fails.Bob Gilligan
2009-11-06copy the whole config directory during installAn-Cheng Huang
2009-11-02use top-level pid for progress indicatorAn-Cheng Huang
2009-10-30add unified install-imageAn-Cheng Huang