On Mon, Jan 30, 2012 at 6:05 PM, Richard K. Miller <richardkmil...@gmail.com> wrote: > I'm using Dropbox's command-line daemon on one of our machines and > want to use Puppet to keep it running. The dropbox service is already > installed and allows me to successfully execute /etc/init.d/dropbox > [start/stop/restart/service]. Here's my code: > > class dropbox::service { > service { "dropbox": > ensure => running, > } > } > > I get the following syslog error when this runs: > (/Stage[main]/Dropbox::Service/Service[dropbox]/ensure) change from > stopped to running failed: Could not start Service[dropbox]: Execution > of '/etc/init.d/dropbox start' returned 1: at /etc/puppet/modules/ > dropbox/manifests/init.pp:14 > > However, if I run the above command manually, it works fine and > returns 0: > > root@webhost:~# /etc/init.d/dropbox start ; echo $? > Starting dropbox... > 0 > > Any ideas why puppet can't start the dropbox daemon?
Try this on the command line: puppet resource service dropbox ensure=running -d Nan -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.