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.
13 lines
470 B
13 lines
470 B
#!/bin/bash
|
|
|
|
# Hestia Control Panel upgrade script for target version 1.4.6
|
|
|
|
#######################################################################################
|
|
####### Place additional commands below. #######
|
|
#######################################################################################
|
|
|
|
if [ -n "$DB_PMA_ALIAS" ]; then
|
|
$HESTIA/bin/v-change-sys-db-alias 'pma' "$DB_PMA_ALIAS"
|
|
rm -rf /usr/share/phpmyadmin/tmp/*
|
|
fi
|