aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/Microsoft/hcsshim/internal/wclayer/grantvmaccess.go
blob: d86e6782756a6d377be9ecf7379ec744ae8fdd2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package wclayer

import (
	"fmt"

	"github.com/Microsoft/hcsshim/internal/hcserror"
	"github.com/sirupsen/logrus"
)

// GrantVmAccess adds access to a file for a given VM
func GrantVmAccess(vmid string, filepath string) error {
	title := fmt.Sprintf("hcsshim::GrantVmAccess id:%s path:%s ", vmid, filepath)
	logrus.Debugf(title)

	err := grantVmAccess(vmid, filepath)
	if err != nil {
		err = hcserror.Errorf(err, title, "path=%s", filepath)
		logrus.Error(err)
		return err
	}

	logrus.Debugf(title + " - succeeded")
	return nil
}