mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-20 11:38:10 +01:00
13 lines
255 B
Bash
Executable File
13 lines
255 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
|
|
# Clean nginx files at each reboot
|
|
if [ -d /data/config/nginx ]; then
|
|
rm -r /data/config/nginx
|
|
fi
|
|
|
|
# rm /data/config/crontabs
|
|
if [ -d /data/config/crontabs ]; then
|
|
rm -r /data/config/crontabs
|
|
fi
|