Class: Serverkit::Resources::Package

Inherits:
Base
  • Object
show all
Defined in:
lib/serverkit/resources/package.rb

Instance Attribute Summary

Attributes inherited from Base

#attributes, #backend, #check_result, #recheck_result, #recipe

Instance Method Summary collapse

Methods inherited from Base

abstract_class?, #all_errors, attribute, #check_command, #check_command_from_identifier, #get_command_from_identifier, #handlers, #id, #initialize, #notifiable?, #run_apply, #run_check, #successful?, #successful_on_check?, #successful_on_recheck?, #to_a

Constructor Details

This class inherits a constructor from Serverkit::Resources::Base

Instance Method Details

#applyObject

Note:

Override



11
12
13
# File 'lib/serverkit/resources/package.rb', line 11

def apply
  run_command_from_identifier(:install_package, name, version, options)
end

#checkObject

Note:

Override



16
17
18
# File 'lib/serverkit/resources/package.rb', line 16

def check
  check_command_from_identifier(:check_package_is_installed, name, version)
end