Lines Matching refs:line
34 Helper class to test Kerberos command line utilities
80 def _check_klist_l(self, line, exp_principal, exp_cache):
82 princ, cache = line.split()
123 for line in princlist:
124 matches = self._check_klist_l(line, exp_principal, exp_cache)
139 for line in [l for l in out.split('\n') if len(l) > 0]:
140 if line.startswith("Default principal"):
141 dflprinc = line.split()[2]
143 elif thisrealm is not None and line.endswith(thisrealm):
144 svc = line.split()[-1]