summaryrefslogtreecommitdiff
path: root/pcr/openrc-misc/libvirt.install
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-08-28 19:50:17 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2015-08-28 19:50:17 -0500
commitaf1251a8beb4a660477ee41ab9341fb6330ce8a8 (patch)
tree4a3e251f23682ba0ecefd4c74e1c9fede006bad8 /pcr/openrc-misc/libvirt.install
parent60446868d097bddd30a600d6f02c18e1eac1fc18 (diff)
openrc-misc-20150828-1: updating version
Diffstat (limited to 'pcr/openrc-misc/libvirt.install')
-rw-r--r--pcr/openrc-misc/libvirt.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/pcr/openrc-misc/libvirt.install b/pcr/openrc-misc/libvirt.install
new file mode 100644
index 000000000..2b58e0e07
--- /dev/null
+++ b/pcr/openrc-misc/libvirt.install
@@ -0,0 +1,16 @@
+_svc="libvirtd"
+_rlvl="default"
+
+post_install() {
+ _cmd="rc-update add ${_svc} ${_rlvl}"
+ echo " ==> run '${_cmd}'"
+}
+
+post_upgrade() {
+ post_install "$1"
+}
+
+post_remove() {
+ _cmd="rc-update del ${_svc} ${_rlvl}"
+ echo " ==> run '${_cmd}'"
+}