mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-03-20 19:43:14 +01:00
10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -Eeuo pipefail
|
|
|
|
LOG_LEVEL=$(bashio::config 'log_level' 'info')
|
|
|
|
bashio::log.info "Starting BentoPDF (log_level=${LOG_LEVEL})"
|
|
|
|
exec nginx
|