hosts/opensuse: start NFS server properly [GH-2923]

This commit is contained in:
Mitchell Hashimoto 2014-02-03 12:18:09 +01:00
parent d8df98a18c
commit b89a47c955
2 changed files with 3 additions and 2 deletions

View File

@ -73,6 +73,7 @@ BUG FIXES:
[GH-2792] [GH-2792]
- hosts/bsd: Don't invoke shell for NFS sudo calls. [GH-2808] - hosts/bsd: Don't invoke shell for NFS sudo calls. [GH-2808]
- hosts/gentoo: Look for systemctl in `/usr/bin` [GH-2858] - hosts/gentoo: Look for systemctl in `/usr/bin` [GH-2858]
- hosts/opensuse: Start NFS server properly. [GH-2923]
- providers/virtualbox: Enabling internal networks by just setting "true" - providers/virtualbox: Enabling internal networks by just setting "true"
works properly. [GH-2751] works properly. [GH-2751]
- providers/virtualbox: Make more internal interactions with VBoxManage - providers/virtualbox: Make more internal interactions with VBoxManage

View File

@ -3,11 +3,11 @@ module VagrantPlugins
module Cap module Cap
class NFS class NFS
def self.nfs_check_command(env) def self.nfs_check_command(env)
"service nfsserver status" "/sbin/service nfsserver status"
end end
def self.nfs_start_command(env) def self.nfs_start_command(env)
"service nfsserver start" "/sbin/service nfsserver start"
end end
end end
end end