go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/providers/os/resources/services/testdata/centos6.toml (about)

     1  [commands."ls -1 /etc/init.d/"]
     2  stdout = """
     3  acpid
     4  crond
     5  ntpd
     6  postfix
     7  sshd
     8  """
     9  
    10  [commands."find -L /etc/rc*.d -name 'S*'"]
    11  stdout = """
    12  /etc/rc.d/rc4.d/S80postfix
    13  /etc/rc.d/rc4.d/S26acpid
    14  /etc/rc.d/rc4.d/S55sshd
    15  /etc/rc.d/rc4.d/S58ntpd
    16  /etc/rc.d/rc4.d/S90crond
    17  /etc/rc.d/rc5.d/S80postfix
    18  /etc/rc.d/rc5.d/S26acpid
    19  /etc/rc.d/rc5.d/S55sshd
    20  /etc/rc.d/rc5.d/S58ntpd
    21  /etc/rc.d/rc5.d/S90crond
    22  /etc/rc.d/rc3.d/S80postfix
    23  /etc/rc.d/rc3.d/S26acpid
    24  /etc/rc.d/rc3.d/S55sshd
    25  /etc/rc.d/rc3.d/S58ntpd
    26  /etc/rc.d/rc3.d/S90crond
    27  /etc/rc.d/rc2.d/S80postfix
    28  /etc/rc.d/rc2.d/S26acpid
    29  /etc/rc.d/rc2.d/S55sshd
    30  /etc/rc.d/rc2.d/S58ntpd
    31  /etc/rc.d/rc2.d/S90crond
    32  """
    33  
    34  [commands."/sbin/initctl list"]
    35  stdout = """
    36  rc stop/waiting
    37  tty (/dev/tty3) start/running, process 1635
    38  tty (/dev/tty2) start/running, process 1631
    39  tty (/dev/tty1) start/running, process 1629
    40  tty (/dev/tty6) start/running, process 1643
    41  tty (/dev/tty5) start/running, process 1641
    42  tty (/dev/tty4) start/running, process 1639
    43  plymouth-shutdown stop/waiting
    44  control-alt-delete stop/waiting
    45  serial stop/waiting
    46  """
    47  
    48  [commands."service acpid status"]
    49  stdout = "acpid (pid  1239) is running..."
    50  
    51  [commands."service sshd status"]
    52  stdout = "openssh-daemon (pid  22748) is running..."
    53  
    54  [commands."service ntpd status"]
    55  stdout = "ntpd (pid  1462) is running..."
    56  
    57  [commands."service crond status"]
    58  stdout = "crond (pid  1601) is running..."
    59  
    60  [commands."uname -r"]
    61  stdout = "2.6.32-754.29.1.el6.x86_64"
    62  
    63  [commands."uname -s"]
    64  stdout = "Linux"
    65  
    66  [commands."uname -m"]
    67  stdout = "x86_64"
    68  
    69  [files."/etc/centos-release"]
    70  content = """
    71  CentOS release 6.10 (Final)
    72  """
    73  
    74  [files."/etc/redhat-release"]
    75  content = """
    76  CentOS release 6.10 (Final)
    77  """