Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/nova/files/
Date: Tue, 29 Nov 2016 00:54:07
Message-Id: 1480380813.6f6750a4a9db5baeb5b324166a56ad63b18a1e1f.prometheanfire@gentoo
1 commit: 6f6750a4a9db5baeb5b324166a56ad63b18a1e1f
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 00:52:58 2016 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 00:53:33 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f6750a4
7
8 sys-cluster/nova: make init posix again, and a comment to a conf file
9
10 Package-Manager: portage-2.3.0
11
12 sys-cluster/nova/files/nova-compute.conf | 2 ++
13 sys-cluster/nova/files/nova.initd | 2 +-
14 2 files changed, 3 insertions(+), 1 deletion(-)
15
16 diff --git a/sys-cluster/nova/files/nova-compute.conf b/sys-cluster/nova/files/nova-compute.conf
17 index b006794..59c7aea 100644
18 --- a/sys-cluster/nova/files/nova-compute.conf
19 +++ b/sys-cluster/nova/files/nova-compute.conf
20 @@ -1,2 +1,4 @@
21 [DEFAULT]
22 +# mkisofs_cmd is needed as the default provider for the binary was remvoed as
23 +# a package from Gentoo.
24 mkisofs_cmd = /usr/bin/mkisofs
25
26 diff --git a/sys-cluster/nova/files/nova.initd b/sys-cluster/nova/files/nova.initd
27 index a1ba549..310a65b 100644
28 --- a/sys-cluster/nova/files/nova.initd
29 +++ b/sys-cluster/nova/files/nova.initd
30 @@ -9,7 +9,7 @@ command_background=yes
31 pidfile=/var/run/nova/${SVCNAME}.pid
32 required_files=/etc/nova/nova.conf
33 start_stop_daemon_args="--quiet --user ${NOVA_USER:-nova} --config-file /etc/nova/nova.conf"
34 -if [[ "$SVCNAME" == nova-compute ]]; then
35 +if [ "$SVCNAME" == nova-compute ]; then
36 required_files="${required_files} /etc/nova/nova-compute.conf"
37 start_stop_daemon_args="${start_stop_daemon_args} --config-file /etc/nova/nova-compute.conf"
38 fi