commit: 6f6750a4a9db5baeb5b324166a56ad63b18a1e1f
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 00:52:58 2016 +0000
Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 00:53:33 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f6750a4
sys-cluster/nova: make init posix again, and a comment to a conf file
Package-Manager: portage-2.3.0
sys-cluster/nova/files/nova-compute.conf | 2 ++
sys-cluster/nova/files/nova.initd | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/sys-cluster/nova/files/nova-compute.conf
b/sys-cluster/nova/files/nova-compute.conf
index b006794..59c7aea 100644
--- a/sys-cluster/nova/files/nova-compute.conf
+++ b/sys-cluster/nova/files/nova-compute.conf
@@ -1,2 +1,4 @@
[DEFAULT]
+# mkisofs_cmd is needed as the default provider for the binary was remvoed as
+# a package from Gentoo.
mkisofs_cmd = /usr/bin/mkisofs
diff --git a/sys-cluster/nova/files/nova.initd
b/sys-cluster/nova/files/nova.initd
index a1ba549..310a65b 100644
--- a/sys-cluster/nova/files/nova.initd
+++ b/sys-cluster/nova/files/nova.initd
@@ -9,7 +9,7 @@ command_background=yes
pidfile=/var/run/nova/${SVCNAME}.pid
required_files=/etc/nova/nova.conf
start_stop_daemon_args="--quiet --user ${NOVA_USER:-nova} --config-file
/etc/nova/nova.conf"
-if [[ "$SVCNAME" == nova-compute ]]; then
+if [ "$SVCNAME" == nova-compute ]; then
required_files="${required_files} /etc/nova/nova-compute.conf"
start_stop_daemon_args="${start_stop_daemon_args} --config-file
/etc/nova/nova-compute.conf"
fi