"""
LsVarTmp - command ``ls -ln /var/tmp``
======================================
The ``ls -ln /var/tmp`` command provides information for the listing of the
``/var/tmp`` directory.
Sample input is shown in the Examples. See ``FileListing`` class for
additional information.
Sample directory list::
/var/tmp:
total 20
drwxr-xr-x. 2 0 0 4096 Mar 26 02:25 a1
drwxr-xr-x. 2 0 0 4096 Mar 26 02:25 a2
drwxr-xr-x. 2 0 0 4096 Apr 28 2018 foreman-ssh-cmd-fc3f65c9-2b35-480d-87e3-1d971433d6ad
Examples:
>>> "a1" in ls_var_tmp
False
>>> "/var/tmp" in ls_var_tmp
True
>>> ls_var_tmp.dir_entry('/var/tmp', 'a1')['type']
'd'
"""
from insights.specs import Specs
from insights.core.filters import add_filter
from insights.util import deprecated
from .. import FileListing
from .. import parser, CommandParser
add_filter(Specs.ls_var_tmp, "/var/tmp")
[docs]@parser(Specs.ls_var_tmp)
class LsVarTmp(CommandParser, FileListing):
"""
.. warning::
This class is deprecated and will be removed from 3.5.0.
Please use the :class:`insights.parsers.ls.LSlanFiltered` instead.
Parses output of ``ls -ln /var/tmp`` command.
"""
def __init__(self, *args, **kwargs):
deprecated(LsVarTmp, "Please use the :class:`insights.parsers.ls.LSlanFiltered` instead.", "3.5.0")
super(LsVarTmp, self).__init__(*args, **kwargs)