@%@UCRWARNING=# @%@

# Allow members of group "Domain Admins" to execute any command
@!@
import re
group = configRegistry.get("groups/default/domainadmins", "Domain Admins")
if group and configRegistry.is_true('auth/sudo'):
    da = re.sub(r'([ !=:,()\\])', r'\\\1', group)
    print("%{} ALL=(ALL:ALL) ALL".format(da))
@!@
