Source code for insights.parsers.grubby

"""
grubby - command ``/usr/sbin/grubby``
=====================================

This is a collection of parsers that all deal with the command ``grubby``.
Parsers included in this module are:

GrubbyDefaultIndex - command ``grubby --default-index``
-------------------------------------------------------

GrubbyDefaultKernel - command ``grubby --default-kernel``
---------------------------------------------------------
"""

from insights.specs import Specs
from insights.parsers import SkipException, ParseException
from insights import CommandParser
from insights import parser


[docs]@parser(Specs.grubby_default_index) class GrubbyDefaultIndex(CommandParser): """ This parser parses the output of command ``grubby --default-index``. The typical output of this command is:: 0 Examples: >>> grubby_default_index.default_index 0 Raises: SkipException: When output is empty ParseException: When output is invalid Attributes: default_index (int): the numeric index of the current default boot entry, count from 0 """
[docs] def parse_content(self, content): if not content: raise SkipException('Empty output') if len(content) != 1 or not content[0].isdigit(): raise ParseException('Invalid output: {0}', content) self.default_index = int(content[0])
[docs]@parser(Specs.grubby_default_kernel) class GrubbyDefaultKernel(CommandParser): """ This parser parses the output of command ``grubby --default-kernel``. The typical output of this command is:: /boot/vmlinuz-2.6.32-573.el6.x86_64 Examples: >>> grubby_default_kernel.default_kernel '/boot/vmlinuz-2.6.32-573.el6.x86_64' Raises: SkipException: When output is empty ParseException: When output is invalid Attributes: default_kernel(str): The default kernel name for next boot """
[docs] def parse_content(self, content): if not content: raise SkipException('Empty output') if len(content) != 1: raise ParseException('Invalid output: {0}', content) self.default_kernel = content[0].strip()