summaryrefslogtreecommitdiffstats
path: root/network/openl2tp/README.SLACKWARE
diff options
context:
space:
mode:
author Eugene P2011-10-11 21:48:28 +0200
committer Robby Workman2011-10-11 21:48:28 +0200
commit1b9bd70f42652a76f3ca12e0fcd34e4c1b01084c (patch)
treea650a8cf50957c671715f3eb9efce62b7ea5f525 /network/openl2tp/README.SLACKWARE
parentdbc37fd6f34b1c74994d7b2c25b1d61448c01e2c (diff)
downloadslackbuilds-1b9bd70f42652a76f3ca12e0fcd34e4c1b01084c.tar.gz
network/openl2tp: Added (Layer Two Tunneling Protocol Version 2)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/openl2tp/README.SLACKWARE')
-rw-r--r--network/openl2tp/README.SLACKWARE24
1 files changed, 24 insertions, 0 deletions
diff --git a/network/openl2tp/README.SLACKWARE b/network/openl2tp/README.SLACKWARE
new file mode 100644
index 0000000000..204e78ad81
--- /dev/null
+++ b/network/openl2tp/README.SLACKWARE
@@ -0,0 +1,24 @@
+To start openl2tpd at boot, you will need to add the following
+lines to /etc/rc.d/rc.local:
+
+ if [ -x /etc/rc.d/rc.openl2tpd ]; then
+ /etc/rc.d/rc.openl2tpd start
+ fi
+
+Then add the following lines to /etc/rc.d/rc.local_shutdown:
+
+ if [ -x /etc/rc.d/rc.openl2tpd ]; then
+ /etc/rc.d/rc.openl2tpd stop
+ fi
+
+Then make sure /etc/rc.d/rc.rpc is executable:
+ # chmod 0755 /etc/rc.d/rc.rpc
+
+##############################################################
+
+If you want to start it without a reboot, first follow the
+above directions, and then do this:
+
+ # /etc/rc.d/rc.rpc start
+ # /etc/rc.d/rc.openl2tpd start
+