diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-08-23 18:36:58 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-08-23 18:36:58 +0000 |
commit | 61a23cd017465cd2bff5f037cf54e051a6318b37 (patch) | |
tree | 5827cad42b833c88be5783d457ffb03b00c785bf /Config | |
parent | 26ea4bc11b4e07bbeb95031f2337ff695f83cc16 (diff) |
BUILD : 1.7.5 (327) BUGS : none NOTES : Merged anope-capab into main trunk...
git-svn-id: svn://svn.anope.org/anope/trunk@327 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@203 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'Config')
-rwxr-xr-x | Config | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -214,13 +214,15 @@ ok=0 echo "Select the closest to the type of server on your IRC network:" echo " 1) DreamForge 4.6.7 [dated IRCd, upgrade to a current one]" echo " 2) Bahamut 1.4.27 [or later]" -echo " 3) UnrealIRCd 3.1.1 [or later]" +echo " 3) UnrealIRCd 3.1.1 [or later (not 3.2)]" echo " 4) UltimateIRCd 2.8.2 [or later]" echo " 5) UltimateIRCd 3.0.0 [alpha26 or later]" echo " 6) Hybrid IRCd 7.0 [experimental]" echo " 7) ViagraIRCd 1.3.x [or later]" echo " 8) PTlink 6.15.0 [experimental]" echo " 9) RageIRCd 2.0 [beta-3 or later]" +echo " 10) Unreal 3.2 [Unreal 3.2 beta19 or later]" + while [ $ok -eq 0 ] ; do echo2 "[$IRCTYPE] " @@ -242,7 +244,7 @@ while [ $ok -eq 0 ] ; do ok=1; ;; 3) - IRCTYPE_DEF="IRC_UNREAL" + IRCTYPE_DEF="IRC_UNREAL31" ok=1; ;; 4) @@ -270,6 +272,12 @@ while [ $ok -eq 0 ] ; do ok=1; ;; + 10) + IRCTYPE_DEF="IRC_UNREAL32" + ok=1; + ;; + + *) echo "Please enter a valid option number." ;; |