mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-15 17:08:19 +01:00
9 lines
179 B
Plaintext
9 lines
179 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
bashio::log.info "Starting PHP-FPM..."
|
|
|
|
exec "php-fpm${PHPVERS:-}" --nodaemonize || \
|
|
exec "php-fpm*" --nodaemonize
|