mirror of
https://github.com/samply/bridgehead.git
synced 2026-03-10 02:39:45 +01:00
Right now, Directory sync will only be activated if a username has been specified. It also needs to run if a login token has been specified, hence the change in this commit.
7 lines
242 B
Bash
Executable File
7 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -n "${DS_DIRECTORY_USER_NAME}" ] || [ -n "${DS_DIRECTORY_USER_TOKEN}" ]; then
|
|
log INFO "Directory sync setup detected -- will start directory sync service."
|
|
OVERRIDE+=" -f ./$PROJECT/modules/directory-sync-compose.yml"
|
|
fi
|