From 143022408c26f3c6a5f5c1eaf0dce8061242675a Mon Sep 17 00:00:00 2001 From: Szilard Cserey Date: Tue, 20 Oct 2015 14:18:37 +0200 Subject: 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 --- fuel/deploy/cloud/configure_nodes.py | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'fuel/deploy/cloud/configure_nodes.py') 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): -- cgit 1.2.3-korg