Class: PackerFiles::Debian::CD

Inherits:
Core::CDImageImpl show all
Defined in:
lib/PackerFiles/OS/Debian/CD.rb

Constant Summary collapse

@@index =

Index URL which contains all the Debian CD Mirror list

'https://www.debian.org/CD/http-ftp/'

Instance Method Summary collapse

Methods inherited from Core::CDImageImpl

#get_index_urls

Instance Method Details

#get_check_sum_patternObject

Override method for getting checksums



22
23
24
# File 'lib/PackerFiles/OS/Debian/CD.rb', line 22

def get_check_sum_pattern
   'MD5SUMS'
end

#get_check_sum_typeObject

Override method for checksum type



27
28
29
# File 'lib/PackerFiles/OS/Debian/CD.rb', line 27

def get_check_sum_type
   'md5'
end

#get_iso_name_patternObject

Override method for getting the ISO name



17
18
19
# File 'lib/PackerFiles/OS/Debian/CD.rb', line 17

def get_iso_name_pattern
	    'debian-@release@-@[email protected]'
end

#index_urlsObject

Override method for getting index URLs.



32
33
34
# File 'lib/PackerFiles/OS/Debian/CD.rb', line 32

def index_urls
	    master_index_urls + mirror_index_urls
end