# File lib/puppet/provider/mount.rb, line 10
10:   def mount
11:     # Manually pass the mount options in, since some OSes *cough*OS X*cough* don't
12:     # read from /etc/fstab but still want to use this type.
13:     args = []
14:     args << "-o" << self.options if self.options and self.options != :absent
15:     args << resource[:name]
16: 
17:     flush if respond_to?(:flush)
18:     mountcmd(*args)
19:   end