7bdda821e7
Setting up apt configuration in every container is pretty annoying, let's enable it by default. Some provision to add/enable local mirror would be beneficial but not there yet...
21 lines
517 B
Makefile
21 lines
517 B
Makefile
ifeq (ve,$(IMAGE_CLASS))
|
|
|
|
# no "vzctl enter"
|
|
ve/bare: ve/.base use/init/sysv; @:
|
|
|
|
# /dev/pty and friends start here
|
|
ve/base: ve/bare
|
|
@$(call add,BASE_PACKAGES,interactivesystem)
|
|
|
|
# this should be more or less convenient
|
|
ve/generic: ve/base use/repo
|
|
@$(call add,BASE_PACKAGES,vim-console etckeeper)
|
|
@$(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
|