]> git.proxmox.com Git - pve-client.git/commitdiff
Use a different path for the lock file
authorRené Jochum <r.jochum@proxmox.com>
Tue, 19 Jun 2018 14:59:54 +0000 (16:59 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Wed, 20 Jun 2018 04:42:49 +0000 (06:42 +0200)
This prevents lock_file from creating the config file with wrong permissions.

PVE/APIClient/Config.pm

index a4aa4c6ec8697563cd6875310f28d9e401364115..a783ab3870a4f01bdd9fe85988c40c50e3427173 100644 (file)
@@ -67,7 +67,10 @@ sub config_filename {
 sub lock_config {
     my ($class, $timeout, $code, @param) = @_;
 
 sub lock_config {
     my ($class, $timeout, $code, @param) = @_;
 
-    my $filename = $class->config_filename();
+    my $dir = PVE::APIClient::Helpers::configuration_directory();
+    make_path($dir);
+
+    my $filename = "$dir/.config.lck";
 
     my $res = PVE::APIClient::Tools::lock_file($filename, $timeout, $code, @param);
 
 
     my $res = PVE::APIClient::Tools::lock_file($filename, $timeout, $code, @param);