118a72cb93
OBS-URL: https://build.opensuse.org/request/show/967493 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/podman?expand=0&rev=92
41 lines
1.7 KiB
Diff
41 lines
1.7 KiB
Diff
From 951c73696c76a54ca174c7478e225b99fee3e561 Mon Sep 17 00:00:00 2001
|
|
From: Tobias Polley <polley@predic8.de>
|
|
Date: Thu, 17 Mar 2022 23:00:54 +0100
|
|
Subject: [PATCH 1/2] Relabel: relabel links instead of their targets
|
|
|
|
Signed-off-by: Tobias Polley <polley@predic8.de>
|
|
---
|
|
vendor/github.com/opencontainers/selinux/go-selinux/rchcon.go | 2 +-
|
|
.../opencontainers/selinux/go-selinux/rchcon_go115.go | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/vendor/github.com/opencontainers/selinux/go-selinux/rchcon.go b/vendor/github.com/opencontainers/selinux/go-selinux/rchcon.go
|
|
index 897ecbac4..feb739d32 100644
|
|
--- a/vendor/github.com/opencontainers/selinux/go-selinux/rchcon.go
|
|
+++ b/vendor/github.com/opencontainers/selinux/go-selinux/rchcon.go
|
|
@@ -12,7 +12,7 @@ import (
|
|
|
|
func rchcon(fpath, label string) error {
|
|
return pwalkdir.Walk(fpath, func(p string, _ fs.DirEntry, _ error) error {
|
|
- e := setFileLabel(p, label)
|
|
+ e := lSetFileLabel(p, label)
|
|
// Walk a file tree can race with removal, so ignore ENOENT.
|
|
if errors.Is(e, os.ErrNotExist) {
|
|
return nil
|
|
diff --git a/vendor/github.com/opencontainers/selinux/go-selinux/rchcon_go115.go b/vendor/github.com/opencontainers/selinux/go-selinux/rchcon_go115.go
|
|
index 2c8b033ce..ecc7abfac 100644
|
|
--- a/vendor/github.com/opencontainers/selinux/go-selinux/rchcon_go115.go
|
|
+++ b/vendor/github.com/opencontainers/selinux/go-selinux/rchcon_go115.go
|
|
@@ -11,7 +11,7 @@ import (
|
|
|
|
func rchcon(fpath, label string) error {
|
|
return pwalk.Walk(fpath, func(p string, _ os.FileInfo, _ error) error {
|
|
- e := setFileLabel(p, label)
|
|
+ e := lSetFileLabel(p, label)
|
|
// Walk a file tree can race with removal, so ignore ENOENT.
|
|
if errors.Is(e, os.ErrNotExist) {
|
|
return nil
|
|
--
|
|
2.35.1
|
|
|