~kelemeng/checkbox/bug868571

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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
plugin: shell
name: atd
requires: package.name == 'at'
command: pgrep -f '/usr/sbin/atd' >/dev/null
_description: Test if the atd daemon is running when the package is installed.

plugin: shell
name: cron
requires: package.name == 'cron'
command: pgrep -f '/usr/sbin/cron' >/dev/null
_description: Test if the cron daemon is running when the package is installed.

plugin: shell
name: cupsd
requires: package.name == 'cupsys'
command: pgrep -f '/usr/sbin/cupsd' >/dev/null
_description: Test if the cupsd daemon is running when the package is installed.

plugin: shell
name: getty
requires: package.name == 'util-linux'
command: pgrep -f '/sbin/getty' >/dev/null
_description: Test if the getty daemon is running when the package is installed.

plugin: shell
name: init
requires: package.name == 'upstart'
command: pgrep -f '/sbin/init' >/dev/null
_description: Test if the init daemon is running when the package is installed.

plugin: shell
name: klogd
requires: package.name == 'klogd'
command: pgrep -f '/sbin/klogd' >/dev/null
_description: Test if the klogd daemon is running when the package is installed.

plugin: shell
name: nmbd
requires: package.name == 'samba'
command: pgrep -f '/usr/sbin/nmbd' >/dev/null
_description: Test if the nmbd daemon is running when the package is installed.

plugin: shell
name: smbd
requires: package.name == 'samba'
command: pgrep -f '/usr/sbin/smbd' >/dev/null
_description: Test if the smbd daemon is running when the package is installed.

plugin: shell
name: syslogd
requires: package.name == 'syslogd'
command: pgrep -f '/sbin/syslogd' >/dev/null
_description: Test if the syslogd daemon is running when the package is installed.

plugin: shell
name: udevd
requires:
 package.name == 'udevd'
 package.name == 'linux'
command: pgrep -f '/sbin/udevd' >/dev/null
_description: Test if the udevd daemon is running when the package is installed.

plugin: shell
name: winbindd
requires: package.name == 'winbind'
command: pgrep -f '/usr/sbin/winbindd' >/dev/null
_description: Test if the winbindd daemon is running when the package is installed.