This file is indexed.

/usr/lib/plainbox-providers-1/checkbox/jobs/server-services.txt is in plainbox-provider-checkbox 0.3-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
plugin: shell
name: services/open_ssh_test
requires: package.name == 'ssh'
command: pgrep sshd >/dev/null || (echo 'FAIL: sshd is not running.' 2>&1 && false)
description: Verifies that sshd is running.

plugin: shell
name: services/print_server_test
requires: package.name == 'cups'
command: pgrep cupsd >/dev/null || (echo 'FAIL: cupsd is not running.' 2>&1 && false)
description: Verifies that Print/CUPs server is running.

plugin: shell
name: services/dns_server_test
requires:
 package.name == 'bind9'
 package.name == 'dnsutils'
user: root
command: dns_server_test
description: Verifies that DNS server is running and working.

plugin: shell
name: services/samba_test
requires:
 package.name == 'samba'
 package.name == 'winbind'
user: root
command: samba_test
description: Verifies that Samba server is running.

plugin: shell
name: services/lamp_test
requires:
 package.name == 'apache2'
 package.name == 'php5-mysql'
 package.name == 'libapache2-mod-php5'
 package.name == 'mysql-server'
user: root
command: lamp_test
description: Verifies that the LAMP stack is running (Apache, MySQL and PHP).

plugin: shell
name: services/tomcat_test
requires: package.name == 'tomcat6'
user: root
command: tomcat_test
description: Verifies that Tomcat server is running and working.