SElinux policy csi-vxflexos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## <summary></summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module vxflexos-cni 1.0; | |
require { | |
type unlabeled_t; | |
type container_t; | |
class file { create open getattr setattr read write append rename link unlink ioctl lock }; | |
class dir { add_name create getattr ioctl link lock open read remove_name rename reparent rmdir search setattr unlink write }; | |
} | |
#!!!! WARNING: 'unlabeled_t' is a base type. | |
allow container_t unlabeled_t:dir { create open getattr setattr read write link unlink rename search add_name remove_name reparent rmdir lock ioctl }; | |
allow container_t unlabeled_t:file { create open getattr setattr read write append rename link unlink ioctl lock }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment