You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.
in module.pp, on line 91 (last before closing parenthesis) there is:
require => Package['php'],
it should be
require => Package[$php::package],
otherwise, installing another php package (php55, php56 from another repo (epel/remi as example for Fedora/Centos/RHEL) will cause the module part to be ignored as the require clause will be missed.
update:
same in init.php:
251: package { "${php::package}":
263: require => Package["${php::package}"],
The text was updated successfully, but these errors were encountered:
in module.pp, on line 91 (last before closing parenthesis) there is:
require => Package['php'],
it should be
require => Package[$php::package],
otherwise, installing another php package (php55, php56 from another repo (epel/remi as example for Fedora/Centos/RHEL) will cause the module part to be ignored as the require clause will be missed.
update:
same in init.php:
251: package { "${php::package}":
263: require => Package["${php::package}"],
The text was updated successfully, but these errors were encountered: