Added some code to peer into a data structure in Maemian/Schedule.pm. Also added the
[maemian] / nokia-lintian / testset / scripts / init-lsb-other
1 #! /bin/sh
2 ### BEGIN INIT INFO
3 # Provides:          lsb-other
4 # Required-Start:    $local_fs $remote_fs
5 # Required-Stop:     $local_fs $remote_fs
6 # Default-Start:     2 3 4 5
7 # Default-Stop:      0 1 6
8 # Description:       This is another LSB script test, which has a missing
9 #  Short-Description.
10 ### END INIT INFO
11
12 case "$1" in
13   start|stop|restart|reload|force-reload)
14         echo "Blah"
15         ;;
16   *)
17         echo "Usage: foo start" >&2
18         exit 3
19         ;;
20 esac
21
22 :