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

Attachment: pgppmfYyZ9pAI.pgp
Description: PGP signature

Reply via email to