Replace ssconf with utility functions.
---
daemons/ganeti-noded | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/daemons/ganeti-noded b/daemons/ganeti-noded
index bf00936..a4811f9 100755
--- a/daemons/ganeti-noded
+++ b/daemons/ganeti-noded
@@ -40,7 +40,6 @@ from ganeti import constants
from ganeti import objects
from ganeti import errors
from ganeti import jstore
-from ganeti import ssconf
from ganeti import http
from ganeti import utils
@@ -654,9 +653,8 @@ def main():
sys.exit(5)
try:
- ss = ssconf.SimpleStore()
- port = ss.GetNodeDaemonPort()
- pwdata = ss.GetNodeDaemonPassword()
+ port = utils.GetNodeDaemonPort()
+ pwdata = utils.GetNodeDaemonPassword()
except errors.ConfigurationError, err:
print "Cluster configuration incomplete: '%s'" % str(err)
sys.exit(5)
--
1.6.0.2