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

These are old archives. They are kept for historic purposes only.
Post Reply
gookce
Posts: 4
Joined: Tue Aug 02, 2005 6:32 pm

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

Post 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
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post 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
If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post 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;
};
Post Reply