summarylogtreecommitdiffstats
path: root/adminer-editor.install
blob: 3c20cb517c855f85e71e78af1c011aaa4774722a (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-editor.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 editor on http://localhost/adminer-editor\n';


post_install() {
	echo -e $TEXT;
}

post_upgrade() {
	echo -e $TEXT;
}