]> git.proxmox.com Git - pve-container.git/commitdiff
remove 'noload' option from zfspool mounts
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Thu, 1 Oct 2015 11:12:57 +0000 (13:12 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 1 Oct 2015 14:27:23 +0000 (16:27 +0200)
This should have only been added to raw files in the first
place.

Fixes #742.

src/PVE/LXC.pm

index c0c7ff226e3e17662535d494bbeb9e181f5eb7c5..c7ac69bf351062802df61cf7792a36d3e9394ae2 100644 (file)
@@ -2128,7 +2128,7 @@ sub mountpoint_mount {
                    if ($scfg->{type} eq 'zfspool') {
                        my $path_arg = $path;
                        $path_arg =~ s!^/+!!;
-                       PVE::Tools::run_command(['mount', '-o', 'ro,noload', '-t', 'zfs', $path_arg, $mount_path]);
+                       PVE::Tools::run_command(['mount', '-o', 'ro', '-t', 'zfs', $path_arg, $mount_path]);
                    } else {
                        die "cannot mount subvol snapshots for storage type '$scfg->{type}'\n";
                    }