Add `metablogizerctl emancipate <name>` command for one-command full exposure workflow: 1. DNS A record via dnsctl (Gandi/OVH based on availability) 2. Vortex DNS mesh publication 3. HAProxy vhost with SSL/ACME enabled 4. SSL certificate request (webroot mode) 5. Zero-downtime HAProxy reload Usage: metablogizerctl create myblog blog.example.com metablogizerctl emancipate myblog Bump version to 1.1.0. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
823 B
Makefile
31 lines
823 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=secubox-app-metablogizer
|
|
PKG_VERSION:=1.1.0
|
|
PKG_RELEASE:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/secubox-app-metablogizer
|
|
SECTION:=secubox
|
|
CATEGORY:=SecuBox
|
|
TITLE:=MetaBlogizer Static Site Publisher
|
|
DEPENDS:=+git +uhttpd
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Package/secubox-app-metablogizer/description
|
|
Static site publisher with auto-vhost creation.
|
|
Supports uhttpd (default) and nginx LXC runtimes.
|
|
KISS ULTIME MODE: One-command DNS + SSL + Mesh workflow.
|
|
endef
|
|
|
|
define Package/secubox-app-metablogizer/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) ./files/usr/sbin/metablogizerctl $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/etc/config/metablogizer $(1)/etc/config/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,secubox-app-metablogizer))
|