v0.2

a tiny service manager written in rc

22 L
10 L
49 L
58 L

readme

 1rcsm
 2----
 3
 4A tiny service manager written in rc.
 5It doesnt really do much, appart from launching and killing services.
 6So no logging, no monitoring, just start/stop.
 7
 8It follows the same concept as shsm[0], but is about half the LOCs.
 9
10
11Install
12-------
13
14	$ make install
15
16Usage
17-----
18
19Create neccessary directories
20
21	$ rcsm -c 
22
23Now create your service scripts
24To start/stop your services with rcsm
25
26	$ rcsm -s foo
27	$ rcsm -k foo
28
29If you have multiple services you want to run, you can activate them
30
31	$ rcsm -a foo
32	$ rcsm -a bar
33
34You can now start/stop all your activated services simultaneously
35	
36	$ rcsm -s
37	$ rcsm -k
38
39
40Service scripts
41---------------
42
43Service scripts are rather simple, and only require 2 case statements (-s/-k).
44this means that you can essentially use w/e language/shell you want, as long as
45-s and -k options is available.
46
47
48[0] https://github.com/hovercats/shsm