summaryrefslogtreecommitdiff
path: root/homepanel.initd
blob: 32ded00a09fe6d0df430d2f2fec821d9078d345d (plain)
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
#!/bin/sh 
 
# Generated at Sat Oct 18 11:38:22 2014 with Daemon::Control 0.001006 
 
### BEGIN INIT INFO 
# Provides:          HomePanel 
# Required-Start:    $local_fs $network $named $time 
# Required-Stop:     $local_fs $network $named $time 
# Default-Start:     2 3 4 5 
# Default-Stop:      0 1 6 
# Short-Description: Home info panel 
# Description:       Show forecast, tube, bus status. 
### END INIT INFO` 
 
 
 
export PERLBREW_ROOT=/data/perl5
. /data/perl5/etc/bashrc
 
 
if [ -x /home/dakkar/src/HomePanel/homepanel-control ];
then
    /home/dakkar/src/HomePanel/homepanel-control $1
else
    echo "Required program /home/dakkar/src/HomePanel/homepanel-control not found!"
    exit 1;
fi