summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Thode <prometheanfire@gentoo.org>2020-05-02 13:38:03 -0500
committerMatthew Thode <prometheanfire@gentoo.org>2020-05-02 13:38:13 -0500
commit72006cc0e7cfcb3fb0d9f0df1e825beb97948b32 (patch)
tree6cb09ebae9a3405cfd4961dc7701022df1385626 /sys-cluster/nova
parentprofiles/package.mask: add zake for removal bug #718996 (diff)
downloadgentoo-72006cc0e7cfcb3fb0d9f0df1e825beb97948b32.tar.gz
gentoo-72006cc0e7cfcb3fb0d9f0df1e825beb97948b32.tar.bz2
gentoo-72006cc0e7cfcb3fb0d9f0df1e825beb97948b32.zip
sys-cluster/nova: fix init
Closes: https://bugs.gentoo.org/720334 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'sys-cluster/nova')
-rw-r--r--sys-cluster/nova/files/nova.initd6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-cluster/nova/files/nova.initd b/sys-cluster/nova/files/nova.initd
index ba722949182e..563c3a546b5f 100644
--- a/sys-cluster/nova/files/nova.initd
+++ b/sys-cluster/nova/files/nova.initd
@@ -1,5 +1,5 @@
#!/sbin/openrc-run
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Starts ${SVCNAME} service for OpenStack"
@@ -9,7 +9,7 @@ command_args="--config-file /etc/nova/nova.conf"
pidfile=/run/${SVCNAME}.pid
command_background=true
required_files=/etc/nova/nova.conf
-if [ "$SVCNAME" == nova-compute ]; then
+if [ "$SVCNAME" = nova-compute ]; then
required_files="${required_files} /etc/nova/nova-compute.conf"
command_args="${command_args} --config-file /etc/nova/nova-compute.conf"
fi
@@ -21,5 +21,5 @@ depend() {
}
start_pre() {
- checkpath --directory --owner ${NOVA_USER:-nova}:${NOVA_GROUP:-nova} --mode 0775 ${NOVA_RUN:-/var/lock/nova}
+ checkpath --directory --owner "${NOVA_USER:-nova}":"${NOVA_GROUP:-nova}" --mode 0775 "${NOVA_RUN:-/var/lock/nova}"
}