mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-16 17:38:17 +01:00
11 lines
406 B
Plaintext
11 lines
406 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
# ==============================================================================
|
|
# Runs the daily task to check the spotweb cache
|
|
# ==============================================================================
|
|
|
|
bashio::log.info "Running daily spotweb cache check" &>/proc/1/fd/1
|
|
|
|
s6-setuidgid nginx php /app/bin/check-cache.php &>/proc/1/fd/1
|