summaryrefslogtreecommitdiff
path: root/kernels/xen/xen.install
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-11-21 14:35:33 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-11-21 14:35:33 -0300
commit6db0365f800f4d3411cad96b6a5594e723ede007 (patch)
tree9d3184fdd7ebf5336ec0bcdbdd39a68b83d08a9e /kernels/xen/xen.install
parentcdc73ac802a1af7a5e797e2789db591b244787be (diff)
parent7e1e84043f1e7fcc36ab23acc9f9df97f814d819 (diff)
Merge branch 'master' of ssh://gparabola/srv/git/abslibre
Diffstat (limited to 'kernels/xen/xen.install')
-rw-r--r--kernels/xen/xen.install38
1 files changed, 38 insertions, 0 deletions
diff --git a/kernels/xen/xen.install b/kernels/xen/xen.install
new file mode 100644
index 000000000..5664948c7
--- /dev/null
+++ b/kernels/xen/xen.install
@@ -0,0 +1,38 @@
+install_msg() {
+ cat << __EOF__
+===> IMPORTANT NOTICE:
+
+In order to complete the installation, and enable Xen,
+at the very least you must:
+1. Edit your GRUB2 config files as specified at
+ https://wiki.archlinux.org/index.php/Xen#Bootloader_Configuration
+2. Issue the following commands to allow you to create and start VMs:
+ systemctl enable xenstored.service
+ systemctl enable xenconsoled.service
+ systemctl enable xendomains.service
+For more information refer to the Wiki:
+ https://wiki.archlinux.org/index.php/Xen
+__EOF__
+
+}
+
+post_upgrade() {
+ install_msg
+}
+
+pre_remove() {
+ for i in xen{stored,consoled,domains}.service; do
+ systemctl disable $serv
+ systemctl stop $serv
+ done
+}
+
+post_remove() {
+ cat << __EOF__
+===> IMPORTANT NOTICE:
+
+In order to finish removing Xen, you will need to modify
+your bootloader configuration files to load your Linux
+kernel instead of Xen kernel.
+__EOF__
+}