summarylogtreecommitdiffstats
path: root/adminer.install
diff options
context:
space:
mode:
Diffstat (limited to 'adminer.install')
-rw-r--r--adminer.install17
1 files changed, 17 insertions, 0 deletions
diff --git a/adminer.install b/adminer.install
new file mode 100644
index 000000000000..4e4ac3de7b2f
--- /dev/null
+++ b/adminer.install
@@ -0,0 +1,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;
+}