mirror of
				https://github.com/containers/podman.git
				synced 2025-11-04 08:56:05 +08: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
 |