Dependency install script fixes

This commit is contained in:
root 2019-11-22 12:07:29 +01:00
parent 8c051d2a05
commit b6600f9b33
3 changed files with 2 additions and 5 deletions

2
debian/control vendored
View File

@ -8,7 +8,7 @@ Homepage: http://www.verdnatura.es
Package: vn-mysql
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, mysql-server (>= 5.5.27) | mariadb-galera-server (>= 5.5.27) | mariadb-server (>= 5.5.27), libglib2.0-0
Depends: ${misc:Depends}, ${shlibs:Depends}, mysql-server (>= 5.5.27) | mariadb-galera-server (>= 5.5.27) | mariadb-server (>= 5.5.27), libglib2.0-0
Description: MySQL plugins
This package contains some useful MySQL plugins
developed by Verdnatura.

1
debian/postinst vendored
View File

@ -1,4 +1,5 @@
#! /bin/sh
set -e
chown mysql:mysql /etc/mysql/proxy-auth.sql
chmod u=rw,go-rwx /etc/mysql/proxy-auth.sql

4
debian/postrm vendored
View File

@ -1,4 +0,0 @@
#! /bin/sh
#service mysql restart
exit 0