renamed: PVE/API2/StorageReplication.pm -> PVE/API2/Storage/Replication.pm
This commit is contained in:
@ -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
|
||||
|
||||
@ -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:
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package PVE::API2::StorageReplication;
|
||||
package PVE::API2::Storage::Replication;
|
||||
|
||||
use warnings;
|
||||
use strict;
|
||||
@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user