Project

General

Profile

Download (1.02 KB) Statistics
| Branch: | Tag: | Revision:
# These helpers are provided as convenience methods available to the writers of templates
# and are mixed in to Host
module HostTemplateHelpers
extend ActiveSupport::Concern
include ::Foreman::ForemanUrlRenderer

# Calculates the media's path in relation to the domain and convert host to an IP
def install_path
operatingsystem.interpolate_medium_vars(operatingsystem.media_path(medium, domain), architecture.name, operatingsystem)
end

# Calculates the jumpstart path in relation to the domain and convert host to an IP
def jumpstart_path
operatingsystem.jumpstart_path medium, domain
end

def multiboot
operatingsystem.pxe_prefix(architecture) + "-multiboot"
end

def miniroot
operatingsystem.initrd(architecture)
end

attr_writer(:url_options)

# used by url_for to generate the path correctly
def url_options
url_options = (@url_options || {}).deep_dup()
url_options[:protocol] = "http://"
url_options[:host] = Setting[:foreman_url] if Setting[:foreman_url]
url_options
end
end
(23-23/48)