Sha256: dae68f3f38032d2179e359fa2aac668061c6b6f1b336ecdd88caef713b24bd26
Contents?: true
Size: 782 Bytes
Versions: 38
Compression:
Stored size: 782 Bytes
Contents
module Vagrant module Plugin module V2 # A base class for a guest OS. A guest OS is responsible for detecting # that the guest operating system running within the machine. The guest # can then be extended with various "guest capabilities" which are their # own form of plugin. # # The guest class itself is only responsible for detecting itself, # and may provide helpers for the capabilties. class Guest # This method is called when the machine is booted and has communication # capabilities in order to detect whether this guest operating system # is running within the machine. # # @return [Boolean] def detect?(machine) false end end end end end
Version data entries
38 entries across 35 versions & 8 rubygems