1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-11 18:06:21 +00:00
kopano-docker/core/services/kopano-users.sh
Felix Bartels bd9f9c1ef7 add script for public folder creation and periodic user sync
Fixes: https://github.com/zokradonh/kopano-docker/issues/15

Signed-off-by: Felix Bartels <felix@host-consultants.de>
2018-11-11 21:42:02 +01:00

9 lines
140 B
Bash
Executable File

#!/bin/bash
set -eo pipefail
dockerize \
-wait tcp://localhost:236 \
-timeout 360s
while true; do kopano-cli --sync && sleep 3600; done