mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
602d2eb9ee
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
31 lines
898 B
Text
31 lines
898 B
Text
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 [[ $(uname -r) = *xen ]]; then
|
|
if [ -x /etc/rc.d/rc.xend ]; then
|
|
/etc/rc.d/rc.xend start
|
|
fi
|
|
if [ -x /etc/rc.d/rc.xendomains ]; then
|
|
/etc/rc.d/rc.xendomains start
|
|
fi
|
|
fi
|
|
|
|
You may also add these lines to /etc/rc.d/rc.local_shutdown
|
|
|
|
if [[ $(uname -r) = *xen ]]; then
|
|
if [ -x /etc/rc.d/rc.xendomains ]; then
|
|
/etc/rc.d/rc.xendomains stop
|
|
fi
|
|
if [ -x /etc/rc.d/rc.xend ]; then
|
|
/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
|
|
|