summaryrefslogtreecommitdiffstats
path: root/system/xen/README.SLACKWARE
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2012-10-02 11:22:08 -0500
committer Robby Workman <rworkman@slackbuilds.org>2012-10-02 11:22:08 -0500
commitd18acd56d2c04d6b6535777e1aaedbebc35717b9 (patch)
tree3af700399955e0f8b3cf08a61dccf8c8a4b427ac /system/xen/README.SLACKWARE
parent933912fdc1389b576bfea75ad84410eec3342ac1 (diff)
downloadslackbuilds-d18acd56d2c04d6b6535777e1aaedbebc35717b9.tar.gz
slackbuilds-d18acd56d2c04d6b6535777e1aaedbebc35717b9.tar.xz
system/xen: Removed (not ready for 14.0 yet - see xen branch)
This will be ready soon, so says mario :-) Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/xen/README.SLACKWARE')
-rw-r--r--system/xen/README.SLACKWARE38
1 files changed, 0 insertions, 38 deletions
diff --git a/system/xen/README.SLACKWARE b/system/xen/README.SLACKWARE
deleted file mode 100644
index 8d3ac3c1bd..0000000000
--- a/system/xen/README.SLACKWARE
+++ /dev/null
@@ -1,38 +0,0 @@
-After installing this package, in addition to the /usr/doc/xen-*/README file;
-the Xen User Manual is installed as /usr/doc/xen-*/pdf/user.pdf.
-
-Before Xen can be used, xenstored, xenconsoled and xenbackendd services must
-be started, wich must be done with rc.xencommons script.
-The rc.xend script is no longer needed if you are going to use 'xl' instead
-of 'xm'. As a matter of fact, 'xm' is marked as supported but deprecated in
-Xen 4.1. Future versions of Xen will no longer support 'xm'.
-You may wish to add these lines to /etc/rc.d/rc.local to start this service
-after booting from your Xen kernel:
-
- if [ -d /proc/xen ]; then
- if [ -x /etc/rc.d/rc.xencommons ]; then
- echo "Starting XEN commons: /etc/rc.d/rc.xencommons"
- /etc/rc.d/rc.xencommons start
- fi
- if [ -x /etc/rc.d/rc.xendomains ]; then
- echo "Starting XEN domains: /etc/rc.d/rc.xendomains"
- /etc/rc.d/rc.xendomains start
- fi
- fi
-
-You may also add these lines to /etc/rc.d/rc.local_shutdown:
-
- if [ -d /proc/xen ]; then
- if [ -x /etc/rc.d/rc.xendomains ]; then
- echo "Stopping XEN domains: /etc/rc.d/rc.xendomains"
- /etc/rc.d/rc.xendomains stop
- fi
- if [ -x /etc/rc.d/rc.xencommons ]; then
- echo "Stopping XEN commons: /etc/rc.d/rc.xencommons"
- /etc/rc.d/rc.xencommons stop
- fi
- fi
-
-Remember to give executable permission to /etc/rc.d/rc.local_shutdown:
-
- chmod 0755 /etc/rc.d/rc.local_shutdown