mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Since seccomp is still a configurable build-tag, add a requirements entry for seccomp, as well as move seccomp tests to "_unix" given it won't be applicable to other platforms at this time. Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> (github: estesp)
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			122 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			122 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build seccomp
 | 
						|
 | 
						|
package main
 | 
						|
 | 
						|
const (
 | 
						|
	// indicates docker daemon built with seccomp support
 | 
						|
	supportsSeccomp = true
 | 
						|
)
 |