This is an automated email from the git hooks/post-receive script.
spichugi pushed a change to branch master in repository lib389.
from 08a4c30 Ticket 14 - Remane dsadm to dsctl new e8dc7f1 Issue 16 - Reset InstScriptsEnabled argument during the init
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: lib389/__init__.py | 1 + 1 file changed, 1 insertion(+)
This is an automated email from the git hooks/post-receive script.
spichugi pushed a commit to branch master in repository lib389.
commit e8dc7f17eae9a61913d40e22ba823420e5b30928 Author: Simon Pichugin spichugi@redhat.com Date: Tue Apr 4 14:30:17 2017 +0200
Issue 16 - Reset InstScriptsEnabled argument during the init
Bug description: the InstScriptsEnabled argument is reused for the next instance setups and it affects script directory creation.
Fix description: Reset the InstScriptsEnabled argument before instance setup.
https://pagure.io/lib389/issue/16
Reviewed by: wibrown (Thanks!) --- lib389/__init__.py | 1 + 1 file changed, 1 insertion(+)
diff --git a/lib389/__init__.py b/lib389/__init__.py index df9f55e..e048f79 100644 --- a/lib389/__init__.py +++ b/lib389/__init__.py @@ -385,6 +385,7 @@ class DirSrv(SimpleLDAPObject, object): args_instance[SER_USER_ID] = None args_instance[SER_GROUP_ID] = None args_instance[SER_REALM] = None + args_instance[SER_INST_SCRIPTS_ENABLED] = None
# We allocate a "default" prefix here which allows an un-allocate or # un-instantiated DirSrv
389-commits@lists.fedoraproject.org