updated on Mon Jan 16 04:00:32 UTC 2012
[aur-mirror.git] / sova / smanager2
blob3155e808fd0be13d7490987fa5c9d6c85ace1bb2
1 #!/bin/bash
3 # SOVA Services Manager 2 settings.
5 # WARNING! Remember to put '$true' in any function you intend to leave empty
6 # (e.g. you don't need to use the 'custom_variables' function)
7 # to make sure the script doesn't break.
9 binaries_paths()
11 ### get full paths
12 # the 'exit 0' binary
13 true="`which true`"
15 # ...if you need any more. I guess you don't but it won't hurt
16 # if the function remains, just in case ;).
18 $true
21 custom_variables()
23 # define whatever you need here
25 #ser1="/etc/rc.d/someservice1"
26 #ser2="/etc/rc.d/someservice2"
27 #ser3="/etc/rc.d/someservice3"
29 $true
32 start_smanager()
34 #$ser1 start
35 #$ser2 start
36 #$ser3 start
37 $true
40 stop_smanager()
42 #$ser2 stop
43 #$ser1 stop
44 #$ser3 stop
45 $true
48 # EOF