From: Ivan Rako Date: Fri, 27 Apr 2012 15:36:42 +0000 (+0200) Subject: lintian izmjene, plus zastarjele opcije X-Git-Tag: debian/2%5.1.49.2^0 X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=mysql-cn.git;a=commitdiff_plain;h=fa157e1c72b9c4be2e6ed98a7c653c243ad29d18 lintian izmjene, plus zastarjele opcije --- diff --git a/debian/changelog b/debian/changelog index bdfad2d..8f9ae61 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +mysql-cn (2:5.1.49.2) stable; urgency=low + + * Izmjene za lintian + * Iskljuceje zastarjele opcije skip-bdb i skip-networking + + -- Ivan Rako Fri, 27 Apr 2012 17:31:40 +0200 + mysql-cn (2:5.1.49-1) stable; urgency=low * Prva verzija za squeeze diff --git a/debian/compat b/debian/compat index b8626c4..45a4fb7 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -4 +8 diff --git a/debian/control b/debian/control index 0980120..d3fb648 100644 --- a/debian/control +++ b/debian/control @@ -2,12 +2,12 @@ Source: mysql-cn Section: net Priority: optional Maintainer: Ivan Rako -Build-Depends: debhelper (>= 4.0.0) -Standards-Version: 3.6.1 +Build-Depends: debhelper (>= 8) +Standards-Version: 3.9.1 Package: mysql-cn Architecture: all -Depends: mysql-client-5.1 (>= 5.1.49), mysql-server-5.1 (>= 5.1.49), makepasswd, carnet-tools-cn (>= 2.4) +Depends: mysql-client-5.1 (>= 5.1.49), mysql-server-5.1 (>= 5.1.49), makepasswd, carnet-tools-cn (>= 2.4), ${misc:Depends} Description: MySQL database server MySQL is a fast, stable and true multi-user, multi-threaded SQL database server. SQL (Structured Query Language) is the most popular database query diff --git a/debian/postinst b/debian/postinst index 8cf13b8..e959c3d 100755 --- a/debian/postinst +++ b/debian/postinst @@ -11,7 +11,7 @@ PKG="mysql-cn" . /usr/share/carnet-tools/functions.sh if [ -f /etc/mysql/my.cnf ]; then - # ukljuci networking, da mysql visi na portu 3306 + # iskljuci zastarjelu opciju cp_check_and_sed '^skip-networking' \ 's/^skip-networking$/#skip-networking/' \ /etc/mysql/my.cnf && restart=yes || true @@ -25,6 +25,11 @@ if [ -f /etc/mysql/my.cnf ]; then cp_check_and_sed '^log.*mysql.log' \ "s,^\([\t ]*log[\t ]*=\),#\1," \ /etc/mysql/my.cnf && restart=yes || true + + # iskljuci zastarjeli skip-bdb + cp_check_and_sed '^skip-bdb' \ + 's/^skip-bdb$/#skip-bdb/' \ + /etc/mysql/my.cnf && restart=yes || true fi # pristup samo sa lokalne mreze, preko tcp-wrappera... @@ -62,3 +67,5 @@ if [ -x /usr/sbin/invoke-rc.d ]; then else [ -x /etc/init.d/mysql ] && /etc/init.d/mysql restart fi + +#DEBHELPER#