Saltstack Official PHP Formula
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. control 'Php service' do
  2. title 'should be running and enabled'
  3. def test_debian
  4. describe service('php5.6-fpm') do
  5. it { should be_enabled }
  6. it { should be_running }
  7. end
  8. describe service('php7.3-fpm') do
  9. it { should be_enabled }
  10. it { should be_running }
  11. end
  12. end
  13. def test_ubuntu
  14. describe service(pkg_name) do
  15. it { should be_enabled }
  16. it { should be_running }
  17. end
  18. end
  19. def test_redhat
  20. end
  21. def test_suse
  22. end
  23. case os[:family]
  24. when 'debian'
  25. case os[:name]
  26. when 'ubuntu'
  27. test_ubuntu
  28. when 'debian'
  29. test_debian
  30. end
  31. when 'redhat', 'fedora'
  32. test_redhat
  33. when 'suse'
  34. test_suse
  35. end
  36. end