summaryrefslogtreecommitdiffstats
path: root/base/deploy/src/scriptlets/infrastructure_layout.py
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-11-13 23:18:52 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-11-14 12:58:53 -0500
commit5d36cbb886c9baa9496665630b5af0be5919936b (patch)
tree7670007081406a5ac9cf0e166b192097ab4d58ed /base/deploy/src/scriptlets/infrastructure_layout.py
parent65bbd0047143141b8d2d031dcf452aaeded8e8cf (diff)
downloadpki-ticket-399-1.tar.gz
pki-ticket-399-1.tar.xz
pki-ticket-399-1.zip
Refactored str2bool().ticket-399-1
The str2bool() in pkiconfig.py has been moved into pkihelper.py for better clarity. Ticket #380
Diffstat (limited to 'base/deploy/src/scriptlets/infrastructure_layout.py')
-rw-r--r--base/deploy/src/scriptlets/infrastructure_layout.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/deploy/src/scriptlets/infrastructure_layout.py b/base/deploy/src/scriptlets/infrastructure_layout.py
index 5e86710f2..7726133a0 100644
--- a/base/deploy/src/scriptlets/infrastructure_layout.py
+++ b/base/deploy/src/scriptlets/infrastructure_layout.py
@@ -34,7 +34,7 @@ class PkiScriptlet(pkiscriptlet.AbstractBasePkiScriptlet):
rv = 0
def spawn(self):
- if config.str2bool(master['pki_skip_installation']):
+ if util.str2bool(master['pki_skip_installation']):
pkilogging.pki_log.info(log.SKIP_ADMIN_DOMAIN_SPAWN_1, __name__,
extra=PKIConfig.PKI_INDENTATION_LEVEL_1)
return self.rv