]> git.proxmox.com Git - pve-cluster.git/blobdiff - data/PVE/pvecm
re-organize source hierachy
[pve-cluster.git] / data / PVE / pvecm
diff --git a/data/PVE/pvecm b/data/PVE/pvecm
deleted file mode 100755 (executable)
index 87bc9f6..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use PVE::INotify;
-use PVE::Cluster;
-use PVE::CLI::pvecm;
-
-my $prepare = sub {
-    my $nodename = PVE::INotify::nodename();
-
-    PVE::Cluster::check_cfs_is_mounted();
-    PVE::Cluster::cfs_update();
-
-    # trigger check that we have resolvable name
-    my $local_ip_address = PVE::Cluster::remote_node_ip($nodename);
-};
-
-PVE::CLI::pvecm->run_cli_handler(prepare => $prepare, no_rpcenv => 1);