We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bec7705 commit 4cc5215Copy full SHA for 4cc5215
xhyve/xhyve.go
@@ -320,6 +320,7 @@ func (d *Driver) Create() error {
320
321
// Setup NFS sharing
322
if d.NFSShare {
323
+ log.Infof("NFS share folder must be root. Please insert root password.")
324
err = d.setupNFSShare()
325
if err != nil {
326
log.Errorf("NFS setup failed: %s", err.Error())
@@ -405,6 +406,7 @@ func (d *Driver) Remove() error {
405
406
}
407
408
409
+ log.Infof("Remove NFS share folder must be root. Please insert root password.")
410
if _, err := nfsexports.Remove("", d.nfsExportIdentifier()); err != nil {
411
log.Errorf("failed removing nfs share: %s", err.Error())
412
0 commit comments