Aleksander Machniak
2016-05-22 77b5d7ee304a688a2eb115ce04b460b43c0dd700
commit | author | age
b86e09 1 #!/usr/bin/env php
AM 2 <?php
3 /*
4  +-----------------------------------------------------------------------+
5  | bin/initdb.sh                                                         |
6  |                                                                       |
7  | This file is part of the Roundcube Webmail client                     |
8  | Copyright (C) 2010-2015, The Roundcube Dev Team                       |
9  | Copyright (C) 2010-2015, Kolab Systems AG                             |
10  |                                                                       |
11  | Licensed under the GNU General Public License version 3 or            |
12  | any later version with exceptions for skins & plugins.                |
13  | See the README file for a full license statement.                     |
14  |                                                                       |
15  | PURPOSE:                                                              |
16  |   Create database schema                                              |
17  +-----------------------------------------------------------------------+
18  | Author: Aleksander Machniak <alec@alec.pl>                            |
19  +-----------------------------------------------------------------------+
20 */
21
22 define('INSTALL_PATH', realpath(__DIR__ . '/..') . '/' );
23
24 require_once INSTALL_PATH . 'program/include/clisetup.php';
25
26 // get arguments
27 $opts = rcube_utils::get_opt(array(
28     'd' => 'dir',
29 ));
30
31 if (empty($opts['dir'])) {
32     rcube::raise_error("Database schema directory not specified (--dir).", false, true);
33 }
34
35 // Check if directory exists
36 if (!file_exists($opts['dir'])) {
37     rcube::raise_error("Specified database schema directory doesn't exist.", false, true);
38 }
39
e76208 40 rcmail_utils::db_init($opts['dir']);
b86e09 41
AM 42 ?>