SlackBuildsOrg/system/burp/README.SBo
Chris Abela b843c43a2f system/burp: Added (backup and restore program)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
2011-11-04 22:02:25 -02:00

19 lines
438 B
Text

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.