diff options
author | Micah Anderson <micah@riseup.net> | 2011-03-22 12:27:04 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2011-03-22 12:27:04 -0400 |
commit | 6729b2e5e2f8d9086985f12b15df2153192f3023 (patch) | |
tree | 56f26b12b2e54511f5542753a5d836ce8cd7b755 /manifests | |
parent | 898a1f9c8fdf7843cad890ec3ee7fd655654e8d6 (diff) |
fix syntax error from previous commit
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/debian.pp | 2 | ||||
-rw-r--r-- | manifests/puppetmaster/package/debian.pp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp index 90e8327..f0479ae 100644 --- a/manifests/debian.pp +++ b/manifests/debian.pp @@ -28,7 +28,7 @@ class puppet::debian inherits puppet::linux { } Package['puppet']{ - require => Package['puppet-common']; + require => Package['puppet-common'] } } diff --git a/manifests/puppetmaster/package/debian.pp b/manifests/puppetmaster/package/debian.pp index 254d55f..33d7d5e 100644 --- a/manifests/puppetmaster/package/debian.pp +++ b/manifests/puppetmaster/package/debian.pp @@ -1,6 +1,6 @@ class puppet::puppetmaster::package::debian inherits puppet::puppetmaster::package { Package['puppetmaster']{ - require => Package['puppetmaster-common']; + require => Package['puppetmaster-common'] } } |