# 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:         if self.options and self.options != :absent
15:             args << "-o" << self.options
16:         end
17:         args << resource[:name]
18: 
19:         if respond_to?(:flush)
20:             flush
21:         end
22:         mountcmd(*args)
23:     end