wok-current annotate mysql/receipt @ rev 1147
mysql: init database in /etc/init.d/mysql, not post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jul 26 13:40:35 2008 +0000 (2008-07-26) |
parents | 6c71fe9f8fd5 |
children | dd2aa8326cbc |
rev | line source |
---|---|
pascal@1140 | 1 # SliTaz package receipt. |
pascal@1140 | 2 |
pascal@1140 | 3 PACKAGE="mysql" |
pascal@1140 | 4 VERSION="5.0.51b" |
pascal@1140 | 5 CATEGORY="system" |
pascal@1140 | 6 SHORT_DESC="SQL database system." |
pascal@1140 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1140 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@1140 | 9 WEB_SITE="http://www.mysql.com/" |
pascal@1140 | 10 WGET_URL="http://mirrors.sunsite.dk/mysql/Downloads/MySQL-5.0/$TARBALL" |
pascal@1140 | 11 DEPENDS="libmysqlclient mysql-client zlib" |
pascal@1140 | 12 |
pascal@1140 | 13 # Rules to configure and make the package. |
pascal@1140 | 14 compile_rules() |
pascal@1140 | 15 { |
pascal@1140 | 16 |
pascal@1140 | 17 cd $src |
pascal@1140 | 18 # --with-big-tables ? |
pascal@1140 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1140 | 20 --datadir=/usr/share --localstatedir=/var/lib/mysql \ |
pascal@1140 | 21 --with-unix-socket-path=/var/run/mysqld/mysqld.sock \ |
pascal@1140 | 22 --with-mysqld-user=mysql \ |
pascal@1140 | 23 --mandir=/usr/share/man $CONFIGURE_ARGS |
pascal@1140 | 24 make |
pascal@1140 | 25 make DESTDIR=$PWD/_pkg install |
pascal@1140 | 26 cp ../stuff/*.files-list . |
pascal@1140 | 27 } |
pascal@1140 | 28 |
pascal@1140 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1140 | 30 genpkg_rules() |
pascal@1140 | 31 { |
pascal@1140 | 32 mkdir -p $fs/usr/share $fs/etc $fs/var/lib/mysql $fs/var/run/mysqld |
pascal@1140 | 33 cp -a $_pkg/usr/bin $fs/usr |
pascal@1140 | 34 cp -a $_pkg/usr/libexec $fs/usr |
pascal@1140 | 35 cp -a $_pkg/usr/share/mysql $fs/usr/share |
pascal@1140 | 36 cp -a $src/support-files/my-medium.cnf $fs/etc/my.cnf |
pascal@1147 | 37 chmod 600 $fs/etc/my.cnf |
pascal@1140 | 38 cp -a stuff/etc/init.d $fs/etc |
pascal@1140 | 39 cat $src/*.files-list | while read file; do |
pascal@1140 | 40 [ -f $fs$file ] && rm -f $fs$file |
pascal@1140 | 41 done |
pascal@1140 | 42 # Package all mysql pkgs |
pascal@1140 | 43 for i in $(cd $WOK; ls -d mysql-* libmysql*) |
pascal@1140 | 44 do |
pascal@1140 | 45 tazwok genpkg $i |
pascal@1140 | 46 done |
pascal@1140 | 47 } |
pascal@1140 | 48 |
pascal@1140 | 49 # Pre and post install commands for Tazpkg. |
pascal@1140 | 50 post_install() |
pascal@1140 | 51 { |
pascal@1140 | 52 # adduser mysql if needed |
pascal@1140 | 53 if ! grep -q mysql $1/etc/passwd; then |
pascal@1140 | 54 echo -n "Adding user mysql..." |
pascal@1140 | 55 chroot $1/ adduser mysql -s /bin/false -H -D -S |
pascal@1140 | 56 status |
pascal@1140 | 57 fi |
pascal@1140 | 58 # addgroup mysql if needed |
pascal@1140 | 59 if ! grep -q mysql $1/etc/group; then |
pascal@1140 | 60 echo -n "Adding group mysql..." |
pascal@1140 | 61 chroot $1/ addgroup mysql && addgroup mysql mysql |
pascal@1140 | 62 status |
pascal@1140 | 63 fi |
pascal@1141 | 64 chroot $1/ chown mysql.mysql $(cat $1/$INSTALLED/$PACKAGE/files.list) |
pascal@1147 | 65 cat <<EOF |
pascal@1147 | 66 ---- |
pascal@1147 | 67 To start $PACKAGE server you can run : |
pascal@1147 | 68 |
pascal@1147 | 69 /etc/init.d/$PACKAGE start |
pascal@1147 | 70 |
pascal@1147 | 71 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf |
pascal@1147 | 72 ---- |
pascal@1147 | 73 EOF |
pascal@1140 | 74 } |
pascal@1140 | 75 |
pascal@1140 | 76 post_remove() |
pascal@1140 | 77 { |
pascal@1140 | 78 deluser mysql |
pascal@1140 | 79 delgroup mysql |
pascal@1140 | 80 } |