# File lib/puppet/provider/mount.rb, line 21 21: def remount 22: info "Remounting" 23: if resource[:remounts] == :true 24: mountcmd "-o", "remount", resource[:name] 25: else 26: unmount 27: mount 28: end 29: end