I've even simplified the example:
class { c2: }
class { c3: }
class c1 {
notice "+++"
file {'/tmp/c1.txt': ensure => present }
}
class c2 {
# include c1
contain c1
notice "+++"
file {'/tmp/c2.txt': ensure => present }
}
class c3 {
require c2
notice "+++"
file {'/tmp/c3.txt': ensure => present }
}
$ puppet apply --graph test.pp
$ open -a GraphViz /Users/david/.puppet/var/state/graphs/relationships.dot
according to relationships.dot, /tmp/c3.txt does not even depend on
/tmp/c2.txt.
why??
(puppet 3.4.3 on OSX 10.9)
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/puppet-users/5a0fb266-8f46-4179-bc2e-888bb2a7c17e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.