Skip to content

Instantly share code, notes, and snippets.

@jcpowermac
Created June 18, 2014 20:15
Show Gist options
  • Select an option

  • Save jcpowermac/8fba815673cb35691e0f to your computer and use it in GitHub Desktop.

Select an option

Save jcpowermac/8fba815673cb35691e0f to your computer and use it in GitHub Desktop.
module ProjectHanlon
module ModelTemplate
class Redhat7 < Redhat
include(ProjectHanlon::Logging)
def initialize(hash)
super(hash)
# Static config
@hidden = false
@name = "redhat_7"
@description = "RedHat 7 Model"
@osversion = "7"
from_hash(hash) unless hash == nil
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment