mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 09:51:02 +01:00
17 lines
314 B
Bash
Executable File
17 lines
314 B
Bash
Executable File
#!/usr/bin/env bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
#################
|
|
# Create config #
|
|
#################
|
|
mustache-cli /data/options.json /templates/inadyn.mustache > /etc/inadyn.conf
|
|
|
|
# Check it
|
|
/usr/sbin/inadyn --check-config
|
|
|
|
##############
|
|
# Launch App #
|
|
##############
|
|
/usr/sbin/inadyn --foreground --force
|