24 lines
		
	
	
		
			530 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			530 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| # Prepare platform "finger"
 | |
| platform_finger = system.platform[:finger].split('.').first.to_s
 | |
| 
 | |
| control 'unbound.service.running' do
 | |
|   title 'The service should be installed, enabled and running'
 | |
| 
 | |
|   # Overide by `platform_finger`
 | |
|   service_name =
 | |
|     case platform_finger
 | |
|     when 'centos-6', 'amazonlinux-1'
 | |
|       'crond'
 | |
|     else
 | |
|       'systemd-journald'
 | |
|     end
 | |
| 
 | |
|   describe service(service_name) do
 | |
|     it { should be_installed }
 | |
|     it { should be_enabled }
 | |
|     it { should be_running }
 | |
|   end
 | |
| end
 | 
