Issue #3444 has been updated by Stefan Schulte.
I was NOT able to reproduce the bug (I testet against version 0.25.4) and after looking at the code I dont see anything that could cause the bug. But I made a few observations: @ Dave: <pre> Execution of '/bin/mount -o rw,bg,soft,nolock,intr,rsiz e=32768,wsize=32768,tcp,vers=3 data05' returned 32: mount.nfs: /data05 is already mounted or busy </pre> It looks like you specified `name => data05` while you SHOULD specify `name => /data05`. @ David: After I followd the link to the `puppet-dev` thread it looks like the author originally did specify `/var/www/`: <pre> Execution of '/bin/mount -o vers=3,rsize=32768,wsize=32768,tcp,noatime,nocto,hard,intr,timeo=60,retrans=2,actimeo=30 /var/www/' returned 32: mount.nfs: /var/www is already mounted or busy </pre> Because of the trailing slash puppet doesnt find the mountpoint when parsing the output of the mount command and then tries to mount the resource. (issue #6793) ---------------------------------------- Bug #3444: mount provider confuses title and name https://projects.puppetlabs.com/issues/3444 Author: David Schmitt Status: Investigating Priority: Normal Assignee: Jesse Wolfe Category: mount Target version: Affected Puppet version: 0.25.4 Keywords: Branch: >From the mailinglist: > My definitions in Puppet config -- the following did not work: > > mount { "nfs_var_www": > device => "nfs-1.sys.cdc.advance.net:/vol/ssf_prod/stage", > ensure => mounted, > fstype => "nfs", > name => "/var/www", > options => > "vers=3,rsize=32768,wsize=32768,tcp,noatime,nocto,hard,intr,timeo=60,retrans=2,actimeo=30", > require => [ Package["httpd"], File["ifcfg_eth1"], Exec['/ > sbin/ifup eth1'] ], > } > > This, however, DOES work: > > mount { "/var/www": > device => "nfs-1.sys.cdc.advance.net:/vol/ssf_prod/stage", > ensure => mounted, > fstype => "nfs", > options => > "vers=3,rsize=32768,wsize=32768,tcp,noatime,nocto,hard,intr,timeo=60,retrans=2,actimeo=30", > require => [ Package["httpd"], File["ifcfg_eth1"], Exec['/ > sbin/ifup eth1'] ], > } http://groups.google.com/group/puppet-dev/browse_thread/thread/7abde5651cdc480b -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" 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-bugs?hl=en.
