On Mon, Feb 22, 2016 at 8:14 AM, Tim Dunphy <bluethu...@gmail.com> wrote:
> Hey guys,
>
>  I wrote an exec class for one of my modules. And for some reason, on puppet
> runs it's not executing.
>
> Here's the class:
>
> class bacula::exec {
>
>     exec { 'create.mysql.admin.user':
>     path => "/bin",
>     command => "mysql -e 'grant all privileges on *.* to 'admin'@'localhost'
> identified by 'secret';",
>     refreshonly => true,
>     }

You have "refreshonly" set to true, this means the exec will never run
unless something triggers a refresh event on the resource.  Eg:
another resource must notify the exec resource, or the exec resource
must subscribe to another resource - it will then be triggered
whenever there is a change to the related resource.

You haven't provided any code indicating that there is a resource that
notifies your exec, I suspect thats why it's never running.

Regards

Craig

-- 
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/CACxdKhEgLtGynpCyeX%3DYuycgAdNQ6vJ4PWsaqcfvd8FVvCY8MA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to