mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			292 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			292 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build linux
 | 
						|
 | 
						|
package daemon
 | 
						|
 | 
						|
import "github.com/opencontainers/runc/libcontainer/selinux"
 | 
						|
 | 
						|
func selinuxSetDisabled() {
 | 
						|
	selinux.SetDisabled()
 | 
						|
}
 | 
						|
 | 
						|
func selinuxFreeLxcContexts(label string) {
 | 
						|
	selinux.FreeLxcContexts(label)
 | 
						|
}
 | 
						|
 | 
						|
func selinuxEnabled() bool {
 | 
						|
	return selinux.SelinuxEnabled()
 | 
						|
}
 |