[svn-commits] twilson: trunk r340223 - in /trunk: ./ main/db.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Mon Oct 10 17:58:13 CDT 2011
Author: twilson
Date: Mon Oct 10 17:58:10 2011
New Revision: 340223
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=340223
Log:
Merged revisions 340222 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10
........
r340222 | twilson | 2011-10-10 15:55:39 -0700 (Mon, 10 Oct 2011) | 8 lines
On astdb conversion, also warn about permissions requirements
The user running Asterisk must have permission to the directory
the Asterisk database resides in since SQLite 3 needs to be able
to create a journal file.
(closes issue ASTERISK-1817)
........
Modified:
trunk/ (props changed)
trunk/main/db.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/main/db.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/db.c?view=diff&rev=340223&r1=340222&r2=340223
==============================================================================
--- trunk/main/db.c (original)
+++ trunk/main/db.c Mon Oct 10 17:58:10 2011
@@ -204,6 +204,9 @@
ast_log(LOG_ERROR, "*** old astdb, please delete '%s'\n", dbname);
ast_log(LOG_ERROR, "*** and re-run 'make menuselect' and select astdb2sqlite3\n");
ast_log(LOG_ERROR, "*** in the Utilities section, then 'make && make install'.\n");
+ ast_log(LOG_ERROR, "*** It is also imperative that the user under which\n");
+ ast_log(LOG_ERROR, "*** Asterisk runs have write permission to the directory\n");
+ ast_log(LOG_ERROR, "*** where the database resides.\n");
sleep(5);
} else {
ast_log(LOG_NOTICE, "Database conversion succeeded!\n");
More information about the svn-commits
mailing list