# File lib/puppet/provider/mount.rb, line 25
25:     def remount
26:         info "Remounting"
27:         if resource[:remounts] == :true
28:             mountcmd "-o", "remount", resource[:name]
29:         else
30:             unmount()
31:             mount()
32:         end
33:     end