Project

General

Profile

Download (1.29 KB) Statistics
| Branch: | Tag: | Revision:
class NXOS < Operatingsystem
# We don't fetch any files here.
PXEFILES = {}

# Simple output of the media url
def mediumpath(host)
medium_uri(host).to_s
end

def class
Operatingsystem
end

# The variant to use when communicating with the proxy. We also need a new type here.
def pxe_variant
"poap"
end

# The kind of PXE configuration template used. POAP is used for Cisco POAP scripts.
def template_kind
"POAP"
end

def pxedir
"boot/$arch/images"
end

def url_for_boot(file)
raise ::Foreman::Exception.new(N_("Function not available for %s"), self.display_family)
end

# where to create the boot file on the TFTP server
def boot_filename(host = nil)
"poap.cfg/"+host.mac.gsub(/:/,"").upcase
end

def kernel(arch)
"none"
end

def initrd(arch)
"none"
end

# release_name can be used to complete Cisco release numbers.
def use_release_name?
true
end

# release_name can have upper case letters and we want to keep it that way
def downcase_release_name
release_name
end

# generate a Cisco release number using release_name as an auxiliary field
def release
"#{major}#{('.' + minor.to_s) unless minor.blank?}#{('.' + release_name) unless release_name.blank?}"
end

def display_family
"NX-OS"
end
end
(9-9/13)