diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a6f43b..1bc0340 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.0.2 2018-09-13 + +* Fix for Dockerfile Build when applying OpenLDAP Patches to be displayed correctly + ## 6.0.1 2018-08-27 * Fix with ppm.conf generation for bad characters diff --git a/Dockerfile b/Dockerfile index 9b4017a..a9a70ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -89,7 +89,7 @@ RUN set -x && \ \ ### Apply Patches cd /tiredofit/openldap:`head -n 1 /tiredofit/CHANGELOG.md | awk '{print $2'}`/ && \ - for patch in ./alpine/*.patch; do echo "** Applying $Patch"; patch -p1 < $patch; done && \ + for patch in ./alpine/*.patch; do echo "** Applying $patch"; patch -p1 < $patch; done && \ ### Compile OpenLDAP cd /tiredofit/openldap:`head -n 1 /tiredofit/CHANGELOG.md | awk '{print $2'}`/ && \ libtoolize --force && \ diff --git a/README.md b/README.md index 57a6a92..53b5bc6 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ If you already have a check_password.conf or ppm.conf in /etc/openldap/ the foll | Variable | Description | |-----------|-------------| | `PPOLICY_CHECK_RDN` | Check RDN Parameter (ppm.so) - Default `0` | -| `PPOLICY_FORBIDDEN_CHARACTERS | Forbidden Characters (ppm.so) - Default `` | +| `PPOLICY_FORBIDDEN_CHARACTERS` | Forbidden Characters (ppm.so) - Default `` | | `PPOLICY_MAX_CONSEC`| Maximum Consective Character Pattern - Default `0` | | `PPOLICY_MIN_DIGIT` | Minimum Digit Characters - Default `0` | | `PPOLICY_MIN_LOWER` | Minimum Lowercase Characters - Default `0` |