summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2010-07-23 15:27:18 -0700
committerVishvananda Ishaya <vishvananda@gmail.com>2010-07-23 15:27:18 -0700
commit35fda702abf91792d3c4753a1bbccdb119eaf6eb (patch)
treeedcdfd2fb08801910c63481890bbd550c809e516 /bin
parentd0f3ad141b848a927c452ba6c71180b21047bef8 (diff)
downloadnova-35fda702abf91792d3c4753a1bbccdb119eaf6eb.tar.gz
nova-35fda702abf91792d3c4753a1bbccdb119eaf6eb.tar.xz
nova-35fda702abf91792d3c4753a1bbccdb119eaf6eb.zip
renamed xxxnode to xxservice
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 1d5fa709d..7ef5d074a 100755
--- a/bin/nova-compute
+++ b/bin/nova-compute
@@ -22,11 +22,11 @@
"""
from nova import twistd
-from nova.compute import computenode
+from nova.compute import computeservice
if __name__ == '__main__':
twistd.serve(__file__)
if __name__ == '__builtin__':
- application = computenode.ComputeNode.create()
+ application = computeservice.ComputeService.create()
diff --git a/bin/nova-network b/bin/nova-network
index db9d4b970..0d3aa0002 100755
--- a/bin/nova-network
+++ b/bin/nova-network
@@ -22,11 +22,11 @@
"""
from nova import twistd
-from nova.network import networknode
+from nova.network import networkservice
if __name__ == '__main__':
twistd.serve(__file__)
if __name__ == '__builtin__':
- application = networknode.NetworkNode.create()
+ application = networkservice.NetworkService.create()
diff --git a/bin/nova-volume b/bin/nova-volume
index 2e9b530a7..c1c0163cf 100755
--- a/bin/nova-volume
+++ b/bin/nova-volume
@@ -22,11 +22,11 @@
"""
from nova import twistd
-from nova.volume import volumenode
+from nova.volume import volumeservice
if __name__ == '__main__':
twistd.serve(__file__)
if __name__ == '__builtin__':
- application = volumenode.VolumeNode.create()
+ application = volumeservice.VolumeService.create()