Installation mode:
- online,
- offline.
Request mode (type of pkgmgr request):
- install,
- update,
- uninstall,
- ...
Change-Id: I610062f136c5b7442a7f87be7b556d6848129a1a
break;
}
- // Record recovery file for update and installation modes
+ // Record recovery file for update and request modes
if (pkgmgr_->GetRequestType() == RequestType::Install ||
pkgmgr_->GetRequestType() == RequestType::Update) {
std::unique_ptr<recovery::RecoveryFile> recovery_file =
}
} else {
LOG(INFO) << "Allowing installation from root user for"
- "manifest direct installation mode.";
+ "manifest direct request mode.";
}
return Status::OK;
}
* - where to look for manifest file
* - where to store information from manifest in context structure
*
- * Different installation mode will choose different ManifestLocation and
+ * Different request mode will choose different ManifestLocation and
* StoreLocation for its purpose but main goal of this step parsing tpk
* manifest doesn't change.
*/
* @brief The StepRecovery class
*
* Common base of all steps that performs recovery. Recover is supported for
- * new and update installation modes. Each step that performs recovery needs
+ * new and update request modes. Each step that performs recovery needs
* to override methods:
* - RecoveryNew(),
* - RecoveryUpdate(),