Merge pull request #28 from yifan-gu/add_install_started_event
update_engine_events.go: Add a custom "InstallStarted" event.
This commit is contained in:
commit
3648e19ebf
1 changed files with 4 additions and 0 deletions
|
@ -32,6 +32,10 @@ var (
|
||||||
Type: omaha.EventTypeUpdateDownloadFinished,
|
Type: omaha.EventTypeUpdateDownloadFinished,
|
||||||
Result: omaha.EventResultSuccess,
|
Result: omaha.EventResultSuccess,
|
||||||
}
|
}
|
||||||
|
EventInstallStarted = &omaha.EventRequest{
|
||||||
|
Type: omaha.EventTypeInstallStarted,
|
||||||
|
Result: omaha.EventResultSuccess,
|
||||||
|
}
|
||||||
EventInstalled = &omaha.EventRequest{
|
EventInstalled = &omaha.EventRequest{
|
||||||
Type: omaha.EventTypeUpdateComplete,
|
Type: omaha.EventTypeUpdateComplete,
|
||||||
Result: omaha.EventResultSuccess,
|
Result: omaha.EventResultSuccess,
|
||||||
|
|
Loading…
Reference in a new issue