summarylogtreecommitdiffstats
path: root/adminer.install
blob: 4e4ac3de7b2fc69cb29840d66ba1b34d0f990d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
TEXT='
If you want to access adminer interface by your apache server, run following command as root:\n
echo "Include conf/extra/httpd-adminer.conf" >> /etc/httpd/conf/httpd.conf\n\n

And restart your apache running "rc.d restart httpd"\n
Or (if you are using systemd) "systemctl restart httpd"\n\n

After you can browse adminer on http://localhost/adminer\n';


post_install() {
	echo -e $TEXT;
}

post_upgrade() {
	echo -e $TEXT;
}