aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt
diff options
context:
space:
mode:
authorJuraj Lutter <otis@FreeBSD.org>2022-07-31 21:07:03 +0000
committerJuraj Lutter <otis@FreeBSD.org>2022-07-31 21:07:03 +0000
commit06516583f2bfe2b2fed25d37c5040c100a0efcde (patch)
tree4fa38e3812f452efa4322838bc8651d4f969b737 /net-mgmt
parentf9711a59ffd87f7f283df30ec2e2bafb33a667bc (diff)
downloadports-06516583f2bfe2b2fed25d37c5040c100a0efcde.tar.gz
ports-06516583f2bfe2b2fed25d37c5040c100a0efcde.zip
net-mgmt/unifi7: Remove erroneously added file
Remove erroneously added WIP file
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/unifi7/files/pkg-post-install.lua.in23
1 files changed, 0 insertions, 23 deletions
diff --git a/net-mgmt/unifi7/files/pkg-post-install.lua.in b/net-mgmt/unifi7/files/pkg-post-install.lua.in
deleted file mode 100644
index 8e62f488ea14..000000000000
--- a/net-mgmt/unifi7/files/pkg-post-install.lua.in
+++ /dev/null
@@ -1,23 +0,0 @@
---[[ net-mgmt/unifi7 post-install script --]]
-local lfs = require "posix"
-
---[[ Directory substitution table --]]
-local dstable = {}
-dstable["/usr/local/share/java/unifi/data"] = "/var/db/unifi/data"
-dstable["/usr/local/share/java/unifi/dl"] = "/var/db/unifi/dl"
-dstable["/usr/local/share/java/unifi/logs"] = "/var/log/unifi"
-dstable["/usr/local/share/java/unifi/run"] = "/var/run/unifi"
-dstable["/usr/local/share/java/unifi/work2"] = "/var/run/unifi"
-
---[[ Do we have any legacy dirs that need to be migrated? --]]
-needmig = 0
-
-for dold, dnew in pairs(dstable) do
- st = lfs.stat(dold)
- if (st ~= nil) then
- print("===> " .. dold)
- for k,v in pairs(st) do
- print("key " .. k .. " value " .. v)
- end
- end
-end