mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-10-31 02:08:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			304 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			304 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| 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
 | 
