diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-05-27 07:22:43 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-05-27 07:22:43 +0000 |
commit | ecfeef97a4fd3bbe05934741e72b33ed0f9f878b (patch) | |
tree | 4397a38617cd65aae7ff19c80b1aaabe03f74adc /net-nds/openldap/files | |
parent | Whitespace. (diff) | |
download | gentoo-2-ecfeef97a4fd3bbe05934741e72b33ed0f9f878b.tar.gz gentoo-2-ecfeef97a4fd3bbe05934741e72b33ed0f9f878b.tar.bz2 gentoo-2-ecfeef97a4fd3bbe05934741e72b33ed0f9f878b.zip |
Bug #417673: fix typo in checkpath call.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'net-nds/openldap/files')
-rw-r--r-- | net-nds/openldap/files/slapd-initd-2.4.28-r1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-nds/openldap/files/slapd-initd-2.4.28-r1 b/net-nds/openldap/files/slapd-initd-2.4.28-r1 index 01e9d90c4737..48946d6ef301 100644 --- a/net-nds/openldap/files/slapd-initd-2.4.28-r1 +++ b/net-nds/openldap/files/slapd-initd-2.4.28-r1 @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/openldap/files/slapd-initd-2.4.28-r1,v 1.3 2012/05/25 22:21:46 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/openldap/files/slapd-initd-2.4.28-r1,v 1.4 2012/05/27 07:22:43 robbat2 Exp $ extra_commands="checkconfig" @@ -14,7 +14,7 @@ depend() { } start() { - checkpath -q -d /var/run/openldap/ -u ldap:ldap + checkpath -q -d /var/run/openldap/ -o ldap:ldap if ! checkconfig -Q ; then eerror "There is a problem with your slapd.conf!" return 1 |