summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthurBorsboom2015-12-26 19:33:12 +0100
committerArthurBorsboom2015-12-26 19:33:12 +0100
commitcb4b25795dc6bf8d5f2d81504956cec8da4181df (patch)
tree45e2a69fff0a59d49df43148d5ecbd3ea861a711
parentc659463a4726ffa24363d487438e7ecc40aab90e (diff)
downloadaur-cb4b25795dc6bf8d5f2d81504956cec8da4181df.tar.gz
Updated post install text to include systemd and not only init-v
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rw-r--r--libvirt.install12
3 files changed, 10 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 458de3ee4d83..b76b4430b980 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = libvirt-git
pkgdesc = API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)
- pkgver = VE.2015.5313.76.gd5a0cf1
+ pkgver = VE.2015.5313.87.g7bf3c13-1
pkgrel = 1
url = http://libvirt.org/
install = libvirt.install
diff --git a/PKGBUILD b/PKGBUILD
index 42945821ffdd..1da46b950404 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
# Contributor: Jonathan Wiersma <archaur at jonw dot org>
pkgname=libvirt-git
-pkgver=VE.2015.5313.76.gd5a0cf1
+pkgver=VE.2015.5313.87.g7bf3c13
pkgrel=1
pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)"
arch=('i686' 'x86_64')
diff --git a/libvirt.install b/libvirt.install
index 32c28d559e2a..2ec693c7ffed 100644
--- a/libvirt.install
+++ b/libvirt.install
@@ -10,12 +10,16 @@ _libvirt_setup() {
post_install() {
_libvirt_setup || return 1
- echo ">>> Be sure to see optdepends as you may find some of them helpfull."
+ echo ">>> Be sure to see optdepends as you may find some of them helpful."
echo ">>> Especially: bridge-utils, dnsmasq, and hal."
echo ""
- echo ">>> To start libvirtd run: '/etc/rc.d/libvirtd start' as root."
- echo ">>> Add 'libvirtd' to daemons in /etc/rc.conf if you want it to load upon"
- echo ">>> booting."
+ echo ">>> To start libvirt as a daemon (service) run"
+ echo " for systemd: 'systemctl start libvirtd'"
+ echo " for initscripts: '/etc/rc.d/libvirtd start'"
+ echo ""
+ echo ">>> To start libvirt as a daemon (service) on boot:"
+ echo " for systemd: 'systemctl enable libvirtd'"
+ echo " for initscripts: Add 'libvirtd' to daemons in /etc/rc.conf"
echo ""
}