Lines Matching refs:com
38 (com, arg) = GrubConf.grub_exact_split(line, 2)
39 com = com.lower()
42 if com.lower() == "append" and self.kernel is not None:
61 com = None
70 if com is not None and self.commands.has_key(com):
71 if self.commands[com] is not None:
72 setattr(self, self.commands[com], re.sub('^"(.+)"$', r"\1", arg.strip()))
74 logging.info("Ignored image directive %s" %(com,))
75 elif com is not None:
76 logging.warning("Unknown image directive %s" %(com,))
168 (com, arg) = GrubConf.grub_exact_split(l, 2)
169 com = com.lower()
170 if self.commands.has_key(com):
171 if self.commands[com] is not None:
172 setattr(self, self.commands[com], arg.strip())
174 logging.info("Ignored directive %s" %(com,))
176 logging.warning("Unknown directive %s" %(com,))