mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-10 19:12:33 +08:00
28 lines
610 B
Makefile
28 lines
610 B
Makefile
# Copyright (C) 2019 Openwrt.org
|
|
#
|
|
# This is a free software, use it under Apache Licene 2.0 & GNU General Public License v3.0.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
LUCI_TITLE:=luci for haproxy and shadowsocks
|
|
LUCI_DEPENDS:=+haproxy
|
|
LUCI_PKGARCH:=all
|
|
PKG_NAME:=luci-app-haproxy-tcp
|
|
PKG_VERSION=1.4
|
|
PKG_RELEASE:=2
|
|
PKG_MAINTAINER:=Alex Zhuo <1886090@gmail.com>
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
define Package/$(PKG_NAME)/postinst
|
|
#!/bin/sh
|
|
rm -rf /tmp/luci*
|
|
echo stopping haproxy
|
|
/etc/init.d/haproxy stop
|
|
/etc/init.d/haproxy disable
|
|
echo haproxy disabled
|
|
endef
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|