]> git.proxmox.com Git - pve-cluster.git/commitdiff
removed unused script gen-datacenter-pod.pl
authorDietmar Maurer <dietmar@proxmox.com>
Thu, 3 Nov 2016 07:48:31 +0000 (08:48 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 3 Nov 2016 07:48:31 +0000 (08:48 +0100)
data/PVE/gen-datacenter-pod.pl [deleted file]

diff --git a/data/PVE/gen-datacenter-pod.pl b/data/PVE/gen-datacenter-pod.pl
deleted file mode 100755 (executable)
index 407ae2c..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/perl
-
-package main;
-
-use strict;
-use warnings;
-use PVE::Tools;
-use PVE::Cluster;
-use PVE::PodParser;
-
-my $schema = PVE::Cluster::get_datacenter_schema();
-
-my $format = PVE::PodParser::dump_properties($schema->{properties});
-
-my $parser = PVE::PodParser->new();
-$parser->{include}->{format} = $format;
-$parser->parse_from_file($0);
-
-exit 0;
-
-__END__
-
-=head1 NAME
-
-datacenter.cfg - Proxmox VE datacenter configuration file
-
-=head1 SYNOPSYS
-
-The /etc/pve/datacenter.cfg file is a configuration file for Proxmox
-VE. It contains cluster wide default values used by all nodes.
-
-=head1 FILE FORMAT
-
-The file uses a simple colon separated key/value format. Each line has
-the following format:
-
- OPTION: value
-
-Blank lines in the file are ignored, and lines starting with a C<#>
-character are treated as comments and are also ignored.
-
-=head1 OPTIONS
-
-=include format
-
-=include pve_copyright