Skip to content

Commit

Permalink
require_nfs_access method should not be a private method.
Browse files Browse the repository at this point in the history
  • Loading branch information
ohadlevy committed Jul 19, 2012
1 parent 272811b commit 06bf16e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 5 additions & 4 deletions app/models/operatingsystem.rb
Expand Up @@ -161,6 +161,11 @@ def image_extension
raise "Attempting to construct a operatingsystem image filename but #{family} cannot be built from an image"
end

# If this OS family requires access to its media via NFS
def require_nfs_access_to_medium
false
end

private
def deduce_family
if self.family.blank?
Expand All @@ -186,8 +191,4 @@ def boot_files_uri(medium, architecture)
end
end

# If this OS family requires access to its media via NFS
def require_nfs_access_to_medium
false
end
end
1 change: 0 additions & 1 deletion app/models/solaris.rb
Expand Up @@ -83,7 +83,6 @@ def use_release_name?
true
end


def jumpstart_params host, vendor
# root server and install server are always the same under Foreman
server_name = host.medium.media_host
Expand Down

0 comments on commit 06bf16e

Please sign in to comment.