summaryrefslogtreecommitdiff
blob: 56998b47a1f2043d910cefd3ae227ae23498f80d (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
if [ $1 = "install" ]; then
	cd ${MY_INSTALLDIR}
	sed -e "s|\$cfg\['PmaAbsoluteUri'\] = '';|\$cfg\['PmaAbsoluteUri'\] = 'http://${VHOST_HOSTNAME}${VHOST_APPDIR}';|g" -i config.inc.php
		
elif [ $1 = "clean" ]; then
	echo $1
fi