From: Elijah Saxon Date: Mon, 21 Mar 2005 17:48:34 +0000 (+0000) Subject: fixed bug when system has multiple usernames starting with "root". X-Git-Tag: backupninja-0.5~4 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=9f9a16697883529f3271b3b44ab742b217726e2a fixed bug when system has multiple usernames starting with "root". --- diff --git a/handlers/mysql b/handlers/mysql index 165ebc6..6a8c3dd 100644 --- a/handlers/mysql +++ b/handlers/mysql @@ -27,7 +27,7 @@ dumpdir="$backupdir/sqldump" # temporary ~/.my.cnf in root's home directory). if [ "$dbusername" != "" ]; then - home=`grep '^root' /etc/passwd | awk -F: '{print $6}'` + home=`grep '^root:' /etc/passwd | awk -F: '{print $6}'` [ -d $home ] || fatal "Can't find root's home directory ($home)." mycnf="$home/.my.cnf" if [ -f $mycnf ]; then