You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
container-overlay/scripts/homeassistant/setup.sh

64 lines
1.2 KiB

#!/bin/bash
set -ueo pipefail
export PATH="/lib/rc/bin:$PATH"
source /var/db/repos/calculate/scripts/ini.sh
source /var/db/repos/container/scripts/functions.sh
script_path=$(dirname $(readlink -f $0))
log_dir=/var/log/calculate/cl-setup
rm -rf $log_dir
mkdir -p $log_dir
# Установка/настройка и проверка обновлений
configurate() {
local check=${1:-}
for step in $script_path/step/*.sh; do
source "$step"
if [[ $check ]]; then
configure check result
else
configure
fi
done
if [[ $check ]]; then
return ${result:-}
fi
}
if [[ ! -e /var/calculate/homeassistant ]]; then
configurate
echo 'Launch preparation'
ebegin 'Final setup'
cl-setup-system >>$log_dir/setup.log
rc-update -u >>$log_dir/setup.log
eend
ebegin 'Starting services'
openrc >>$log_dir/setup.log
eend
echo "All is done! Open the link \
${ini[homeassistant.protocol]}://${ini[homeassistant.domain]} \
on your browser."
else
configurate check && {
echo 'No updates available.'
} || {
echo
while true; do
read -p "Do you wish to install this update (y/n)? " answer
case $answer in
[Yy]* ) configurate; exit ;;
[Nn]* ) exit ;;
* ) echo "Please answer yes or no." ;;
esac
done
}
fi