summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/nova-compute4
-rwxr-xr-xbin/nova-network4
-rwxr-xr-xbin/nova-volume4
3 files changed, 6 insertions, 6 deletions
diff --git a/bin/nova-compute b/bin/nova-compute
index 7ef5d074a..e0c12354f 100755
--- a/bin/nova-compute
+++ b/bin/nova-compute
@@ -22,11 +22,11 @@
"""
from nova import twistd
-from nova.compute import computeservice
+from nova.compute import service
if __name__ == '__main__':
twistd.serve(__file__)
if __name__ == '__builtin__':
- application = computeservice.ComputeService.create()
+ application = service.ComputeService.create()
diff --git a/bin/nova-network b/bin/nova-network
index 0d3aa0002..52d6cb70a 100755
--- a/bin/nova-network
+++ b/bin/nova-network
@@ -22,11 +22,11 @@
"""
from nova import twistd
-from nova.network import networkservice
+from nova.network import service
if __name__ == '__main__':
twistd.serve(__file__)
if __name__ == '__builtin__':
- application = networkservice.NetworkService.create()
+ application = service.NetworkService.create()
diff --git a/bin/nova-volume b/bin/nova-volume
index c1c0163cf..f7a8fad37 100755
--- a/bin/nova-volume
+++ b/bin/nova-volume
@@ -22,11 +22,11 @@
"""
from nova import twistd
-from nova.volume import volumeservice
+from nova.volume import service
if __name__ == '__main__':
twistd.serve(__file__)
if __name__ == '__builtin__':
- application = volumeservice.VolumeService.create()
+ application = service.VolumeService.create()