# File lib/puppet/util/filetype.rb, line 192
192:     def cmdbase
193:       cmd = nil
194:       if @uid == Puppet::Util::SUIDManager.uid || Facter.value(:operatingsystem) == "HP-UX"
195:         return "crontab"
196:       else
197:         return "crontab -u #{@path}"
198:       end
199:     end