summaryrefslogtreecommitdiffstats
path: root/system/burp/README.SBo
diff options
context:
space:
mode:
author Chris Abela2011-11-01 00:25:50 +0100
committer Niels Horn2011-11-05 01:02:25 +0100
commitb843c43a2f9a3e9dabdbbc00fb91c945dcaeb335 (patch)
tree0545f7ed7bef74f0088955226bb30803ff272829 /system/burp/README.SBo
parentc6c1945a5ea18be6c9d3239933976a807d44bead (diff)
downloadslackbuilds-b843c43a2f9a3e9dabdbbc00fb91c945dcaeb335.tar.gz
system/burp: Added (backup and restore program)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'system/burp/README.SBo')
-rw-r--r--system/burp/README.SBo19
1 files changed, 19 insertions, 0 deletions
diff --git a/system/burp/README.SBo b/system/burp/README.SBo
new file mode 100644
index 0000000000..d86b102ddf
--- /dev/null
+++ b/system/burp/README.SBo
@@ -0,0 +1,19 @@
+To start the burp server run:
+
+/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
+
+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
+
+Naturally, ensure that all these scripts have executable permissions.