# HG changeset patch # User Christopher Rogers # Date 1295179496 0 # Node ID 93342cc572ffe084f4bb43cb2e478dad5e6cd8d0 # Parent db2322c09ddecf56fff0569bd4030ff6ec4b832f Made mysql post_install have uuser and group id number 27. This is mostly so we can start having normal numbers for user and group ids. diff -r db2322c09dde -r 93342cc572ff mysql/receipt --- a/mysql/receipt Sun Jan 16 09:43:07 2011 +0000 +++ b/mysql/receipt Sun Jan 16 12:04:56 2011 +0000 @@ -71,14 +71,14 @@ # addgroup mysql if needed if ! grep -q mysql $1/etc/group; then echo -n "Adding group MySQL..." - chroot $1/ /bin/addgroup mysql + chroot $1/ /bin/addgroup -g 27 mysql status fi # adduser mysql if needed if ! grep -q mysql $1/etc/passwd; then echo -n "Adding user MySQL..." chroot $1/ /bin/adduser -s /bin/false -h /dev/null \ - -g "MySQL Daemon user" -H -D -S -G mysql mysql + -g "MySQL Daemon user" -u 27 -H -D -S -G mysql mysql status fi chroot $1/ /bin/chown mysql.mysql $(cat $1/$INSTALLED/$PACKAGE/files.list)