diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-04-01 12:59:29 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-04-03 09:59:46 -0500 |
commit | 45f4ef13359d81a3440a7cf5a3dccc5484947bb9 (patch) | |
tree | ab67e4245789c97de5aa9422a8bb90710ff5095e /system/xen/README.SLACKWARE | |
parent | 7558578e5bd3b315abdbf55ffb31a7dec89a0bca (diff) | |
download | slackbuilds-45f4ef13359d81a3440a7cf5a3dccc5484947bb9.tar.gz |
system/xen: Removed (needs update)
This will be updated by the maintainer after 13.37 releases,
but he's not done with the needed changes yet...
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/xen/README.SLACKWARE')
-rw-r--r-- | system/xen/README.SLACKWARE | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/system/xen/README.SLACKWARE b/system/xen/README.SLACKWARE deleted file mode 100644 index 2335ee4a88..0000000000 --- a/system/xen/README.SLACKWARE +++ /dev/null @@ -1,35 +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. - -The rc.xend service must be started before Xen can be used. -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.xend ]; then - echo "Starting XEN daemon: /etc/rc.d/rc.xend" - /etc/rc.d/rc.xend 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.xend ]; then - echo "Stopping XEN daemon: /etc/rc.d/rc.xend" - /etc/rc.d/rc.xend stop - fi - fi - -Remember to give executable permission to /etc/rc.d/rc.local_shutdown: - - chmod 0755 /etc/rc.d/rc.local_shutdown - |