mirror of
https://github.com/YunoHost-Apps/homeassistant_ynh.git
synced 2024-09-03 19:26:16 +02:00
Remobe old file
This commit is contained in:
parent
d4e51aac37
commit
db53860738
1 changed files with 0 additions and 63 deletions
|
@ -1,63 +0,0 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# upgrade_homeassistant.sh - Simple shell script to upgrade homeassistant installed in a python environnement
|
||||
#
|
||||
|
||||
# Uncomment to enable debugging to stderr (prints full client output and more)
|
||||
#DEBUG=1
|
||||
|
||||
# define usefull variables
|
||||
app="homeassistant"
|
||||
install_dir="/var/www/$app"
|
||||
data_dir="/home/yunohost.app/$app"
|
||||
|
||||
########## END OF CONFIGURATION ##########
|
||||
|
||||
|
||||
########## SCRIPT CODE FOLLOWS, DON'T TOUCH! ##########
|
||||
|
||||
# Log messages to log file.
|
||||
log() {
|
||||
echo "$(date) $1" >> $LOG_FILE
|
||||
}
|
||||
|
||||
# Reset log file.
|
||||
if [ ! -z "$DEBUG" ]; then
|
||||
LOG_FILE=$(cd -P -- "$(dirname -- "$0")" && pwd -P)"/upgrade_homeassistant.log"
|
||||
[ -f "$LOG_FILE" ] && :> "$LOG_FILE"
|
||||
fi
|
||||
|
||||
# upgrade the virtual environment
|
||||
MY_PYTHON=$(readlink -e "$install_dir/bin/python")
|
||||
[ ! -z "$DEBUG" ] && log "Using pyhton '$MY_PYTHON'."
|
||||
$MY_PYTHON -m venv --upgrade "$install_dir"
|
||||
|
||||
# Run source in a 'sub shell'
|
||||
(
|
||||
# activate the virtual environment
|
||||
set +o nounset
|
||||
[ ! -z "$DEBUG" ] && log "Activate the virtual environment"
|
||||
source "$install_dir/bin/activate"
|
||||
set -o nounset
|
||||
|
||||
# add pip
|
||||
[ ! -z "$DEBUG" ] && log "Upgrade pip"
|
||||
"$install_dir/bin/python3" -m ensurepip --upgrade
|
||||
|
||||
local VERBOSE
|
||||
[ ! -z "$DEBUG" ] && VERBOSE="--log $LOG_FILE"
|
||||
|
||||
# install last version of wheel, pip & mysqlclient
|
||||
[ ! -z "$DEBUG" ] && log "Install latest pip version of wheel, pip & mysqlclient"
|
||||
"$install_dir/bin/pip3" --cache-dir "$data_dir/.cache" install --upgrade wheel pip mysqlclient $VERBOSE
|
||||
|
||||
# upgrade homeassistant python package
|
||||
[ ! -z "$DEBUG" ] && log "Install latest pip version of $app"
|
||||
"$install_dir/bin/pip3" --cache-dir "$data_dir/.cache" install --upgrade $app $VERBOSE
|
||||
)
|
||||
|
||||
# restart homeassistant systemd service
|
||||
[ ! -z "$DEBUG" ] && log "Restart $app systemd service"
|
||||
sudo systemctl restart $app.service
|
||||
|
||||
exit 0
|
Loading…
Reference in a new issue