This is an automated email from the git hooks/post-receive script.
vashirov pushed a change to branch master in repository lib389.
from 3200669 Issue #77 - Add sphinx documentation new e363c35 Issue 96 - Change binaries' names
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/ldclt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script.
vashirov pushed a commit to branch master in repository lib389.
commit e363c353230e093918e62ac4d0182c43d5d441f0 Author: Viktor Ashirov vashirov@redhat.com Date: Thu Aug 31 15:32:53 2017 +0200
Issue 96 - Change binaries' names
Bug Description: After https://pagure.io/389-ds-base/issue/49348 binaries dropped their wrappers and -bin from their names. In lib389 we called them directly, instead of using wrappers.
Fix Description: Change binaries' names
https://pagure.io/lib389/issue/96
Reviewed by: mreynolds (Thanks!) --- lib389/ldclt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib389/ldclt.py b/lib389/ldclt.py index c5600d9..133f460 100644 --- a/lib389/ldclt.py +++ b/lib389/ldclt.py @@ -65,7 +65,7 @@ loginShell: /bin/false digits = len('%s' % max)
cmd = [ - '%s/bin/ldclt-bin' % self.ds.prefix, + '%s/bin/ldclt' % self.ds.prefix, '-h', self.ds.host, '-p', @@ -99,7 +99,7 @@ loginShell: /bin/false # The bind users will be uid=userXXXX digits = len('%s' % max) cmd = [ - '%s/bin/ldclt-bin' % self.ds.prefix, + '%s/bin/ldclt' % self.ds.prefix, '-h', self.ds.host, '-p',
389-commits@lists.fedoraproject.org