summarylogtreecommitdiffstats
path: root/adminer-editor.install
blob: 35cbca8059e94827425af30f5ce87f7775fbe945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
post_install() {
  if ! grep '^Include conf/extra/httpd-adminer-editor.conf$' '/etc/httpd/conf/httpd.conf'; then
    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';
    echo -e $TEXT
  fi
}

post_upgrade() {
  post_install
}

post_remove() {
  if grep '^Include conf/extra/httpd-adminer-editor.conf$' '/etc/httpd/conf/httpd.conf'; then
    echo 'To completely remove Adminer Editor, remove its include from /etc/httpd/conf/httpd.conf'
    echo 'and restart your httpd server'
  fi
}