renamed: PVE/API2/StorageReplication.pm -> PVE/API2/Storage/Replication.pm

This commit is contained in:
Dietmar Maurer
2017-05-05 09:18:14 +02:00
parent 4857e862e3
commit 76c358149a
4 changed files with 5 additions and 5 deletions

View File

@ -3,5 +3,4 @@
.PHONY: install
install:
install -D -m 0644 Disks.pm ${DESTDIR}${PERLDIR}/PVE/API2/Disks.pm
install -D -m 0644 StorageReplication.pm ${DESTDIR}${PERLDIR}/PVE/API2/StorageReplication.pm
make -C Storage install

View File

@ -1,5 +1,5 @@
SOURCES= Content.pm Status.pm Config.pm Scan.pm
SOURCES= Content.pm Status.pm Config.pm Scan.pm Replication.pm
.PHONY: install
install:

View File

@ -1,4 +1,4 @@
package PVE::API2::StorageReplication;
package PVE::API2::Storage::Replication;
use warnings;
use strict;

View File

@ -2,15 +2,16 @@ package PVE::CLI::pvesr;
use strict;
use warnings;
use POSIX qw(strftime);
use PVE::API2::StorageReplication;
use PVE::JSONSchema qw(get_standard_option);
use PVE::INotify;
use PVE::RPCEnvironment;
use PVE::Tools qw(extract_param);
use PVE::SafeSyslog;
use PVE::CLIHandler;
use POSIX qw(strftime);
use PVE::API2::Storage::Replication;
use base qw(PVE::CLIHandler);