Lines Matching refs:com
30 (com, arg) = GrubConf.grub_exact_split(line, 2)
32 if self.commands.has_key(com):
33 if self.commands[com] is not None:
34 setattr(self, self.commands[com], re.sub('^"(.+)"$', r"\1", arg.strip()))
36 logging.info("Ignored image directive %s" %(com,))
38 logging.warning("Unknown image directive %s" %(com,))
129 (com, arg) = GrubConf.grub_exact_split(l, 2)
130 if self.commands.has_key(com):
131 if self.commands[com] is not None:
132 setattr(self, self.commands[com], arg.strip())
134 logging.info("Ignored directive %s" %(com,))
136 logging.warning("Unknown directive %s" %(com,))