Page 1 of 1

[error] set::hosts::global is missing ??? help please

Posted: Tue Aug 02, 2005 8:04 pm
by gookce
* 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

Posted: Tue Aug 02, 2005 8:12 pm
by Dukat
You should really read the documentation and take the example configuration file as a starting point.

http://www.vulnscan.org/UnrealIRCd/unreal32docs.html

Posted: Tue Aug 02, 2005 8:34 pm
by Stealth
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:

Code: Select all

set {
  something "something";
  };
hosts {
  host-stuff;
};
or

Code: Select all

set {
  something "something";
  dns {
    dns-stuff;
  };
};
};
hosts {
  host-stuff;
};