Skip to content

Commit 8bc6f77

Browse files
authored
fix DEB packaging (#1868)
1 parent a7e56f1 commit 8bc6f77

File tree

3 files changed

+33
-13
lines changed

3 files changed

+33
-13
lines changed

.github/mihomo.service

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[Unit]
22
Description=mihomo Daemon, Another Clash Kernel.
3-
After=network.target NetworkManager.service systemd-networkd.service iwd.service
3+
Documentation=https://wiki.metacubex.one
4+
After=network.target nss-lookup.target network-online.target
45

56
[Service]
67
Type=simple
7-
LimitNPROC=500
8-
LimitNOFILE=1000000
9-
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE CAP_SYS_TIME CAP_SYS_PTRACE CAP_DAC_READ_SEARCH CAP_DAC_OVERRIDE
10-
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE CAP_SYS_TIME CAP_SYS_PTRACE CAP_DAC_READ_SEARCH CAP_DAC_OVERRIDE
11-
Restart=always
12-
ExecStartPre=/usr/bin/sleep 2s
8+
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE CAP_SYS_PTRACE CAP_DAC_READ_SEARCH
9+
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE CAP_SYS_PTRACE CAP_DAC_READ_SEARCH
1310
ExecStart=/usr/bin/mihomo -d /etc/mihomo
1411
ExecReload=/bin/kill -HUP $MAINPID
12+
Restart=on-failure
13+
RestartSec=10
14+
LimitNOFILE=infinity
1515

1616
[Install]
17-
WantedBy=multi-user.target
17+
WantedBy=multi-user.target

.github/[email protected]

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[Unit]
2+
Description=mihomo Daemon, Another Clash Kernel.
3+
Documentation=https://wiki.metacubex.one
4+
After=network.target nss-lookup.target network-online.target
5+
6+
[Service]
7+
Type=simple
8+
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE CAP_SYS_PTRACE CAP_DAC_READ_SEARCH
9+
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE CAP_SYS_PTRACE CAP_DAC_READ_SEARCH
10+
ExecStart=/usr/bin/mihomo -d /etc/mihomo
11+
ExecReload=/bin/kill -HUP $MAINPID
12+
Restart=on-failure
13+
RestartSec=10
14+
LimitNOFILE=infinity
15+
16+
[Install]
17+
WantedBy=multi-user.target

.github/workflows/build.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -276,17 +276,20 @@ jobs:
276276
277277
mkdir -p mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/DEBIAN
278278
mkdir -p mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/usr/bin
279-
mkdir -p mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/etc/mihomo
280-
mkdir -p mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/etc/systemd/system/
281279
mkdir -p mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/usr/share/licenses/mihomo
280+
mkdir -p mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/etc/mihomo
281+
mkdir -p mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/lib/systemd/system
282282
283-
cp mihomo mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/usr/bin/mihomo
283+
cp mihomo mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/usr/bin/
284284
cp LICENSE mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/usr/share/licenses/mihomo/
285-
cp .github/mihomo.service mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/etc/systemd/system/
285+
cp .github/{mihomo.service,[email protected]} mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/lib/systemd/system/
286286
287287
cat > mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/etc/mihomo/config.yaml <<EOF
288288
mixed-port: 7890
289-
external-controller: 127.0.0.1:9090
289+
EOF
290+
291+
cat > mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/DEBIAN/conffiles <<EOF
292+
/etc/mihomo/config.yaml
290293
EOF
291294
292295
cat > mihomo-${{matrix.jobs.goos}}-${{matrix.jobs.output}}-${VERSION}/DEBIAN/control <<EOF

0 commit comments

Comments
 (0)