mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
36 lines
603 B
Bash
36 lines
603 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
if [[ $SEAFILE_BOOTSRAP != "" ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
if [[ $TIME_ZONE != "" ]]; then
|
|
time_zone=/usr/share/zoneinfo/$TIME_ZONE
|
|
if [[ ! -e $time_zone ]]; then
|
|
echo "invalid time zone"
|
|
exit 1
|
|
else
|
|
ln -snf $time_zone /etc/localtime
|
|
echo "$TIME_ZONE" > /etc/timezone
|
|
fi
|
|
fi
|
|
|
|
dirs=(
|
|
conf
|
|
ccnet
|
|
seafile-data
|
|
seahub-data
|
|
pro-data
|
|
seafile-license.txt
|
|
)
|
|
|
|
for d in ${dirs[*]}; do
|
|
src=/shared/seafile/$d
|
|
if [[ -e $src ]]; then
|
|
rm -rf /opt/seafile/$d && ln -sf $src /opt/seafile
|
|
fi
|
|
done
|