Fly, Penguin!

I blog so I don't forget.

Puppet Quiz: What’s wrong here?

0 minute read #puppet #solved

The 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.