mirror of
https://github.com/Sebclem/hassio-nextcloud-backup.git
synced 2024-11-04 16:42:58 +01:00
17 lines
490 B
Bash
Executable File
17 lines
490 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
#
|
|
# Community Hass.io Add-ons: Example
|
|
#
|
|
# Example add-on for Hass.io.
|
|
# This add-on displays a random quote every X seconds.
|
|
#
|
|
# ==============================================================================
|
|
|
|
cd /opt/nextcloud_backup/
|
|
if bashio::config.exists 'log_level'; then
|
|
LOG_LEVEL=$(bashio::config 'log_level')
|
|
else
|
|
LOG_LEVEL='info'
|
|
fi
|
|
LOG_LEVEL=$LOG_LEVEL npm start |