summarylogtreecommitdiffstats
path: root/adminer.install
blob: 893f68f56ff212e6d06d5a2e4e74c6be73b5c6fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
read -r -d '' MESSAGE << EOM
If you use apache and want to enable the adminer interface just run the
following command as root:

echo "Include conf/extra/httpd-adminer.conf" >> /etc/httpd/conf/httpd.conf

Restart apache (systemctl restart httpd) and then you can access adminer on
http://localhost/adminer.
EOM

post_install() {
	echo -e "$MESSAGE";
}

post_upgrade() {
	echo -e "$MESSAGE";
}