mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 00:42:33 -05:00
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 :).
11 lines
207 B
Ruby
11 lines
207 B
Ruby
module VagrantPlugins
|
|
module GuestSUSE
|
|
module Cap
|
|
class NetworkScriptsDir
|
|
def self.network_scripts_dir(machine)
|
|
"/etc/sysconfig/network"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|