37 lines
759 B
Ruby
37 lines
759 B
Ruby
require "pathname"
|
|
|
|
require "vagrant"
|
|
|
|
require Vagrant.source_root.join("plugins/hosts/linux/host")
|
|
|
|
module VagrantPlugins
|
|
module HostOpenSUSE
|
|
class Host < VagrantPlugins::HostLinux::Host
|
|
def self.match?
|
|
release_file = Pathname.new("/etc/SuSE-release")
|
|
|
|
if release_file.exist?
|
|
release_file.open("r") do |f|
|
|
return true if f.gets =~ /^openSUSE/
|
|
end
|
|
end
|
|
|
|
false
|
|
end
|
|
|
|
# Normal, mid-range precedence.
|
|
def self.precedence
|
|
5
|
|
end
|
|
|
|
def initialize(*args)
|
|
super
|
|
|
|
@nfs_apply_command = "/usr/sbin/exportfs -r"
|
|
@nfs_check_command = "service nfsserver status"
|
|
@nfs_start_command = "service nfsserver start"
|
|
end
|
|
end
|
|
end
|
|
end
|