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




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