Browse Source

split nginx dependency in reverse proxy package

master
Edoardo Putti 6 years ago
parent
commit
23b4d57182
3 changed files with 28 additions and 6 deletions
  1. +3
    -3
      bundle/ansible/Makefile
  2. +3
    -3
      bundle/lilik/Makefile
  3. +22
    -0
      bundle/reverseproxy/Makefile

+ 3
- 3
bundle/ansible/Makefile View File

@ -7,9 +7,9 @@ PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk
define Package/ansible
SECTION:=bundles
CATEGORY:=Bundles
DEPENDS:=+python +python3
SECTION:=meta
CATEGORY:=LILiK
DEPENDS:=+python +python3 +openssh-server +openssh-clients
TITLE:=requirements to configure OpenWRT using ansible
endef


+ 3
- 3
bundle/lilik/Makefile View File

@ -7,9 +7,9 @@ PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk
define Package/lilik
SECTION:=bundles
CATEGORY:=Bundles
DEPENDS:=+ca-bundle +ca-certificates +dnsmasq-full +nginx-all +openssh-server +openss-clients
SECTION:=meta
CATEGORY:=LILiK
DEPENDS:=+ca-bundle +ca-certificates +dnsmasq-full +reverseproxy +ansible
TITLE:=LILiK meta-package
endef


+ 22
- 0
bundle/reverseproxy/Makefile View File

@ -0,0 +1,22 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=reverseproxy
PKG_VERSION:=1.0
PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk
define Package/reverseproxy
SECTION:=meta
CATEGORY:=LILiK
DEPENDS:=+nginx-all
TITLE:=reverse proxy meta package
endef
define Package/reverseproxy/description
LILiK's reverse proxy meta-package
endef
# This command is always the last, it uses the definitions and variables we give above in order to get the job done
$(eval $(call BuildPackage,reverseproxy))

Loading…
Cancel
Save