# File lib/puppet/util/filetype.rb, line 225 225: def remove 226: begin 227: Puppet::Util.execute(%w{crontab -r}, :uid => @path) 228: rescue => detail 229: raise Puppet::Error, "Could not remove crontab for %s: %s" % [@path, detail] 230: end 231: end