]> git.proxmox.com Git - pve-cluster.git/blobdiff - data/PVE/Cluster/IPCConst.pm.awk
re-organize source hierachy
[pve-cluster.git] / data / PVE / Cluster / IPCConst.pm.awk
diff --git a/data/PVE/Cluster/IPCConst.pm.awk b/data/PVE/Cluster/IPCConst.pm.awk
deleted file mode 100644 (file)
index 3c622ec..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-BEGIN {
-    print "package PVE::Cluster::IPCConst;"
-    print "use strict; use warnings;"
-    print
-    print "use base 'Exporter';"
-    print
-    print "my %IPC_OPS;"
-    print "BEGIN {"
-    print "  %IPC_OPS = ("
-}
-
-/^#define CFS_IPC/ {
-    print "    " $2, "=>", $3 ","
-}
-
-END {
-    print "  );"
-    print "}"
-    print "use constant \\%IPC_OPS;"
-    print "our @EXPORT = keys(%IPC_OPS);"
-}