feat: build input features

This commit is contained in:
zhangsz
2025-03-05 11:13:37 +08:00
parent 7486287e84
commit 1e2b480395
129 changed files with 5044 additions and 0 deletions

13
pkg/scp/DEBIAN/postinst Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
test ! -f /usr/local/scp/bin/conf/wxc2_sys.conf && cp -rf /usr/local/scp/bin/conf/default/* /usr/local/scp/bin/conf
subDir="/usr/local/subsManage"
if [ ! -d "$subDir" ]; then
mkdir $subDir
chmod 777 $subDir
fi
systemctl enable scp
exit 0