# File lib/chef/checksum.rb, line 108
    def commit_sandbox_file(sandbox_file)
      @original_committed_file_location = sandbox_file
      Chef::Log.info("Commiting sandbox file: move #{sandbox_file} to #{file_location}")
      FileUtils.mkdir_p(checksum_repo_directory)
      File.rename(sandbox_file, file_location)
      cdb_save
    end