Flags Questions

The UnrealIRCd team does not officially provide support for any services packages that you may be using or want to use. This forum is provided so the community can help each other with services issues.

Moderator: Supporters

Locked
mao43
Posts: 14
Joined: Sat Feb 25, 2012 4:33 pm

Flags Questions

Post by mao43 »

is this right

Network Admin with Global

Code: Select all

	flags {
		netadmin;
	};
Services Admin with Global

Code: Select all

	flags {
		services-admin;
		global;
	};
the network admin + global works (first code)

2nd code doesn't work
when i want to oper another User
why? it works but no global;
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Re: Flags Questions

Post by Stealth »

1) How does it not work? You need to provide us with more information than "doesn't work", otherwise we won't know what needs to be fixed.
2) The services-admin flag includes global, so there's no need to define it.
mao43
Posts: 14
Joined: Sat Feb 25, 2012 4:33 pm

Re: Flags Questions

Post by mao43 »

Code: Select all

oper Test {
	from {
		userhost *@*;
	};
	class clients;
	password "password";
	flags {
		services-admin;
		global;
	};
Test can't use /os Global command
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Re: Flags Questions

Post by Stealth »

Adding the global flag does not give the oper access to /os global.

Please consult your services documentation for adding opers properly in services.
mao43
Posts: 14
Joined: Sat Feb 25, 2012 4:33 pm

Re: Flags Questions

Post by mao43 »

Stealth wrote:Adding the global flag does not give the oper access to /os global.

Please consult your services documentation for adding opers properly in services.

well
how i tried everything
doesn't work
mao43
Posts: 14
Joined: Sat Feb 25, 2012 4:33 pm

Re: Flags Questions

Post by mao43 »

i already gave up
i can't make this crap work

Code: Select all

	flags {
		services-admin;
		can_kline;	
		can_unkline;
		can_zline;
		can_gkline;
		can_gzline;
		global;
		can_globalnotice;
};
services admin and below it can't have other things
they can't use /os global

need help
cards
Posts: 85
Joined: Sat Jun 12, 2004 5:04 am

Re: Flags Questions

Post by cards »

mao43.

Your flags for unreal, don't automatically give you access to operserv. In order to use /os global, you have to be a services admin or services root
Services Root's are defined int he services.conf file
Services Admins can be added by a root user via /os admin add.

You may want to consult your services documentation on using the global command
NetAdmin
irc.420-HighTimes.com
Locked