From e12bf50c734446b4a23f08e8af1dd0185c9be5ad Mon Sep 17 00:00:00 2001 From: Toyam Cox Date: Thu, 26 Jul 2018 00:47:08 -0400 Subject: [PATCH] libvirt: add support for conf file in service Don't need to rebuild it right now. Next time it gets bumped will be soon enough. --- srcpkgs/libvirt/files/libvirtd/run | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/libvirt/files/libvirtd/run b/srcpkgs/libvirt/files/libvirtd/run index 02c3cec88dd..a224135e5ba 100644 --- a/srcpkgs/libvirt/files/libvirtd/run +++ b/srcpkgs/libvirt/files/libvirtd/run @@ -1,3 +1,4 @@ #!/bin/sh sv check dbus >/dev/null || exit 1 -exec libvirtd 2>&1 +[ -f ./conf ] && . ./conf +exec libvirtd $OPTS 2>&1