I've even simplified the example:

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 {
#  include c2
  contain c2
  notice "+++"
  file {'/tmp/c3.txt': ensure => present }
}

$ puppet apply --graph test.pp

$ open -a GraphViz /Users/david/.puppet/var/state/graphs/relationships.dot 

in this case, /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 puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/fd1af1b0-30fe-48d4-9440-9dd5878ee712%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to