Commit 81cea766 authored by Dmitriy Terekhin's avatar Dmitriy Terekhin Committed by Anton Midyukov

alt-server: Groups vbox-guest and vbox-host for x86_64 only

The vbox-guest and vbox-host lists contain x86-only packages. An alt-server image is not planned for i586. The groups "VirtualBox Guest Additions" and "VirtualBox for host system" will only be created in the image for x86_64, since for other architectures they will remain empty, which is undesirable.
parent fcab29ab
......@@ -12,7 +12,12 @@ endif
ifeq (,$(filter-out i586 x86_64 ppc64le aarch64 e2k%,$(ARCH)))
distro/alt-server: server_groups_desktop = $(addprefix centaurus/,\
80-desktop emulators freenx-server mate office pidgin vlc xorg scanning vbox-host vbox-guest)
80-desktop emulators freenx-server mate office pidgin vlc xorg scanning)
endif
ifeq (,$(filter-out x86_64,$(ARCH)))
distro/alt-server: server_groups_virtualbox = $(addprefix centaurus/,\
vbox-host vbox-guest)
endif
distro/alt-server: monitoring = $(addprefix server-v/,\
......@@ -30,6 +35,7 @@ distro/alt-server:: distro/.base mixin/alt-server use/vmguest/base \
@$(call add,MAIN_GROUPS,$(server_groups_primary))
@$(call add,MAIN_GROUPS,$(server_groups_virtipa))
@$(call add,MAIN_GROUPS,$(server_groups_desktop))
@$(call add,MAIN_GROUPS,$(server_groups_virtualbox))
@$(call add,MAIN_LISTS,centaurus/disk-dvd)
@$(call add,MAIN_LISTS,centaurus/disk-server-light)
@$(call add,THE_LISTS,monitoring/zabbix-agent)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment