 47818fc360
			
		
	
	
		47818fc360
		
	
	
	
	
		
			
			FEATURE: Archlinux support FEATURE: Windows support FEATURE: Enhanced CI/CD FEATURE: modular states BREAKING CHANGE: 'apache.sls' converted to new style 'init.ssl' BREAKING CHANGE: "logrotate.sls" became "config/logrotate.sls" BREAKING CHANGE: "debian_full.sls" became "config/debian_full.sls" BREAKING CHANGE: "flags.sls" became "config/flags.sls" BREAKING CHANGE: "manage_security" became "config/manage_security.sls" BREAKING CHANGE: "mod_*.sls" became "config/mod_*.sls" BREAKING CHANGE: "no_default_host.sls" became "config/no_default_host.sls" BREAKING CHANGE: "own_default_host.sls" became "config/own_default_host.sls" BREAKING CHANGE: "register_site.sls" became "config/register_site.sls" BREAKING CHANGE: "server_status.sls" became "config/server_status.sls" BREAKING CHANGE: "vhosts/" became "config/vhosts/" BREAKING CHANGE: "mod_security/" became "config/mod_security/" NOT-BREAKING CHANGE: 'config.sls' became 'config/init.sls' NOT-BREAKING CHANGE: 'uninstall.sls' symlinked to 'clean.sls'
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| # Overide by OS
 | |
| control 'apache package' do
 | |
|   title 'should be installed'
 | |
| 
 | |
|   case platform[:family]
 | |
|   when 'debian'
 | |
|     package_name = 'apache2'
 | |
|     user_name = 'www-data'
 | |
|     group_name = 'www-data'
 | |
|   when 'suse'
 | |
|     package_name = 'apache2'
 | |
|     user_name = 'wwwrun'
 | |
|     group_name = 'wwwrun'
 | |
|   when 'redhat', 'fedora'
 | |
|     package_name = 'httpd'
 | |
|     user_name = 'apache'
 | |
|     group_name = 'apache'
 | |
|   when 'gentoo'
 | |
|     package_name = 'www-servers/apache'
 | |
|     user_name = 'apache'
 | |
|     group_name = 'apache'
 | |
|   when 'linux', 'arch'
 | |
|     package_name = 'apache'
 | |
|     user_name = 'http'
 | |
|     group_name = 'http'
 | |
|   when 'bsd'
 | |
|     package_name = 'apache24'
 | |
|     user_name = 'www'
 | |
|     group_name = 'www'
 | |
|   when 'windows'
 | |
|     package_name = 'apache-httpd'
 | |
|   end
 | |
| 
 | |
|   describe package(package_name) do
 | |
|     it { should be_installed }
 | |
|   end
 | |
|   describe group(group_name) do
 | |
|     it { should exist }
 | |
|   end
 | |
|   describe user(user_name) do
 | |
|     it { should exist }
 | |
|   end
 | |
| end
 | |
| 
 | |
| control 'apache module packages' do
 | |
|   title 'should be installed'
 | |
| 
 | |
|   package_name =
 | |
|     case platform[:family]
 | |
|     when 'debian'
 | |
|       'libapache2-mod-security2'
 | |
|     when 'redhat', 'fedora'
 | |
|       'mod_security'
 | |
|     when 'suse'
 | |
|       'apache2-mod_security2'
 | |
|     end
 | |
| 
 | |
|   describe package(package_name) do
 | |
|     it { should be_installed }
 | |
|   end
 | |
| end
 |