Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9414)

Unified Diff: client/bin/local_host.py

Issue 5626007: move chromiumos_update into client/common_lib/cros (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/common_lib/cros/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/bin/local_host.py
diff --git a/client/bin/local_host.py b/client/bin/local_host.py
index 14b0faffe81f2f91c54a181094cff9054360122b..07f5109e71a4adb98ffacc3967184ce6f4ff6822 100644
--- a/client/bin/local_host.py
+++ b/client/bin/local_host.py
@@ -6,7 +6,8 @@ This file contains the implementation of a host object for the local machine.
import glob, httplib, logging, os, platform, socket, urlparse
from autotest_lib.client.bin import utils
-from autotest_lib.client.common_lib import chromiumos_updater, error, hosts
+from autotest_lib.client.common_lib import error, hosts
+from autotest_lib.client.common_lib.cros import autoupdater
class LocalHost(hosts.Host):
@@ -58,8 +59,8 @@ class LocalHost(hosts.Host):
if not update_url:
return False
- updater = chromiumos_updater.ChromiumOSUpdater(host=self,
- update_url=update_url)
+ updater = autoupdater.ChromiumOSUpdater(host=self,
+ update_url=update_url)
# Updater has returned, successfully, reboot the host and
# validate the installation from the calling script.
return updater.run_update()
« no previous file with comments | « no previous file | client/common_lib/cros/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698