-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstall.sh
76 lines (70 loc) · 2.96 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/sh
# ITNOA
#-- install script for BSN.IpTables.Api
#-- https://github.com/BSVN/IpTables.Api
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo " ██████╗░███████╗░██████╗░█████╗░"
echo " █╔══███╗██╔════╝██╔════╝██╔══██╗"
echo " ██████╔╝█████╗░░╚█████╗░███████║"
echo " ██╔══██╗██╔══╝░░░╚═══██╗██╔══██║"
echo " ██║░░██║███████╗██████╔╝██║░░██║"
echo " ╚═╝░░╚═╝╚══════╝╚═════╝░╚═╝░░╚═╝"
echo ""
echo ""
echo ""
echo " need support? https://resaa.net"
echo ""
echo " Copyright (C) 2023 The Resa, Co. (resaa.net)"
echo ""
echo " MIT License"
echo ""
echo " Copyright (c) 2023 Green and Silver Leaves, Co."
echo ""
echo " Permission is hereby granted, free of charge, to any person obtaining a copy"
echo " of this software and associated documentation files (the "BSN.IpTables.Api"), to deal"
echo " in the Software without restriction, including without limitation the rights"
echo " to use, copy, modify, merge, publish, distribute, sublicense, and/or sell"
echo " copies of the Software, and to permit persons to whom the Software is"
echo " furnished to do so, subject to the following conditions:"
echo ""
echo " The above copyright notice and this permission notice shall be included in all"
echo " copies or substantial portions of the Software."
echo ""
echo " THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR"
echo " IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,"
echo " FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE"
echo " AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER"
echo " LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,"
echo " OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE"
echo " SOFTWARE."
echo ""
#-- download iptables
echo ""
echo " -> git clone BSN.IpTables.Api from https://github.com/BSVN/IpTables.Api"
mkdir -p /usr/local/src/bsn-iptables-api
cd /usr/local/src/bsn-iptables-api
git clone https://github.com/BSVN/IpTables.Api.git &>/dev/null
if [ "$?" -eq "0" ]
then
echo " -o downloaded"
else
echo " -x download FAILED!!"
exit 1
fi
#-- build project
chmod +x build.sh
./build.sh --configuration=Release
chmod +x Source/BSN.IpTables.Api/bin/Release/net6.0/BSN.IpTables.Api
cp Source/BSN.IpTables.Api/bin/Release/net6.0/BSN.IpTables.Api bsn-iptables-api
#-- make local folder and service
echo ""
echo " -> making run directory and service"
mkdir /usr/local/bsn-iptables-api
cp /usr/local/src/bsn-iptables-api/bsn-iptables-api /usr/local/bsn-iptables-api/bsn-iptables-api
chmod 755 /usr/local/bsn-iptables-api/bsn-iptables-api