* Loading IRCd configuration ..
* unrealircd.conf:720: Ignoring extra close brace
* unrealircd.conf:720 Ignoring extra semicolon
* unrealircd.conf:711: unknown directive hosts
[error] set::hosts::global is missing
[error] set::hosts::admin is missing
[error] set::hosts::servicesadmin is missing
[error] set::hosts::netadmin is missing
[error] set::hosts::coadmin is missing
[error] 5 errors encountered
[error] set::hosts::global is missing ??? help please
You should really read the documentation and take the example configuration file as a starting point.
http://www.vulnscan.org/UnrealIRCd/unreal32docs.html
http://www.vulnscan.org/UnrealIRCd/unreal32docs.html
If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
- Coleman Hawkins
-
Stealth
- Head of Support
- Posts: 2085
- Joined: Tue Jun 15, 2004 8:50 pm
- Location: Chino Hills, CA, US
- Contact:
You have added one or 2 too many }; before the hosts section of your set block. Fix the amount of }; you used, and it should work.
Example:
You prolly have something like:or
Example:
You prolly have something like:
Code: Select all
set {
something "something";
};
hosts {
host-stuff;
};Code: Select all
set {
something "something";
dns {
dns-stuff;
};
};
};
hosts {
host-stuff;
};