]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/Tools.pm
Output also lockname if it cannot be acquired
[pve-common.git] / src / PVE / Tools.pm
index ae06c12b224b873dc7a27d5965078f54a8d9a851..64a57e9596dcbdcc15dff98d38161be38cbdf91e 100644 (file)
@@ -131,7 +131,7 @@ sub lock_file_full {
         }
 
         if (!flock ($lock_handles->{$$}->{$filename}, $mode|LOCK_NB)) {
-            print STDERR "trying to aquire lock...";
+            print STDERR "trying to acquire lock...";
            my $success;
            while(1) {
                $success = flock($lock_handles->{$$}->{$filename}, $mode);
@@ -142,7 +142,7 @@ sub lock_file_full {
            }
             if (!$success) {
                 print STDERR " failed\n";
-                die "can't aquire lock - $!\n";
+                die "can't acquire lock '$filename' - $!\n";
             }
             print STDERR " OK\n";
         }