summaryrefslogtreecommitdiffstats
path: root/fuel/deploy/cloud/configure_nodes.py
diff options
context:
space:
mode:
authorSzilard Cserey <szilard.cserey@ericsson.com>2015-10-20 14:18:37 +0200
committerSzilard Cserey <szilard.cserey@ericsson.com>2015-10-27 16:25:32 +0100
commit143022408c26f3c6a5f5c1eaf0dce8061242675a (patch)
tree9eebf1775609553b38b1d2fcbd384bdd5a4309d7 /fuel/deploy/cloud/configure_nodes.py
parentad790a995855219ce876880f00ad59a8ffa2b2d9 (diff)
Plugin config + bugfix + refactoring
ignoring external repo errors during plugin installation refactoring import common Install only those plugins which have a yaml config file located under plugins folder collect puppet errors from all nodes Change-Id: I8d5248cf31c4877a6d59bfcfe62b43daf4ad43ef Signed-off-by: Szilard Cserey <szilard.cserey@ericsson.com>
Diffstat (limited to 'fuel/deploy/cloud/configure_nodes.py')
-rw-r--r--fuel/deploy/cloud/configure_nodes.py17
1 files changed, 6 insertions, 11 deletions
diff --git a/fuel/deploy/cloud/configure_nodes.py b/fuel/deploy/cloud/configure_nodes.py
index e76d222c0..a456679ab 100644
--- a/fuel/deploy/cloud/configure_nodes.py
+++ b/fuel/deploy/cloud/configure_nodes.py
@@ -8,21 +8,16 @@
###############################################################################
-import common
import yaml
import io
import glob
-N = common.N
-E = common.E
-R = common.R
-RO = common.RO
-exec_cmd = common.exec_cmd
-parse = common.parse
-err = common.err
-check_file_exists = common.check_file_exists
-log = common.log
-backup = common.backup
+from common import (
+ exec_cmd,
+ check_file_exists,
+ log,
+ backup,
+)
class ConfigureNodes(object):