mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 02:11:01 +01:00
11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
# Set timezone
|
|
TZ_VALUE="$(timedatectl show -p Timezone --value)"
|
|
export TZ="$TZ_VALUE"
|
|
|
|
echo "Starting service: nginx"
|
|
nginx
|