~checkbox-dev/checkbox/trunk

« back to all changes in this revision

Viewing changes to jobs/server-services.txt.in

  • Committer: Brendan Donegan
  • Date: 2011-10-18 09:47:45 UTC
  • mfrom: (1018.2.26 checkbox_ui_rewrite)
  • Revision ID: brendan.donegan@canonical.com-20111018094745-wuj9vs836pxvfht0
Merged job description changes from checkbox_ui_rewrite.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
plugin: shell
2
 
name: open_ssh_test
 
2
name: services/open_ssh_test
3
3
requires: package.name == 'ssh'
4
4
command: pgrep sshd >/dev/null || (echo 'FAIL: sshd is not running.' 2>&1 && false)
5
 
_description: sshd test
 
5
_description: Verifies that sshd is running.
6
6
 
7
7
plugin: shell
8
 
name: print_server_test
 
8
name: services/print_server_test
9
9
requires: package.name == 'cups'
10
10
command: pgrep cupsd >/dev/null || (echo 'FAIL: cupsd is not running.' 2>&1 && false)
11
 
_description: Print/CUPs server test
 
11
_description: Verifies that Print/CUPs server is running.
12
12
 
13
13
plugin: shell
14
 
name: dns_server_test
 
14
name: services/dns_server_test
15
15
requires: package.name == 'bind9' and package.name == 'dnsutils'
16
16
user: root
17
17
command: dns_server_test
18
 
_description: DNS server test
 
18
_description: Verifies that DNS server is running and working.
19
19
 
20
20
plugin: shell
21
 
name: samba_test
 
21
name: services/samba_test
22
22
requires: package.name == 'samba' and package.name == 'winbind'
23
23
user: root
24
24
command: samba_test
25
 
_description: Samba server test
 
25
_description: Verifies that Samba server is running.
26
26
 
27
27
plugin: shell
28
 
name: lamp_test
 
28
name: services/lamp_test
29
29
requires: package.name == 'apache2' and package.name == 'php5-mysql' and package.name == 'libapache2-mod-php5' and package.name == 'mysql-server'
30
30
user: root
31
31
command: lamp_test
32
 
_description: LAMP server test
 
32
_description: Verifies that the LAMP stack is running (Apache, MySQL and PHP).
33
33
 
34
34
plugin: shell
35
 
name: tomcat_test
 
35
name: services/tomcat_test
36
36
requires: package.name == 'tomcat6'
37
37
user: root
38
38
command: tomcat_test
39
 
_description: Tomcat server test
 
39
_description: Verifies that Tomcat server is running and working.