summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Martin <jxm@risingtidesystems.com>2011-06-07 22:50:46 +0200
committerJerome Martin <jxm@risingtidesystems.com>2011-06-08 10:50:18 +0200
commit8244fc8c7c6c706a5af95b723a5235dbe7d5d18e (patch)
treeb38f9be8ff08f65ac09fdbd70f1ad52ff52f43e8
parent5491acd5416e589307336f35b3d1f379ee0a2317 (diff)
downloadtargetcli-8244fc8c7c6c706a5af95b723a5235dbe7d5d18e.tar.gz
Missed 'writable' flag to some globals params.
-rw-r--r--rtsadmin/ui_node.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/rtsadmin/ui_node.py b/rtsadmin/ui_node.py
index d83f7d2..041e650 100644
--- a/rtsadmin/ui_node.py
+++ b/rtsadmin/ui_node.py
@@ -30,18 +30,22 @@ class UINode(ConfigNode):
self.cfs_cwd = RTSRoot.configfs_dir
self._configuration_groups['global']['auto_enable_tpgt'] = \
[self.ui_type_bool,
- 'If true, automatically enables TPGTs upon creation.']
+ 'If true, automatically enables TPGTs upon creation.',
+ True]
self._configuration_groups['global']['auto_add_mapped_luns'] = \
[self.ui_type_bool,
'If true, automatically create node ACLs mapped LUNs '
- + 'after creating a new target LUN or a new node ACL']
+ + 'after creating a new target LUN or a new node ACL',
+ True]
self._configuration_groups['global']['legacy_hba_view'] = \
[self.ui_type_bool,
'If true, use legacy HBA view, allowing to create more '
- + 'than one storage object per HBA.']
+ + 'than one storage object per HBA.',
+ True]
self._configuration_groups['global']['auto_cd_after_create'] = \
[self.ui_type_bool,
- 'If true, changes current path to newly created objects.']
+ 'If true, changes current path to newly created objects.',
+ True]
def assert_root(self):
'''