From 76c358149af475c6ce941f9178a66db9720588d7 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Fri, 5 May 2017 09:18:14 +0200 Subject: [PATCH] renamed: PVE/API2/StorageReplication.pm -> PVE/API2/Storage/Replication.pm --- PVE/API2/Makefile | 1 - PVE/API2/Storage/Makefile | 2 +- PVE/API2/{StorageReplication.pm => Storage/Replication.pm} | 2 +- PVE/CLI/pvesr.pm | 5 +++-- 4 files changed, 5 insertions(+), 5 deletions(-) rename PVE/API2/{StorageReplication.pm => Storage/Replication.pm} (96%) diff --git a/PVE/API2/Makefile b/PVE/API2/Makefile index 621221d..7b7226e 100644 --- a/PVE/API2/Makefile +++ b/PVE/API2/Makefile @@ -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 diff --git a/PVE/API2/Storage/Makefile b/PVE/API2/Storage/Makefile index b23c17c..2b91bb0 100644 --- a/PVE/API2/Storage/Makefile +++ b/PVE/API2/Storage/Makefile @@ -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: diff --git a/PVE/API2/StorageReplication.pm b/PVE/API2/Storage/Replication.pm similarity index 96% rename from PVE/API2/StorageReplication.pm rename to PVE/API2/Storage/Replication.pm index d229197..f15205c 100644 --- a/PVE/API2/StorageReplication.pm +++ b/PVE/API2/Storage/Replication.pm @@ -1,4 +1,4 @@ -package PVE::API2::StorageReplication; +package PVE::API2::Storage::Replication; use warnings; use strict; diff --git a/PVE/CLI/pvesr.pm b/PVE/CLI/pvesr.pm index 6f3712c..59321e2 100644 --- a/PVE/CLI/pvesr.pm +++ b/PVE/CLI/pvesr.pm @@ -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); -- 2.39.2