8 lines
144 B
Bash
8 lines
144 B
Bash
#!/bin/bash
|
|
|
|
if [ "$TZ" != "Europe/Paris" ]; then
|
|
apk -U add tzdata
|
|
. /scripts/install.d/30-tz.sh
|
|
. /scripts/install.d/40-fix.sh
|
|
fi
|