12 lines
434 B
12 lines
434 B
1 year ago
|
#!/bin/bash
|
||
|
|
||
|
# Hestia Control Panel upgrade script for target version 1.4.7
|
||
|
|
||
|
#######################################################################################
|
||
|
####### Place additional commands below. #######
|
||
|
#######################################################################################
|
||
|
|
||
|
if [ -n "$DB_PGA_ALIAS" ]; then
|
||
|
$HESTIA/bin/v-change-sys-db-alias 'pga' "$DB_PGA_ALIAS"
|
||
|
fi
|