I suggest using a notice => Exec["shareall"] in your dfsshare rather than
before. Also make exec{"shareall": refreshonly => true}

That may or may not help with your problem but either way good design

On Tue, Aug 9, 2011 at 11:23 AM, Stefan Schulte <
stefan.schu...@taunusstein.net> wrote:

> On Tue, Aug 09, 2011 at 10:19:26AM -0700, ki_chi_saga wrote:
> > Hello everybody out there!
> > Is there anyone who can explain why;
> >
> ..................................................................................
> >   $share1 = "share -F nfs -o ro,anon=0 /jumpstart/install"
> >   $share2 = "share -F nfs -o ro,anon=0 /jumpstart/config"
> >   dfshare {[$share1,$share2]:
> >     before => Exec["shareall"]
> >   }
> >
> >   service { "rpc/bind":
> >     enable => true,
> >     ensure => running
> >   }
> >
> >   service { "nfs/server":
> >     enable => true,
> >     ensure => running,
> >     require => Service["rpc/bind"]
> >   }
> >
> >   exec { "shareall":
> >     command => "/usr/sbin/shareall",
> >     require => Service["nfs/server"]
> >
> .....................................................................................
> >
> > Sometimes results in;
> >
> > =============================================================
> > err: /Stage[main]/Nfsexport/Exec[shareall]/returns: change from notrun
> > to 0 failed:
> > /usr/sbin/shareall returned 32 instead of one of [0] at /proj/unixteam/
> > puppet/modules/jumpstart/manifests/init.pp:36
> > ==============================================================
> >
> > To me the Exec["shareall"] will be run last? But does it?
> >
> > Rgds,
> >  Mat
> >
>
> If I understand this, »shareall« will only run if both services are up?
> First thing I would do: check what returncode 32 stands for. Then run
> your manifest in debug mode -- you'll now see what puppet is executing
> in the background. You should see something like
>
>  /usr/sbin/svcadm enable rpc/bind
>  /usr/sbin/svcadm enable nfs/server
>  /usr/sbin/shareall
>
> You may want to run this as a small shell script. If I recall correctly
> svcadm enable can actually return before the service is really up. So
> you may have to spend a sleep exec somewhere (ugly).
>
> -Stefan
>

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

Reply via email to