mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-09 16:36:47 +00:00
Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.5.4 to 1.5.10. - [Release notes](https://github.com/containerd/containerd/releases) - [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md) - [Commits](https://github.com/containerd/containerd/compare/v1.5.4...v1.5.10) --- updated-dependencies: - dependency-name: github.com/containerd/containerd dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
15 lines
305 B
Go
Generated
15 lines
305 B
Go
Generated
/*
|
|
Package selinux provides a high-level interface for interacting with selinux.
|
|
|
|
Usage:
|
|
|
|
import "github.com/opencontainers/selinux/go-selinux"
|
|
|
|
// Ensure that selinux is enforcing mode.
|
|
if selinux.EnforceMode() != selinux.Enforcing {
|
|
selinux.SetEnforceMode(selinux.Enforcing)
|
|
}
|
|
|
|
*/
|
|
package selinux
|