Skip to content

Commit

Permalink
Release 2.6-7.5.0 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Apr 26, 2023
1 parent 85e21fb commit 236fdef
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.6-7.5.0 2023-04-26 <dave at tiredofit dot ca>

### Added
- Add support for _FILE environment variables


## 2.6-7.4.2 2023-04-21 <dave at tiredofit dot ca>

### Changed
Expand Down
6 changes: 3 additions & 3 deletions install/assets/functions/10-openldap
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,12 @@ configure_ldap_server() {
if [ ! -e "$first_start_done" ]; then
new_install=false

transform_var \
transform_file_var \
ADMIN_PASS \
CONFIG_PASS

if var_true "${ENABLE_READONLY_USER}"; then
transform_var \
transform_file_var \
READONLY_USER_USER \
READONLY_USER_PASS
fi
Expand Down Expand Up @@ -537,7 +537,7 @@ EOF
print_notice "Configuring replication"
replication_disable || true

transform_var \
transform_file_var \
REPLICATION_HOSTS \
REPLICATION_HOSTS_CONFIG_SYNC_PROV \
REPLICATION_HOSTS_DB_SYNC_PROV
Expand Down
2 changes: 1 addition & 1 deletion install/assets/slapd/config/bootstrap/default/default.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ for elem in "${domain_elems[@]}" ; do
fi
done

transform_var \
transform_file_var \
ADMIN_PASS \
READONLY_USER_USER
READONLY_USER_PASS
Expand Down
2 changes: 1 addition & 1 deletion install/etc/services.available/20-openldap-backup/run
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ check_service_initialized init 10-openldap
liftoff

if [ "${BACKUP_LOCATION}" = "s3" ] || [ "${BACKUP_LOCATION}" = "minio" ]; then
transform_var \
transform_file_var \
S3_BUCKET \
S3_KEY_ID \
S3_KEY_SECRET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if [ -z "${BASE_DN}" ]; then
BASE_DN=${BASE_DN::-1}
fi

transform_var \
transform_file_var \
ADMIN_PASS

#dynamic
Expand Down

0 comments on commit 236fdef

Please sign in to comment.