(#11185) Fully qualify $operatingsystem

Fully qualify $operatingsystem from root scope as $::operatingsystem. This
should help remove the warnings in Puppet 2.7.x.
This commit is contained in:
Christian G. Warden 2011-12-05 14:29:34 -08:00 committed by Ken Barber
parent c9030cdcd9
commit 92660497a2

View file

@ -13,7 +13,7 @@
#
class mysql::params{
$socket = '/var/run/mysqld/mysqld.sock'
case $operatingsystem {
case $::operatingsystem {
'centos', 'redhat', 'fedora': {
$service_name = 'mysqld'
$client_package_name = 'mysql'