summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Thode <prometheanfire@gentoo.org>2014-03-18 17:43:33 +0000
committerMatthew Thode <prometheanfire@gentoo.org>2014-03-18 17:43:33 +0000
commit20a4134ee085c21f7b4cace64eeecfbfa4c144a9 (patch)
tree90d3efa8bc898acf036ad337c99c03e58f19b164 /app-admin
parentDo not install VERSION. (diff)
downloadgentoo-2-20a4134ee085c21f7b4cace64eeecfbfa4c144a9.tar.gz
gentoo-2-20a4134ee085c21f7b4cace64eeecfbfa4c144a9.tar.bz2
gentoo-2-20a4134ee085c21f7b4cace64eeecfbfa4c144a9.zip
fixing --dir to --directory in init script
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/glance/ChangeLog5
-rw-r--r--app-admin/glance/files/glance.initd4
2 files changed, 6 insertions, 3 deletions
diff --git a/app-admin/glance/ChangeLog b/app-admin/glance/ChangeLog
index c90ed61e74d9..f55f659996e3 100644
--- a/app-admin/glance/ChangeLog
+++ b/app-admin/glance/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-admin/glance
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/ChangeLog,v 1.33 2014/03/16 19:27:13 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/ChangeLog,v 1.34 2014/03/18 17:43:33 prometheanfire Exp $
+
+ 18 Mar 2014; Matthew Thode <prometheanfire@gentoo.org> files/glance.initd:
+ fixing --dir to --directory in init script
*glance-2013.2.2-r1 (16 Mar 2014)
diff --git a/app-admin/glance/files/glance.initd b/app-admin/glance/files/glance.initd
index bc4bc0ab41ba..73e97fbd3f75 100644
--- a/app-admin/glance/files/glance.initd
+++ b/app-admin/glance/files/glance.initd
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/files/glance.initd,v 1.5 2014/03/16 19:27:14 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/files/glance.initd,v 1.6 2014/03/18 17:43:33 prometheanfire Exp $
description="Starts ${SVCNAME} service for OpenStack"
@@ -17,6 +17,6 @@ depend() {
}
start_pre() {
- checkpath --dir --owner ${GLANCE_USER:-glance}:${GLANCE_GROUP:-glance} --mode 0664 ${GLANCE_RUN:-/var/run/glance}
+ checkpath --directory --owner ${GLANCE_USER:-glance}:${GLANCE_GROUP:-glance} --mode 0664 ${GLANCE_RUN:-/var/run/glance}
}