]> git.proxmox.com Git - pve-manager.git/commitdiff
Fix: typo in ckeyring_path
authorAlwin Antreich <a.antreich@proxmox.com>
Wed, 10 Jul 2019 13:35:08 +0000 (15:35 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 10 Jul 2019 13:41:20 +0000 (15:41 +0200)
pveceph init failed, as the copy used a wrong path with typo as
target and then the chown tried to operate on the correct keyring
path, which was then non-existing.

Signed-off-by: Alwin Antreich <a.antreich@proxmox.com>
PVE/Ceph/Tools.pm

index f8ec43021e438d672c18e8f0db0e8754511080ab..d6d21ff2f1134f644423fae2952d358102e68d1b 100644 (file)
@@ -19,7 +19,7 @@ my $ceph_cfgpath = "$ceph_cfgdir/$ccname.conf";
 
 my $pve_mon_key_path = "/etc/pve/priv/$ccname.mon.keyring";
 my $pve_ckeyring_path = "/etc/pve/priv/$ccname.client.admin.keyring";
-my $ckeyring_path = "/etc/ceph/ceph.client.admin.keyrign";
+my $ckeyring_path = "/etc/ceph/ceph.client.admin.keyring";
 my $ceph_bootstrap_osd_keyring = "/var/lib/ceph/bootstrap-osd/$ccname.keyring";
 my $ceph_bootstrap_mds_keyring = "/var/lib/ceph/bootstrap-mds/$ccname.keyring";
 my $ceph_mds_data_dir = '/var/lib/ceph/mds';