Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
add SLES support
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Feb 28, 2014
1 parent 72273f9 commit f92f52c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,24 @@
$apache_package_name = 'libapache2-mod-php5'
$apache_service_name = 'apache2'
}
Suse: {
$base_dir = '/etc/php5/'
$cli_dir = "${base_dir}cli/"
$cli_ini = "${cli_dir}php.ini"
$cli_package_name = 'php5'
$extra_dir = "${base_dir}extra/"
$conf_dir = "${base_dir}conf.d/"
$fpm_dir = "${base_dir}fpm/"
$fpm_pool_dir = "${fpm_dir}pool.d/"
$fpm_ini = "${fpm_dir}php.ini"
$fpm_package_name = 'php5-fpm'
$fpm_conf = "${fpm_dir}php-fpm.conf"
$fpm_service_name = 'php5-fpm'
$apache_dir = "${base_dir}apache2/"
$apache_ini = "${apache_dir}php.ini"
$apache_package_name = 'apache2-mod_php5'
$apache_service_name = 'apache2'
}
default: {
case $::operatingsystem {
default: {
Expand Down

0 comments on commit f92f52c

Please sign in to comment.