blob: 7303800a2a6af9242c3846452585ddf03c056c43 (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
|
136,138c136,138
< #define BINPATH IRCD_PREFIX "/bin/"
< #define MODPATH IRCD_PREFIX "/modules/"
< #define AUTOMODPATH IRCD_PREFIX "/modules/autoload/"
---
> #define BINPATH "/usr/sbin/"
> #define MODPATH "/usr/lib/ircd-hybrid-7/ipv6/"
> #define AUTOMODPATH MODPATH "/autoload/"
140,141c140,141
< #define ETCPATH IRCD_PREFIX "/etc"
< #define LOGPATH IRCD_PREFIX "/logs"
---
> #define ETCPATH "/etc/ircd"
> #define LOGPATH "/var/log/ircd"
146c146
< #define SPATH BINPATH "/ircd" /* ircd executable */
---
> #define SPATH BINPATH "/ircd-ipv6" /* ircd executable */
148,157c148,157
< #define CPATH ETCPATH "/ircd.conf" /* ircd.conf file */
< #define KPATH ETCPATH "/kline.conf" /* kline file */
< #define DLPATH ETCPATH "/dline.conf" /* dline file */
< #define GPATH LOGPATH "/gline.log" /* gline logfile */
< #define RPATH ETCPATH "/ircd.rsa" /* ircd rsa private keyfile */
< #define MPATH ETCPATH "/ircd.motd" /* MOTD file */
< #define LPATH LOGPATH "/ircd.log" /* ircd logfile */
< #define PPATH ETCPATH "/ircd.pid" /* pid file */
< #define OPATH ETCPATH "/opers.motd" /* oper MOTD file */
< #define LIPATH ETCPATH "/links.txt" /* cached links file */
---
> #define CPATH ETCPATH "/ircd-ipv6.conf" /* ircd.conf file */
> #define KPATH ETCPATH "/kline-ipv6.conf" /* kline file */
> #define DLPATH ETCPATH "/dline-ipv6.conf" /* dline file */
> #define GPATH LOGPATH "/gline-ipv6.log" /* gline logfile */
> #define RPATH ETCPATH "/ircd-ipv6.rsa" /* ircd rsa private keyfile */
> #define MPATH ETCPATH "/ircd-ipv6.motd" /* MOTD file */
> #define LPATH LOGPATH "/ircd-ipv6.log" /* ircd logfile */
> #define PPATH "/var/run/ircd/ircd-ipv6.pid" /* pid file */
> #define OPATH ETCPATH "/opers-ipv6.motd" /* oper MOTD file */
> #define LIPATH ETCPATH "/links-ipv6.txt" /* cached links file */
214c214
< #undef USE_SYSLOG
---
> #define USE_SYSLOG
221,225c221,225
< #undef SYSLOG_KILL /* log all operator kills to syslog */
< #undef SYSLOG_SQUIT /* log all remote squits for all servers to syslog */
< #undef SYSLOG_CONNECT /* log remote connect messages for other all servs */
< #undef SYSLOG_USERS /* send userlog stuff to syslog */
< #undef SYSLOG_OPER /* log all users who successfully become an Op */
---
> #define SYSLOG_KILL /* log all operator kills to syslog */
> #define SYSLOG_SQUIT /* log all remote squits for all servers to syslog */
> #define SYSLOG_CONNECT /* log remote connect messages for other all servs */
> #define SYSLOG_USERS /* send userlog stuff to syslog */
> #define SYSLOG_OPER /* log all users who successfully become an Op */
|