Method: Vagrant::Guest::Base#initialize
- Defined in:
- lib/vagrant/guest/base.rb
#initialize(vm) ⇒ Base
Initializes the system. Any subclasses MUST make sure this
method is called on the parent. Therefore, if a subclass overrides
initialize
, then you must call super
.
30 31 32 |
# File 'lib/vagrant/guest/base.rb', line 30 def initialize(vm) @vm = vm end |