community/percona-server to 5.5.21_rel25.1-1

This commit is contained in:
Kevin Mihelich 2012-04-01 12:48:18 -04:00
parent 807d7aab1a
commit 38004a6b5f
2 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@
plugrel=1
pkgname=percona-server
pkgver=5.5.21_rel25.0
pkgver=5.5.21_rel25.1
pkgrel=1
pkgdesc="A backwards-compatible drop-in replacement for MySQL that provides improved performance, diagnostics and instrumentation, and manageability of the server"
arch=('i686' 'x86_64')
@ -105,7 +105,7 @@ package() {
install -dm700 "${pkgdir}"/var/lib/mysql
}
md5sums=('e0091c0e8213378f0b5756535fe5799f'
md5sums=('fdbc6cb1452f577d4c21ed3f1686dac8'
'243864805611764a7e5883c1dba7afd8'
'1c949c0dbea5206af0db14942d9927b6'
'9eb0ad531d162e031a2bcc08a5ab3bc5')

View file

@ -1,8 +1,8 @@
post_install(){
groupadd -g 89 mysql &>/dev/null
useradd -u 89 -g mysql -d /var/lib/mysql -s /bin/false mysql &>/dev/null
/usr/bin/mysql_install_db --user=mysql --basedir=/usr
chown -R mysql:mysql var/lib/mysql &>/dev/null
/usr/bin/mysql_install_db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
chown -R mysql:mysql /var/lib/mysql &>/dev/null
}
post_upgrade(){