diff --git a/bin/confetty b/bin/confetty index 53a6a857..8abaf782 100755 --- a/bin/confetty +++ b/bin/confetty @@ -171,7 +171,10 @@ def do_command(command, server): sys.exit(0) elif argv[0] == "cd": otarget = target - target = fullpath_target(argv[1], forcepath=True) + if len(argv) > 1: + target = fullpath_target(argv[1], forcepath=True) + else: # cd by itself, go 'home' + target = '/' for res in send_request('retrieve', target, server): if 'errorcode' in res: exitcode = res['errorcode'] diff --git a/confluent/pluginapi.py b/confluent/pluginapi.py index c3e12dba..d2d6b40f 100644 --- a/confluent/pluginapi.py +++ b/confluent/pluginapi.py @@ -67,6 +67,7 @@ noderesources = { '_console': { 'session': PluginRoute({ 'pluginattrs': ['console.method', 'hardwaremanagement.method'], + 'default': 'ipmi', }), }, 'console': { diff --git a/plugins/configuration/attributes.py b/plugins/configuration/attributes.py index 79b99dfc..55c8aa14 100644 --- a/plugins/configuration/attributes.py +++ b/plugins/configuration/attributes.py @@ -45,14 +45,8 @@ def retrieve_nodegroup(nodegroup, element, configmanager, inputdata): desc = allattributes.node[attribute]['description'] except KeyError: desc = 'Unknown' - if 'value' in currattr: - yield msg.Attributes( - kv={attribute: currattr['value']}, - desc=desc) - elif 'expression' in currattr: - yield msg.Attributes( - kv={attribute: currattr['expression']}, - desc=desc) + if 'value' in currattr or 'expression' in currattr: + yield msg.Attributes( kv={attribute: currattr}, desc=desc) elif 'cryptvalue' in currattr: yield msg.CryptedAttributes( kv={attribute: currattr},