-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h
45 lines (40 loc) · 2.53 KB
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/****************************************************************************\
* ______ _ ____ *
* / __/ /____ ____(_)__ _/ __ \___ ___ *
* _\ \/ __/ _ \/ __/ / _ `/ /_/ / _ \/ -_) *
* /___/\__/\___/_/ /_/\_, /\____/_//_/\__/ *
* /_/ *
* ------------------------------------------------------------------------ *
* This file is a part of Storiq One *
* *
* Storiq One is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Affero General Public License *
* as published by the Free Software Foundation; either version 3 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Affero General Public License for more details. *
* *
* You should have received a copy of the GNU Affero General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
* ------------------------------------------------------------------------ *
* Copyright (C) 2013-2018, Guillaume Clercin <gclercin@intellique.com> *
\****************************************************************************/
#ifndef __STORIQONE_CONFIG_H__
#define __STORIQONE_CONFIG_H__
#define DAEMON_CONFIG_FILE "/etc/storiq/storiqone.conf"
#define DAEMON_CRASH_DIR "/var/crash/storiqone"
#define DAEMON_SOCKET_DIR "/var/run/storiqone"
#define DAEMON_PID_FILE "/var/run/storiqone.pid"
#define DAEMON_BIN_DIR "/usr/lib/storiqone/1.3/bin"
#define DAEMON_JOB_DIR "/usr/lib/storiqone/1.3/job"
#define LOCALE_DIR "/usr/share/locale/"
#define MODULE_PATH "/usr/lib/storiqone/1.3/lib"
#define SCRIPT_PATH "/usr/lib/storiqone/1.3/scripts"
#define TMP_DIR "/tmp"
#define ADMIN_DEFAULT_HOST "localhost"
#define ADMIN_DEFAULT_PORT 4862
#endif