From 6bfd9853333e73684e4f1ed4e7b1888bda5e6ea4 Mon Sep 17 00:00:00 2001 From: dennisdebel Date: Wed, 28 May 2014 12:13:57 +0200 Subject: [PATCH] Update README.md added init script howto --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/README.md b/README.md index 85e0cb0..4bfff3b 100644 --- a/README.md +++ b/README.md @@ -276,6 +276,37 @@ Restart dnsmasq to apply the changes: Now all http requests will be directed to Meshenger! +### Run meshenger on boot + +Create a file in `$ /etc/init.d/` called meshenger and paste the script below: + +``` +#!/bin/sh /etc/rc.common +#meshenger startup script + +START=10 +STOP=15 + +start() { + echo starting Meshenger + python ~/meshenger/main.py & +} + +stop() { + killall python +} +``` + +Make the file executable + +`$ chmod a+x /etc/init.d/meshenger` + +Now you can start/stop meshenger as a service, to enable the meshenger as srevice on boot run + +`$ /etc/init.d/meshenger enable` + +To start/stop/disable replace 'enable' with start, stop or disable. + ### Installing meshenger