-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
UPGRADING
94 lines (67 loc) · 3.33 KB
/
UPGRADING
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
Upgrading Eggdrop
It is easy to upgrade Eggdrop to a new version! To have a full picture
of the changes made since your last upgrade, we recommend reading the
NEWS file. Upgrades from the 1.8 and 1.9 lines of Eggdrop should take
place with little to no issues. While the config file, user files, and
channel files can all be reused, it is recommended to review the NEWS
files for each release to identify new configuration settings that
have been added.
For support, feel free to visit us on Libera #eggdrop.
HOW TO UPGRADE
To upgrade to a newer version of Eggdrop, first backup your .config
file, .user file, and .chan file. While they are saved and should not
be overwritten by the upgrade process, it never hurts to make anothere
copy :)
Next, view the NEWS file to see what changes have been made, paying
particular attention to the config file section to see what
new/different commands have been added. Update your config file
appropriately.
Then, simply follow the same steps you followed to install Eggdrop
previously. Download the source, unzip/untar it, and run the
'./configure', 'make config', 'make', and 'make install' commands.
Restart your Eggdrop and you will be up and running with the latest
version of Eggdrop.
MUST-READ CHANGES FOR EGGDROP V1.10
These are NOT all the changes or new settings; rather just the "killer"
changes that may directly affect Eggdrop's previous performance without
modification.
Config file changes
To migrate from a 1.8 to a Eggdrop, some changes are suggested to be
made in your configuration file:
- Eggdrop has deprecated the blowfish module for password hashing in
favor of the PBKDF2 module. This is a BIG change which, if done
carelessly, has the potential to render stored passwords useless.
Please see doc/PBKDF2 for information on how to properly migrate
your userfiles and passwords to the new module.
- Eggdrop 1.9 switched from the "set servers {}" syntax to the "server
add" command. For example, if your configuration file previously
had:
set servers {
my.server.com:6667
}
you should now instead use:
server add my.server.com 6667
Please read the config file for additional examples
- Eggdrop no longer requires the '-n' flag to start Eggdrop in
terminal mode.
Modules
While most 3rd party modules that worked on older Eggdrop versions
should still work with Eggdrop , many of them contain a version check
that only allows them to run on 1.6.x bots. We have removed the version
check from some of the more popular modules provide them at
https://ftp.eggheads.org/pub/eggdrop/modules/1.10/
Scripts
All 3rd party Tcl scripts that worked with Eggdrop versions as early as
v1.6 should still fully work with Eggdrop .
Botnet
In Eggdrop v1.8, Eggdrop bots would automatically attempt to upgrade any
botnet link to an SSL/TLS connection. Since v1.9, the user is required
to explicitly request an SSL/TLS connection by prefixing the port with a
'+'. If you wish your botnet to take advantage of encryption, use the
.chaddr command to update your ports to start with a '+'.
Tcl Commands
A lot of backwards-compatible additions and changes have been made to
Tcl commands. Please look at doc/tcl-commands.doc to see them.
Documentation
Documentation has been updated to reflect new and removed commands and
variables.