From 03c22ef560755fa2f1b5983dd18fa91066adbd2c Mon Sep 17 00:00:00 2001 From: Bob Gilligan Date: Tue, 16 Feb 2010 11:52:14 -0800 Subject: Bugfix 5327: Don't try to save config from images with none. On image-based systems, the Vyatta configuration is mounted on /config and can be found in the disk filesystem under /boot//live-rw/config. --- scripts/install/install-get-partition | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install/install-get-partition b/scripts/install/install-get-partition index 37ec5580..f6977850 100755 --- a/scripts/install/install-get-partition +++ b/scripts/install/install-get-partition @@ -549,7 +549,7 @@ save_old_info() { image_dirs=/mnt/tmp/boot/* for dir in $image_dirs; do - if [ -f $dir/live-rw/opt/vyatta/etc/config/.vyatta_config ]; then + if [ -f $dir/live-rw/config/.vyatta_config ]; then item=${dir##/mnt/tmp/boot/} images=($item ${images[@]}) -- cgit v1.2.3 From 36b4c35454371643a7be0b508b2b97e7af1b0fa4 Mon Sep 17 00:00:00 2001 From: Bob Gilligan Date: Tue, 16 Feb 2010 11:57:24 -0800 Subject: 0.17.2 --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 939f3a27..65035ba8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +vyatta-cfg-system (0.17.2) unstable; urgency=low + + * Bugfix 5327: Don't try to save config from images with none. + + -- Bob Gilligan Tue, 16 Feb 2010 11:57:24 -0800 + vyatta-cfg-system (0.17.1) unstable; urgency=low * use more specific version before which modprobe files in vyatta-cfg -- cgit v1.2.3