View | Details | Raw Unified | Return to bug 32850
Collapse All | Expand All

(-)/usr/share/pyshared/univention/management/console/acl.py.orig (-1 / +2 lines)
 Lines 62-67    Link Here 
62
import cPickle
62
import cPickle
63
import itertools
63
import itertools
64
import operator
64
import operator
65
from fnmatch import fnmatch
65
66
66
from .config import ucr
67
from .config import ucr
67
from .log import *
68
from .log import *
 Lines 146-152    Link Here 
146
							hosts.append(server['name'])
147
							hosts.append(server['name'])
147
			elif host == '*':
148
			elif host == '*':
148
				hosts.append(ucr['hostname'])
149
				hosts.append(ucr['hostname'])
149
			elif host == ucr['hostname']:
150
			elif fnmatch(ucr['hostname'], host):
150
				hosts.append(ucr['hostname'])
151
				hosts.append(ucr['hostname'])
151
152
152
		return hosts
153
		return hosts

Return to bug 32850