Merge branch 'stable' into next-release

This commit is contained in:
Julien Fontanet 2016-02-29 09:31:12 +01:00
commit 757bf82a78
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "xo-server", "name": "xo-server",
"version": "4.14.3", "version": "4.14.4",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"description": "Server part of Xen-Orchestra", "description": "Server part of Xen-Orchestra",
"keywords": [ "keywords": [

View File

@ -40,7 +40,7 @@ export default class NfsHandler extends LocalHandler {
async _mount (remote) { async _mount (remote) {
await fs.ensureDir(remote.path) await fs.ensureDir(remote.path)
return execa('mount', ['-t', 'nfs', '-o', 'vers=3', `${remote.host}:${remote.share}`, remote.path]) return execa('mount', ['-t', 'nfs', '-o', 'vers=3', `${remote.host}:/${remote.share}`, remote.path])
} }
async _sync () { async _sync () {