mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-11 01:46:11 +00:00
11 lines
100 B
Bash
11 lines
100 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
case "$SERVICE_TO_START" in
|
|
server)
|
|
kopano-cli --list-users
|
|
exit 0
|
|
;;
|
|
esac
|