Class: VagrantVbguest::Installers::Oracle

Inherits:
RedHat show all
Defined in:
lib/vagrant-vbguest/installers/oracle.rb

Instance Attribute Summary

Attributes inherited from Base

#env, #host, #options, #vm

Class Method Summary collapse

Methods inherited from RedHat

#install

Methods inherited from Linux

#cleanup, #execute_installer, #find_tool, #guest_version, #install, #installer, #installer_arguments, #installer_options, #mount_iso, #mount_point, #os_release, os_release, #provides_vboxadd_tools?, #rebuild, #running?, #start, #systemd_tool, #tmp_path, #unmount_iso, #vboxadd_tools_available?, #yes

Methods inherited from Base

#cleanup, distro, #guest_version, #host_version, #initialize, #install, #installer_options, #installer_version, #iso_file, #mount_point, #provides_vboxadd_tools?, #reboot_after_install?, #rebuild, #running?, #start, #tmp_path, #upload, #vboxadd_tools_available?, #yield_installation_error_warning, #yield_installation_warning, #yield_rebuild_warning

Methods included from Helpers::VmCompatible

#communicate, #driver, included

Constructor Details

This class inherits a constructor from VagrantVbguest::Installers::Base

Class Method Details

.match?(vm) ⇒ Boolean

Returns:

  • (Boolean)


5
6
7
8
# File 'lib/vagrant-vbguest/installers/oracle.rb', line 5

def self.match?(vm)
  :redhat == self.distro(vm) &&
    communicate_to(vm).test('test -f /etc/oracle-release')
end