In order to get a SUSE guest running and installing fine i have added a correct capability for installing rsync and nfs-client. I have included SUSE naming fixes as well because SUSe doesnt get spelled SuSE anymore :).
12 lines
255 B
Ruby
12 lines
255 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module GuestSUSE
|
|
class Guest < Vagrant.plugin("2", :guest)
|
|
def detect?(machine)
|
|
machine.communicate.test("test -f /etc/SuSE-release || grep -q SUSE /etc/os-release")
|
|
end
|
|
end
|
|
end
|
|
end
|