b337e72ead
This one is finally there and should help reduce the systemd-induced mess in package lists and specifications.
35 lines
803 B
Makefile
35 lines
803 B
Makefile
# step 2: build up virtual environment's configuration
|
|
|
|
ifndef MKIMAGE_PROFILES
|
|
$(error this makefile is designed to be included in toplevel one)
|
|
endif
|
|
|
|
ifeq (ve,$(IMAGE_CLASS))
|
|
|
|
# no package management and networking
|
|
ve/.bare: profile/bare
|
|
@$(call add,BASE_PACKAGES,basesystem)
|
|
|
|
# add those
|
|
ve/.base: ve/.bare
|
|
@$(call add,BASE_PACKAGES,etcnet apt)
|
|
|
|
# no "vzctl enter"
|
|
ve/bare: ve/.base
|
|
@$(call add,BASE_PACKAGES,sysvinit)
|
|
|
|
# /dev/pty and friends start here
|
|
ve/base: ve/bare
|
|
@$(call add,BASE_PACKAGES,interactivesystem)
|
|
|
|
# this should be more or less deployable
|
|
ve/generic: ve/base
|
|
@$(call add,BASE_LISTS,openssh \
|
|
$(call tags,base && (server || network || security || pkg)))
|
|
|
|
# example of service-specific template
|
|
ve/openvpn: ve/bare
|
|
@$(call add,BASE_LISTS,$(call tags,server openvpn))
|
|
|
|
endif
|