Hi,
I defined a nfs mount in puppet:
mount { "/opt/exp_soft/alice":
atboot => true,
device => "vobox-alice.sdfarm.kr:/opt/exp_soft/
alice",
fstype => "nfs",
name => "/opt/exp_soft/alice",
options => "defaults",
ensure => "mounted",
#remounts => false,
require => Package["nfs-utils","nfs-utils-lib"],
require => File["/opt/exp_soft/alice"];
}
If the partition is not mounted, puppet do his job:
puppetd --test
info: Caching catalog at /var/lib/puppet/localconfig.yaml
notice: Starting catalog run
notice: //Node[dpmp0.sdfarm.kr]/wn/mounted::wncealice/Mount[/opt/
exp_soft/alice]/ensure: ensure changed 'present' to 'mounted'
notice: //Node[dpmp0.sdfarm.kr]/wn/mounted::wncealice/Mount[/opt/
exp_soft/alice]: Refreshing self
info: Mount[/opt/exp_soft/alice](provider=parsed): Remounting
notice: Finished catalog run in 2.06 seconds
but if the partition is already mounted, puppet seems to be stuck:
puppetd --test
info: Caching catalog at /var/lib/puppet/localconfig.yaml
notice: Starting catalog run
nothing happen and i have to kill the process (which consuming lot of
ressources)... What i am doing wrong??
Thanks,
Christophe Bonnaud.
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=.