Hi Peter, It looks like it's the quotes in your command. The entire command is > wrapped in double quotes, and the actual mysql command should be wrapped in > single quotes, but isn't. Also you have admin, localhost, and secret in > single quotes that aren't escaped. You will need to escape all the single > quotes inside the mysql command, and also add an unescaped quote after the > semicolon to match with the si glee quote after the '-e'. E.g. > > command => "mysql -e 'grant all privileges on *.* to > \'admin\'@\'localhost\' identified by \'secret\';'", >
Cool, thanks! I thought that quoting might somehow be involved. I really think this is an important part of the equation. Thanks for the tip! 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 > > It's because you are using "refreshonly => true,". In order to work, you > need to use something like this after you includes: > > Class['bacula::config'] ~> > Class['bacula::exec'] > > If you want your exec to run after configuration changes. > > Or remove the refreshonly parameter if you want it to run always. > > Best regards, > Cristian Craig and Christan.. thanks for your input! What I was trying to do with the 'refreshonly' statement was to get the exec statement to run only once. How would I be able to achieve getting the exec command to run only once? Thanks!! Tim On Mon, Feb 22, 2016 at 7:14 AM, Cristian Falcas <cristi.fal...@gmail.com> wrote: > Hi, > > It's because you are using "refreshonly => true,". In order to work, you > need to use something like this after you includes: > > Class['bacula::config'] ~> > Class['bacula::exec'] > > If you want your exec to run after configuration changes. > > Or remove the refreshonly parameter if you want it to run always. > > Best regards, > Cristi > > > > On Mon, Feb 22, 2016 at 9: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, >> } >> >> } >> >> This is my init file: >> >> class bacula { >> >> include bacula::install, bacula::service, bacula::cron, >> bacula::config, bacula::exec >> >> } >> >> Any thoughts or opininions welcomed! >> >> Tim >> >> >> -- >> GPG me!! >> >> gpg --keyserver pool.sks-keyservers.net --recv-keys F186197B >> >> -- >> 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/CAOZy0eky4KpzhZ4NS2BUQSSb7HK6L4HyEpPJAoRaaGK2dYW64w%40mail.gmail.com >> <https://groups.google.com/d/msgid/puppet-users/CAOZy0eky4KpzhZ4NS2BUQSSb7HK6L4HyEpPJAoRaaGK2dYW64w%40mail.gmail.com?utm_medium=email&utm_source=footer> >> . >> For more options, visit https://groups.google.com/d/optout. >> > > -- > 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/CAMo7R_dvtgYgJPmbNTjebccs75DkQdA1LZc9bnPgKdsoCLqUbA%40mail.gmail.com > <https://groups.google.com/d/msgid/puppet-users/CAMo7R_dvtgYgJPmbNTjebccs75DkQdA1LZc9bnPgKdsoCLqUbA%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- GPG me!! gpg --keyserver pool.sks-keyservers.net --recv-keys F186197B -- 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/CAOZy0emF%2BX%3DqAOvf_SosqTFL_J3Nj_3eGXr8jzfR%3DA5QTKFQnQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.