1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

fix apparmor load profile

Signed-off-by: Xianglin Gao <xlgao@zju.edu.cn>
This commit is contained in:
Xianglin Gao 2016-11-29 15:48:38 +08:00
parent b8e3a28d65
commit 2ab8f2e389
2 changed files with 2 additions and 3 deletions

View file

@ -4,7 +4,6 @@ package aaparser
import (
"fmt"
"os/exec"
"path/filepath"
"strconv"
"strings"
)
@ -26,7 +25,7 @@ func GetVersion() (int, error) {
// LoadProfile runs `apparmor_parser -r` on a specified apparmor profile to
// replace the profile.
func LoadProfile(profilePath string) error {
_, err := cmd("", "-r", filepath.Dir(profilePath))
_, err := cmd("", "-r", profilePath)
if err != nil {
return err
}