summaryrefslogtreecommitdiff
path: root/system/burp/README.SBo
diff options
context:
space:
mode:
Diffstat (limited to 'system/burp/README.SBo')
-rw-r--r--system/burp/README.SBo20
1 files changed, 10 insertions, 10 deletions
diff --git a/system/burp/README.SBo b/system/burp/README.SBo
index d86b102ddf..6bcdb4472c 100644
--- a/system/burp/README.SBo
+++ b/system/burp/README.SBo
@@ -1,19 +1,19 @@
-To start the burp server run:
+To start the burp server run
-/etc/rc.d/rc.burp start
+ /etc/rc.d/rc.burp start
To start burp automatically on boot up, add these lines to /etc/rc.d/rc.local
-# Start burp
-if [ -x /etc/rc.d/rc.burp ]; then
- /etc/rc.d/rc.burp start
-fi
+ # Start burp
+ if [ -x /etc/rc.d/rc.burp ]; then
+ /etc/rc.d/rc.burp start
+ fi
and the following lines in /etc/rc.d/rc.local_shutdown to stop burp on shutdown
-# Stop burp
-if [ -x /etc/rc.d/rc.burp ]; then
- /etc/rc.d/rc.burp stop
-fi
+ # Stop burp
+ if [ -x /etc/rc.d/rc.burp ]; then
+ /etc/rc.d/rc.burp stop
+ fi
Naturally, ensure that all these scripts have executable permissions.