]> git.proxmox.com Git - pve-container.git/commitdiff
spelling/typo correction
authorFabian Grünbichler <f.gruenbichler@proxmox.com>
Wed, 16 Mar 2016 14:45:56 +0000 (15:45 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Wed, 16 Mar 2016 15:51:10 +0000 (16:51 +0100)
src/PVE/LXC/Migrate.pm

index 831a80e3714f9060993ee652c8192637c1a37b67..f6d9418d62e1cb7a05424cdde790db5edd82253b 100644 (file)
@@ -35,7 +35,7 @@ sub prepare {
     if (PVE::LXC::check_running($vmid)) {
        die "lxc live migration is currently not implemented\n";
 
-       die "cant migrate running container without --online\n" if !$online;
+       die "can't migrate running container without --online\n" if !$online;
        $running = 1;
     }
 
@@ -107,11 +107,11 @@ sub phase1 {
 
        if (!$scfg->{shared}) {
 
-           $self->log('info', "copy mointpoint '$ms' ($volid) to node ' $self->{node}'");
+           $self->log('info', "copy mountpoint '$ms' ($volid) to node ' $self->{node}'");
            PVE::Storage::storage_migrate($self->{storecfg}, $volid, $self->{nodeip}, $storage);
            push @{$self->{volumes}}, $volid;
        } else {
-           $self->log('info', "mointpoint '$ms' is on shared storage '$storage'");
+           $self->log('info', "mountpoint '$ms' is on shared storage '$storage'");
        }
     });