]> git.proxmox.com Git - pve-cluster.git/commitdiff
remove now unused old corosync ringX_addr formats
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 28 May 2019 16:14:47 +0000 (18:14 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 13 Jun 2019 09:16:53 +0000 (11:16 +0200)
no users of this anymore, so drop it.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
data/PVE/API2/ClusterConfig.pm

index 5db26349bd3b1c534cc689bd8bcd59986bd1eb3d..828360d81f6742b69204d0656c76aee88e13ca4c 100644 (file)
@@ -18,22 +18,6 @@ my $clusterconf = "/etc/pve/corosync.conf";
 my $authfile = "/etc/corosync/authkey";
 my $local_cluster_lock = "/var/lock/pvecm.lock";
 
-my $ring0_desc = {
-    type => 'string', format => 'address',
-    description => "Hostname (or IP) of the corosync ring0 address of this node.",
-    default => "Hostname of the node",
-    optional => 1,
-};
-PVE::JSONSchema::register_standard_option("corosync-ring0-addr", $ring0_desc);
-
-my $ring1_desc = {
-    type => 'string', format => 'address',
-    description => "Hostname (or IP) of the corosync ring1 address of this node.".
-       " Requires a valid configured ring 1 (bindnet1_addr) in the cluster.",
-    optional => 1,
-};
-PVE::JSONSchema::register_standard_option("corosync-ring1-addr", $ring1_desc);
-
 my $nodeid_desc = {
     type => 'integer',
     description => "Node id for this node.",