All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix keyring generation for mds and osd
@ 2012-08-16 10:56 Danny Kukawka
  2012-08-16 16:25 ` Sage Weil
  0 siblings, 1 reply; 3+ messages in thread
From: Danny Kukawka @ 2012-08-16 10:56 UTC (permalink / raw)
  To: ceph-devel; +Cc: Danny Kukawka

Fix config keys for OSD/MDS data dirs. As in documentation and other
places of the scripts the keys are 'osd data'/'mds data' and not
'osd_data'

In case if MDS: if 'mds data' doesn't exist, create it.

Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>
---
 src/mkcephfs.in |    5 +++--
 1 Datei geändert, 3 Zeilen hinzugefügt(+), 2 Zeilen entfernt(-)

diff --git a/src/mkcephfs.in b/src/mkcephfs.in
index 402c870..7ab6664 100644
--- a/src/mkcephfs.in
+++ b/src/mkcephfs.in
@@ -251,14 +251,15 @@ if [ -n "$initdaemon" ]; then
     if [ $type = "osd" ]; then
 	$BINDIR/ceph-osd -c $conf --monmap $dir/monmap -i $id --mkfs --mkkey
 
-	get_conf osd_data "/var/lib/ceph/osd/ceph-$id" "osd_data"
+	get_conf osd_data "/var/lib/ceph/osd/ceph-$id" "osd data"
 	get_conf osd_keyring "$osd_data/keyring" "keyring"
 	$BINDIR/ceph-authtool -p -n $name $osd_keyring > $dir/key.$name
     fi
     
     if [ $type = "mds" ]; then
-	get_conf mds_data "/var/lib/ceph/mds/ceph-$id" "mds_data"
+	get_conf mds_data "/var/lib/ceph/mds/ceph-$id" "mds data"
 	get_conf mds_keyring "$mds_data/keyring" "keyring"
+	test -d $mds_data || mkdir -p $mds_data
 	echo "creating private key for $name keyring $mds_keyring"
 	$BINDIR/ceph-authtool --create-keyring --gen-key -n $name $mds_keyring
 	$BINDIR/ceph-authtool -p -n $name $mds_keyring > $dir/key.$name
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] fix keyring generation for mds and osd
  2012-08-16 10:56 [PATCH] fix keyring generation for mds and osd Danny Kukawka
@ 2012-08-16 16:25 ` Sage Weil
  2012-08-16 17:51   ` Danny Kukawka
  0 siblings, 1 reply; 3+ messages in thread
From: Sage Weil @ 2012-08-16 16:25 UTC (permalink / raw)
  To: Danny Kukawka; +Cc: ceph-devel, Danny Kukawka

Hi Danny,

I've applied both of these.  Thanks!

sage

On Thu, 16 Aug 2012, Danny Kukawka wrote:

> Fix config keys for OSD/MDS data dirs. As in documentation and other
> places of the scripts the keys are 'osd data'/'mds data' and not
> 'osd_data'
> 
> In case if MDS: if 'mds data' doesn't exist, create it.
> 
> Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>
> ---
>  src/mkcephfs.in |    5 +++--
>  1 Datei ge?ndert, 3 Zeilen hinzugef?gt(+), 2 Zeilen entfernt(-)
> 
> diff --git a/src/mkcephfs.in b/src/mkcephfs.in
> index 402c870..7ab6664 100644
> --- a/src/mkcephfs.in
> +++ b/src/mkcephfs.in
> @@ -251,14 +251,15 @@ if [ -n "$initdaemon" ]; then
>      if [ $type = "osd" ]; then
>  	$BINDIR/ceph-osd -c $conf --monmap $dir/monmap -i $id --mkfs --mkkey
>  
> -	get_conf osd_data "/var/lib/ceph/osd/ceph-$id" "osd_data"
> +	get_conf osd_data "/var/lib/ceph/osd/ceph-$id" "osd data"
>  	get_conf osd_keyring "$osd_data/keyring" "keyring"
>  	$BINDIR/ceph-authtool -p -n $name $osd_keyring > $dir/key.$name
>      fi
>      
>      if [ $type = "mds" ]; then
> -	get_conf mds_data "/var/lib/ceph/mds/ceph-$id" "mds_data"
> +	get_conf mds_data "/var/lib/ceph/mds/ceph-$id" "mds data"
>  	get_conf mds_keyring "$mds_data/keyring" "keyring"
> +	test -d $mds_data || mkdir -p $mds_data
>  	echo "creating private key for $name keyring $mds_keyring"
>  	$BINDIR/ceph-authtool --create-keyring --gen-key -n $name $mds_keyring
>  	$BINDIR/ceph-authtool -p -n $name $mds_keyring > $dir/key.$name
> -- 
> 1.7.10.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] fix keyring generation for mds and osd
  2012-08-16 16:25 ` Sage Weil
@ 2012-08-16 17:51   ` Danny Kukawka
  0 siblings, 0 replies; 3+ messages in thread
From: Danny Kukawka @ 2012-08-16 17:51 UTC (permalink / raw)
  To: Sage Weil; +Cc: ceph-devel, Danny Kukawka

[-- Attachment #1: Type: text/plain, Size: 206 bytes --]

Hi Sage,

could you please cherry-pick them also to stable(-next)?

Thanks!

Danny

Am 16.08.2012 18:25, schrieb Sage Weil:
> Hi Danny,
> 
> I've applied both of these.  Thanks!
> 
> sage



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 316 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-08-16 17:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-16 10:56 [PATCH] fix keyring generation for mds and osd Danny Kukawka
2012-08-16 16:25 ` Sage Weil
2012-08-16 17:51   ` Danny Kukawka

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.