All pastes #2073873 Raw Edit

Someone

public text v1 · immutable
#2073873 ·published 2011-06-02 21:32 UTC
rendered paste body
[root@localhost modules]$ find foo bar -type f | xargs head
==> foo/manifests/bar.pp <==
class foo::bar {
        include bar

        info("foo::bar")
}

==> bar/manifests/init.pp <==
class bar {
        info("bar")
}
[root@localhost modules]$    
[root@localhost modules]$ puppet apply --modulepath=$PWD -e 'include foo::bar' | grep alert:
alert: Scope(Class[Foo::Bar]): foo::bar
[root@localhost modules]$