Skip to content

Commit

Permalink
(#11185) Fully qualify $operatingsystem
Browse files Browse the repository at this point in the history
Fully qualify $operatingsystem from root scope as $::operatingsystem. This
should help remove the warnings in Puppet 2.7.x.
  • Loading branch information
cwarden authored and kbarber committed Dec 5, 2011
1 parent c9030cd commit 9266049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 9266049

Please sign in to comment.