mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 01:50:50 +08:00 
			
		
		
		
	 6b06e9b77c
			
		
	
	6b06e9b77c
	
	
	
		
			
			[NO TESTS NEEDED] Since we are just testing the default. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			364 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			364 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !systemd !cgo
 | |
| 
 | |
| package config
 | |
| 
 | |
| const (
 | |
| 	// DefaultLogDriver is the default type of log files
 | |
| 	DefaultLogDriver = "k8s-file"
 | |
| )
 | |
| 
 | |
| func defaultCgroupManager() string {
 | |
| 	return CgroupfsCgroupsManager
 | |
| }
 | |
| 
 | |
| func defaultEventsLogger() string {
 | |
| 	return "file"
 | |
| }
 | |
| 
 | |
| func defaultLogDriver() string {
 | |
| 	return DefaultLogDriver
 | |
| }
 | |
| 
 | |
| func useSystemd() bool {
 | |
| 	return false
 | |
| }
 |