diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-09-23 14:50:25 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-09-23 14:50:25 +0000 |
commit | a9b8bfa9d6c505bda152e58788b3106eaf32c7bb (patch) | |
tree | 71082121491a1eb5deef4865b5b54485a7fa723f /community/phpmyadmin/phpmyadmin.post-install | |
parent | 6c5c1e1eda5fc81d7179877e6aca7faac9cff94e (diff) | |
download | aports-a9b8bfa9d6c505bda152e58788b3106eaf32c7bb.tar.bz2 aports-a9b8bfa9d6c505bda152e58788b3106eaf32c7bb.tar.xz |
community/phpmyadmin: move form main
We don't want maintain this for more than 6 months due to the amount of
security issues.
Diffstat (limited to 'community/phpmyadmin/phpmyadmin.post-install')
-rw-r--r-- | community/phpmyadmin/phpmyadmin.post-install | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/community/phpmyadmin/phpmyadmin.post-install b/community/phpmyadmin/phpmyadmin.post-install new file mode 100644 index 0000000000..e3dbc3524a --- /dev/null +++ b/community/phpmyadmin/phpmyadmin.post-install @@ -0,0 +1,16 @@ +#!/bin/sh + +echo "*" >&2 +echo "* phpmyadmin has been installed to:" >&2 +echo "* /usr/share/webapps/phpmyadmin" >&2 +echo "* phpmyadmin config file has been installed to:" >&2 +echo "* /etc/phpmyadmin/config.inc.php" >&2 +echo "* If you use apache2:" >&2 +echo "* 1) Change the ownership of the config directory:" >&2 +echo "* chown -R apache:apache /etc/phpmyadmin" >&2 +echo "* 2) See if you need to modify the apache2 config:" >&2 +echo "* /etc/apache2/conf.d/phpmyadmin.conf" >&2 +echo "* 3) Restart apache2 when done." >&2 +echo "*" >&2 + +exit 0 |