mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-7655: Fixing system vm template to build from newer debian iso links
Signed-off-by: Jayapal <jayapal@apache.org>
This commit is contained in:
parent
a2b620c0b4
commit
421c8461f1
|
|
@ -3,9 +3,9 @@ Veewee::Definition.declare({
|
|||
:memory_size=> '256',
|
||||
:disk_size => '2000', :disk_format => 'VDI', :hostiocache => 'off',
|
||||
:os_type_id => 'Debian',
|
||||
:iso_file => "debian-7.0.0-i386-netinst.iso",
|
||||
:iso_src => "http://cdimage.debian.org/mirror/cdimage/archive/7.0.0/i386/iso-cd/debian-7.0.0-i386-netinst.iso",
|
||||
:iso_md5 => "a6b93666a5393334accb7ac4ee28d949",
|
||||
:iso_file => "debian-7.5.0-i386-netinst.iso",
|
||||
:iso_src => "http://cdimage.debian.org/mirror/cdimage/archive/7.5.0/i386/iso-cd/debian-7.5.0-i386-netinst.iso",
|
||||
:iso_md5 => "0e6eaacb5a5828473afe90f6df9c8f16",
|
||||
:iso_download_timeout => "1000",
|
||||
:boot_wait => "10", :boot_cmd_sequence => [
|
||||
'<Esc>',
|
||||
|
|
|
|||
|
|
@ -31,6 +31,8 @@ install_packages() {
|
|||
DEBIAN_FRONTEND=noninteractive
|
||||
DEBIAN_PRIORITY=critical
|
||||
|
||||
DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends -qq -y --force-yes upgrade
|
||||
|
||||
# Basic packages
|
||||
apt-get --no-install-recommends -q -y --force-yes install rsyslog logrotate cron chkconfig insserv net-tools ifupdown vim-tiny netbase iptables
|
||||
apt-get --no-install-recommends -q -y --force-yes install openssh-server openssl e2fsprogs dhcp3-client tcpdump socat wget
|
||||
|
|
|
|||
|
|
@ -3,9 +3,9 @@ Veewee::Definition.declare({
|
|||
:memory_size=> '256',
|
||||
:disk_size => '2000', :disk_format => 'VDI', :hostiocache => 'off',
|
||||
:os_type_id => 'Debian_64',
|
||||
:iso_file => "debian-7.0.0-amd64-netinst.iso",
|
||||
:iso_src => "http://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-7.4.0-amd64-netinst.iso",
|
||||
:iso_md5 => "e7e9433973f082a297793c3c5010b2c5",
|
||||
:iso_file => "debian-7.5.0-amd64-netinst.iso",
|
||||
:iso_src => "http://cdimage.debian.org/mirror/cdimage/archive/7.5.0/amd64/iso-cd/debian-7.5.0-amd64-netinst.iso",
|
||||
:iso_md5 => "8fdb6715228ea90faba58cb84644d296",
|
||||
:iso_download_timeout => "1000",
|
||||
:boot_wait => "10", :boot_cmd_sequence => [
|
||||
'<Esc>',
|
||||
|
|
|
|||
|
|
@ -32,6 +32,8 @@ install_packages() {
|
|||
DEBIAN_FRONTEND=noninteractive
|
||||
DEBIAN_PRIORITY=critical
|
||||
|
||||
DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends -qq -y --force-yes upgrade
|
||||
|
||||
# Basic packages
|
||||
apt-get --no-install-recommends -q -y --force-yes install rsyslog logrotate cron chkconfig insserv net-tools ifupdown vim-tiny netbase iptables
|
||||
apt-get --no-install-recommends -q -y --force-yes install openssh-server openssl e2fsprogs dhcp3-client tcpdump socat wget
|
||||
|
|
|
|||
Loading…
Reference in New Issue