Merge pull request #833 from apache/systemvm-build

changed the systemvm base iso file from debian-7.8.0 to debian-7.9.07.8.0 url is not available(404 Error)

This fixes the jenkins http://jenkins.buildacloud.org/job/build-systemvm-master/624/console which is failing with the below error
```
Checking if isofile iso-cd/debian-7.8.0-i386-netinst.iso already exists.
Full path: /home/jenkins/acs/workspace/build-systemvm-master/tools/appliance/iso/iso-cd/debian-7.8.0-i386-netinst.iso
There was an error downloading http://cdimage.debian.org/cdimage/archive/7.8.0/i386/iso-cd/debian-7.8.0-i386-netinst.iso:
404 Not Found
```

This is tested and build is successful at http://jenkins.buildacloud.org/view/parameterized/job/parameterized-sytemvm/1/

* pr/833:
  changed the base iso file from debian-7.8.0 to debian-7.9.0

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2015-09-16 12:48:16 +05:30
commit 8f11b459ff
1 changed files with 6 additions and 6 deletions

View File

@ -27,15 +27,15 @@ arch = ENV['VM_ARCH'] || 'i386'
architectures = {
:i386 => {
:os_type_id => 'Debian',
:iso_file => 'iso-cd/debian-7.8.0-i386-netinst.iso',
:iso_src => 'http://cdimage.debian.org/cdimage/archive/7.8.0/i386/iso-cd/debian-7.8.0-i386-netinst.iso',
:iso_md5 => '0d2f88d23a9d5945f5bc0276830c7d2c',
:iso_file => 'debian-7.9.0-i386-netinst.iso',
:iso_src => 'http://cdimage.debian.org/cdimage/archive/7.9.0/i386/iso-cd/debian-7.9.0-i386-netinst.iso',
:iso_md5 => 'e101a11ddb31f85acef542df1a49bf57',
},
:amd64 => {
:os_type_id => 'Debian_64',
:iso_file => 'debian-7.8.0-amd64-netinst.iso',
:iso_src => 'http://cdimage.debian.org/cdimage/archive/7.8.0/amd64/iso-cd/debian-7.8.0-amd64-netinst.iso',
:iso_md5 => 'a91fba5001cf0fbccb44a7ae38c63b6e'
:iso_file => 'debian-7.9.0-amd64-netinst.iso',
:iso_src => 'http://cdimage.debian.org/cdimage/archive/7.9.0/amd64/iso-cd/debian-7.9.0-amd64-netinst.iso',
:iso_md5 => '774d1fc8c5364e63b22242c33a89c1a3'
}
}