diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-04-13 18:22:01 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-04-13 18:22:01 -0300 |
commit | b9d017bb48abec0fa889165e3a1866c85c8685a0 (patch) | |
tree | 09870efcf210f2b501173646111e60aeea6922c5 | |
parent | 2286875dd01b50090fe3a18bfafa01a232bf50a5 (diff) | |
download | puppet-nodo-b9d017bb48abec0fa889165e3a1866c85c8685a0.tar.gz puppet-nodo-b9d017bb48abec0fa889165e3a1866c85c8685a0.tar.bz2 |
Declaring nodo::subsystem::motd using class { }
-rw-r--r-- | manifests/base.pp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/manifests/base.pp b/manifests/base.pp index c1173a5..6507c27 100644 --- a/manifests/base.pp +++ b/manifests/base.pp @@ -1,7 +1,6 @@ class nodo::base { include lsb include nodo::subsystem::sudo - include nodo::subsystem::motd include nodo::subsystem::locales include nodo::subsystem::profile include nodo::utils @@ -11,7 +10,7 @@ class nodo::base { include concat::setup include cron - class { 'nodo::subsystem::hosts': } + class { [ 'nodo::subsystem::hosts', 'nodo::subsystem::motd' ]: } # Include if not defined by nodo::master class { 'puppet::daemon': |