# File lib/chef/provider/script.rb, line 40
      def set_owner_and_group
        # FileUtils itself implements a no-op if +user+ or +group+ are nil
        # You can prove this by running FileUtils.chown(nil,nil,'/tmp/file')
        # as an unprivileged user.
        FileUtils.chown(@new_resource.user, @new_resource.group, script_file.path)
      end