diff options
author | Miloslav Trmač <mitr@redhat.com> | 2020-03-20 23:40:42 +0100 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2020-03-21 00:21:59 +0100 |
commit | 054addf7accb964ee7102c2300ea2f0101dfd32f (patch) | |
tree | eef3e058bb1ed1f99691ea3b0921689127a3cf36 | |
parent | e625b57d225cd5646d6b52a45119c240b94e0741 (diff) | |
download | podman-054addf7accb964ee7102c2300ea2f0101dfd32f.tar.gz podman-054addf7accb964ee7102c2300ea2f0101dfd32f.tar.bz2 podman-054addf7accb964ee7102c2300ea2f0101dfd32f.zip |
Fix the libpod.LabelVolumePath stub
Signed-off-by: Miloslav Trmač <mitr@redhat.com>
-rw-r--r-- | libpod/util_unsupported.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/util_unsupported.go b/libpod/util_unsupported.go index 9a9a6eeb6..4c5616bd0 100644 --- a/libpod/util_unsupported.go +++ b/libpod/util_unsupported.go @@ -25,7 +25,7 @@ func assembleSystemdCgroupName(baseSlice, newSlice string) (string, error) { // LabelVolumePath takes a mount path for a volume and gives it an // selinux label of either shared or not -func LabelVolumePath(path string, shared bool) error { +func LabelVolumePath(path string) error { return define.ErrNotImplemented } |