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:
Stefan Eßer 2011-10-17 14:33:41 +00:00
parent a05e382c09
commit 3efd8ccdb5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226470

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