hosts/opensuse: start NFS server properly [GH-2923]
This commit is contained in:
parent
d8df98a18c
commit
b89a47c955
|
@ -73,6 +73,7 @@ BUG FIXES:
|
|||
[GH-2792]
|
||||
- hosts/bsd: Don't invoke shell for NFS sudo calls. [GH-2808]
|
||||
- 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"
|
||||
works properly. [GH-2751]
|
||||
- providers/virtualbox: Make more internal interactions with VBoxManage
|
||||
|
|
|
@ -3,11 +3,11 @@ module VagrantPlugins
|
|||
module Cap
|
||||
class NFS
|
||||
def self.nfs_check_command(env)
|
||||
"service nfsserver status"
|
||||
"/sbin/service nfsserver status"
|
||||
end
|
||||
|
||||
def self.nfs_start_command(env)
|
||||
"service nfsserver start"
|
||||
"/sbin/service nfsserver start"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue