diff options
author | Micah Anderson <micah@riseup.net> | 2012-08-22 14:12:34 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-08-22 14:26:26 -0400 |
commit | 346e0e0c5819107474b47025ac7fadaa751f63a5 (patch) | |
tree | 8b4fa7f94f3f33dbb6f5767783fd4e1a87cb4f14 /manifests | |
parent | 6af581ed82a908c6b1fdc8e17bda30a85c8b9d71 (diff) |
switch to $::operatingsystem as suggested by ng in https://labs.riseup.net/code/issues/4029
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/puppetmaster/passenger.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/puppetmaster/passenger.pp b/manifests/puppetmaster/passenger.pp index 9f4d1e8..e026a62 100644 --- a/manifests/puppetmaster/passenger.pp +++ b/manifests/puppetmaster/passenger.pp @@ -7,7 +7,7 @@ class puppet::puppetmaster::passenger inherits puppet::puppetmaster::base { # A reference configuration is available at : # http://github.com/reductivelabs/puppet/tree/master/ext/rack - case $operatingsystem { + case $::operatingsystem { debian: { package { 'puppetmaster-passenger': ensure => installed } file { |