Skip to content

Commit

Permalink
openwisp-config: fix Makefile for 1.1.0
Browse files Browse the repository at this point in the history
Update configuration in Makefile to fix #25168.
Add "/etc/openwisp/" to conf files.

Signed-off-by: Gagan Deep <[email protected]>
  • Loading branch information
pandafy committed Nov 6, 2024
1 parent 6a1b0e8 commit 86347b6
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions admin/openwisp-config/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=openwisp-config
PKG_VERSION:=1.1.0
PKG_RELEASE:=1
PKG_RELEASE:=2

PKG_MAINTAINER:=Federico Capoano <[email protected]>
PKG_LICENSE:=GPL-3.0-or-later
Expand Down Expand Up @@ -38,23 +38,24 @@ endef

define Package/openwisp-config/conffiles
/etc/config/openwisp
/etc/openwisp/
endef

define Package/openwisp-config/install
$(INSTALL_DIR) \
$(1)/usr/sbin \
$(1)/etc/init.d \
$(1)/etc/config \
$(1)/etc/openwisp \
$(1)/usr/lib/openwisp-config \
$(1)/usr/lib/lua/openwisp

$(INSTALL_BIN) \
$(PKG_BUILD_DIR)/openwisp-config/files/openwisp.agent \
$(1)/usr/sbin/openwisp_config
$(1)/usr/sbin/openwisp-config

$(INSTALL_BIN) \
$(PKG_BUILD_DIR)/openwisp-config/files/openwisp.init \
$(1)/etc/init.d/openwisp_config
$(1)/etc/init.d/openwisp-config

$(INSTALL_CONF) $(PKG_BUILD_DIR)/openwisp-config/files/openwisp.config \
$(1)/etc/config/openwisp
Expand Down Expand Up @@ -95,7 +96,11 @@ define Package/openwisp-config/install
$(PKG_BUILD_DIR)/openwisp-config/files/sbin/openwisp-get-address.lua \
$(1)/usr/sbin/openwisp-get-address

$(CP) $(PKG_BUILD_DIR)/VERSION $(1)/etc/openwisp/
$(INSTALL_BIN) \
$(PKG_BUILD_DIR)/openwisp-config/files/sbin/openwisp-get-random-number.lua \
$(1)/usr/sbin/openwisp-get-random-number

$(CP) $(PKG_BUILD_DIR)/VERSION $(1)/usr/lib/openwisp-config/
endef

$(eval $(call BuildPackage,openwisp-config))

0 comments on commit 86347b6

Please sign in to comment.