diff options
author | Mario Preksavec <mario at slackware dot hr> | 2015-03-16 01:53:28 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-03-16 01:53:28 +0700 |
commit | 893b9070a8ea5be365e6cf3ba4af7b337af0027d (patch) | |
tree | a02d4a1d58635c495609bf33054d5ce62e470404 /network/openvswitch-utils/README.SLACKWARE | |
parent | e9ad9ab3c9551bb067d2a3955468699bc467f65d (diff) | |
download | slackbuilds-893b9070a8ea5be365e6cf3ba4af7b337af0027d.tar.gz |
network/openvswitch-utils: Added (a multilayer software switch).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/openvswitch-utils/README.SLACKWARE')
-rw-r--r-- | network/openvswitch-utils/README.SLACKWARE | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/network/openvswitch-utils/README.SLACKWARE b/network/openvswitch-utils/README.SLACKWARE new file mode 100644 index 0000000000..d8072e695c --- /dev/null +++ b/network/openvswitch-utils/README.SLACKWARE @@ -0,0 +1,27 @@ +You may wish to add these lines to /etc/rc.d/rc.local to start the service: + +if [ -x /etc/rc.d/rc.openvswitch ]; then + /etc/rc.d/rc.openvswitch start +fi + +Run Control script can also initialize the database: + + /etc/rc.d/rc.openvswitch clean-database + +One shot start with a clean initialized database can be performed with: + + /etc/rc.d/rc.openvswitch start-clean + +And if you want to stop, clean the database, and start again: + + /etc/rc.d/rc.openvswitch restart-clean + +You may also add these lines to /etc/rc.d/rc.local_shutdown: + +if [ -x /etc/rc.d/rc.openvswitch ]; then + /etc/rc.d/rc.openvswitch stop +fi + +Remember to give executable permission to /etc/rc.d/rc.local_shutdown: + + chmod 0755 /etc/rc.d/rc.local_shutdown |