Fixed syntax errors and wrong class naming

This commit is contained in:
7u83 2020-10-15 13:29:10 +02:00
parent 565a47bc60
commit 8772bacffb
2 changed files with 7 additions and 3 deletions

View File

@ -188,7 +188,11 @@ class wmdeit_piwik(
if $localsql {
class {"mysql::server":
'innodb_buffer_pool_size' => '2147483648';
override_options => {
mysqld => {
'innodb_buffer_pool_size' => '2147483648'
}
}
}
mysql::db { 'piwikdb':

View File

@ -1,6 +1,6 @@
# piwik os dependend params
class piwik::params{
class wmdeit_piwik::params{
case $::osfamily {
'FreeBSD':{
@ -44,7 +44,7 @@ class piwik::params{
$wwwuser = "www-data"
$cache_dir = "/var/cache/nginx"
$phpver = "php7.2"
$phpfpm_cfg ="/etc/php/7.0/fpm/php-fpm.conf"
$phpfpm_cfg ="/etc/php/7.2/fpm/php-fpm.conf"
$phpfpm_service = "$phpver-fpm"
$ssldir = "/etc/ssl"
$eventmech = "epoll"