Fix error message in case the backup storage directory does not exist and

cannot be created ($daily_backup_pkgdb_dbdir -> $daily_backup_pkgdb_dir).
MFC after:	1 week
This commit is contained in:
se 2011-10-17 14:33:41 +00:00
parent 6d4595e17a
commit c5a8163000

View File

@ -25,7 +25,7 @@ case "$daily_backup_pkgdb_enable" in
then
install -d -o root -g wheel -m 750 $bak || {
echo '$daily_backup_pkgdb_enable is enabled but' \
"$daily_backup_pkgdb_dbdir doesn't exist" ;
"$daily_backup_pkgdb_dir doesn't exist" ;
exit 2 ; }
fi