Puppet Quiz: What’s wrong here?
Posted on July 2, 2015 (Last modified on March 9, 2022) • 1 min read • 42 wordsThe error is: Dependency cycle.
The code is:
class my::own::docker {
include ::docker
file { '/var/lib/docker':
ensure => directory,
before => Class['docker'],
}
}
Why? 🙂
It’s rather simple here, in the real class it really took me a while to find it.