From e7d268a7a3e21437c57bc4c2fef2af924631d2a5 Mon Sep 17 00:00:00 2001 From: hyird <31695447+hyird@users.noreply.github.com> Date: Sat, 5 Sep 2020 14:59:51 +0800 Subject: [PATCH] https-dns-proxy: do not boot on startup --- net/https-dns-proxy/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/net/https-dns-proxy/Makefile b/net/https-dns-proxy/Makefile index bb820b78..4d7de541 100644 --- a/net/https-dns-proxy/Makefile +++ b/net/https-dns-proxy/Makefile @@ -42,4 +42,11 @@ define Package/https-dns-proxy/install $(INSTALL_CONF) ./files/https-dns-proxy.config $(1)/etc/config/https-dns-proxy endef +define Package/https-dns-proxy/postinst +#!/bin/sh +/etc/init.d/https-dns-proxy disable +/etc/init.d/https-dns-proxy stop +exit 0 +endef + $(eval $(call BuildPackage,https-dns-proxy))