From 8ed86a749548ed2c373026ec34f5284a329bb7c2 Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Mon, 17 Sep 2012 13:04:45 -0500 Subject: Fixed problems with optional pki-symkey. The deployment and init scripts have been fixed to create and check the link to symkey.jar if a TKS instance is added, and remove the link if the instance is removed. Ticket #331 --- base/deploy/src/scriptlets/pkihelper.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'base/deploy/src/scriptlets/pkihelper.py') diff --git a/base/deploy/src/scriptlets/pkihelper.py b/base/deploy/src/scriptlets/pkihelper.py index adbbe7cb5..8145a02d8 100644 --- a/base/deploy/src/scriptlets/pkihelper.py +++ b/base/deploy/src/scriptlets/pkihelper.py @@ -1224,12 +1224,12 @@ class directory: # systems since 'chmod' CANNOT be # run directly against symbolic # links! - # chown -h : + # chown -h : config.pki_log.debug(log.PKIHELPER_CHOWN_H_3, - uid, gid, link, + uid, gid, symlink, extra=config.PKI_INDENTATION_LEVEL_3) if not config.pki_dry_run_flag: - os.lchown(link, uid, gid) + os.lchown(symlink, uid, gid) # Store record in installation manifest record = manifest.record() record.name = name -- cgit