mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 10:21:02 +01:00
16 lines
323 B
Bash
Executable File
16 lines
323 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
|
|
for file in /config/addons_config/nextcloud/*.sh
|
|
do
|
|
if [ -e "$file" ]; then
|
|
bashio::log.info "Executing $file"
|
|
bash "$file"
|
|
fi
|
|
done
|
|
|
|
# Use php7
|
|
if [ -f /data/config/crontabs/root ]; then
|
|
sed -i "s|php7|php|g" /data/config/crontabs/root
|
|
fi
|