|
Lines 48-60
Link Here
|
| 48 |
*/ |
48 |
*/ |
| 49 |
|
49 |
|
| 50 |
/* dirs */ |
50 |
/* dirs */ |
| 51 |
#define DPATH IRCD_PREFIX |
51 |
#define DPATH IRCD_PREFIX |
| 52 |
#define BINPATH IRCD_PREFIX "/bin/" |
52 |
#define BINPATH IRCD_PREFIX "/bin/" |
| 53 |
#define MSGPATH IRCD_PREFIX "/messages/" |
53 |
#define MSGPATH IRCD_PREFIX "/share/ircd-hybrid-7/messages/" |
| 54 |
#define ETCPATH IRCD_PREFIX "/etc" |
54 |
#define ETCPATH "/etc/ircd" |
| 55 |
#define LOGPATH IRCD_PREFIX "/logs" |
55 |
#define LOGPATH "/var/log/ircd" |
| 56 |
#define MODPATH IRCD_PREFIX "/modules/" |
56 |
#define MODPATH IRCD_PREFIX "/lib/ircd-hybrid-7/modules/" |
| 57 |
#define AUTOMODPATH IRCD_PREFIX "/modules/autoload/" |
57 |
#define AUTOMODPATH IRCD_PREFIX "/lib/ircd-hybrid-7/modules/autoload" |
| 58 |
|
58 |
|
| 59 |
/* files */ |
59 |
/* files */ |
| 60 |
#define SPATH BINPATH "/ircd" /* ircd executable */ |
60 |
#define SPATH BINPATH "/ircd" /* ircd executable */ |
|
Lines 70-76
Link Here
|
| 70 |
#define RKPATH ETCPATH "/rkline.conf" |
70 |
#define RKPATH ETCPATH "/rkline.conf" |
| 71 |
#define MPATH ETCPATH "/ircd.motd" /* MOTD file */ |
71 |
#define MPATH ETCPATH "/ircd.motd" /* MOTD file */ |
| 72 |
#define LPATH LOGPATH "/ircd.log" /* ircd logfile */ |
72 |
#define LPATH LOGPATH "/ircd.log" /* ircd logfile */ |
| 73 |
#define PPATH ETCPATH "/ircd.pid" /* pid file */ |
73 |
#define PPATH "/var/run/ircd/ircd.pid" /* pid file */ |
| 74 |
#define OPATH ETCPATH "/opers.motd" /* oper MOTD file */ |
74 |
#define OPATH ETCPATH "/opers.motd" /* oper MOTD file */ |
| 75 |
#define LIPATH ETCPATH "/links.txt" /* cached links file */ |
75 |
#define LIPATH ETCPATH "/links.txt" /* cached links file */ |
| 76 |
|
76 |
|