Initial commit

This commit is contained in:
root
2026-06-14 23:45:57 +08:00
commit e13621a510
48 changed files with 4304 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#
# 调度 DHCPD、HTTPD 等 dnf 系统服务
#
if(INSTALL_HTTPD)
add_subdirectory(httpd)
endif()
if(INSTALL_DHCPD)
add_subdirectory(dhcpd)
endif()

View File

@@ -0,0 +1,5 @@
#
# tool_group/dhcpd/CMakeLists.txt
#
DnfInstall(${SYS_DHCP_PKG})

View File

View File

@@ -0,0 +1,5 @@
#
# tool_group/httpd/CMakeLists.txt
#
DnfInstall(${SYS_HTTPD_PKG})

View File