Hi.

I'm using the mount resource type to mount a CIFS file system. This is my
configuration:

-- code --
file {"/mnt/remote_file_system":
    ensure => directory
  }

mount { "/mnt/remote_file_system/":
   device => "//$shares_server/share",
   fstype => cifs,
   ensure => mounted,
   remounts => true,
   options => "defaults,acl,soft,[…]",
   pass => "0",
   dump => "0",
   require => File["/mnt/remote_file_system"],
   subscribe => File["/root/credentials.txt"]
 }
 -- code --

Whenever puppet runs, it seems to mount the file system each time around,
which is indiated by multiple identical entries when running "mount" or "cat
/proc/mounts". Can anyone see why puppet behaves like this using my
configuration?


Best regards,
Kenneth Holter

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@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