From a29799676241919b4d2d9bfe2f1ef7837ee4c282 Mon Sep 17 00:00:00 2001 From: Viktor Ashirov Date: Thu, 31 Aug 2017 15:32:53 +0200 Subject: [PATCH] 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: ??? --- 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', -- 2.13.5