9349acf6f7
The systemd-preset package centrally manages the system services that are started based on "personality types". The systemd-preset package works in concert with the platform-kickstart package. When the user selects the type of node they want to install, the kickstart package will symlink one of the node types from the systemd-preset package and will run the systemctl preset-all command to reset the services that are going to be started at boot. Test Plan Build package Build ISO Install ISO Bootstrap AIO install type Story: 2009968 Task: 46406 Depends-On: https://review.opendev.org/c/starlingx/metal/+/854667 Signed-off-by: Charles Short <charles.short@windriver.com> Change-Id: I0c9c78c7fb9a2e00904e934fde8b2ae9d7592380
13 lines
433 B
Makefile
13 lines
433 B
Makefile
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_install:
|
|
install -d debian/tmp/etc/systemd/system-preset
|
|
install -m 544 stx/systemd/defaults/99-default-disable.preset debian/tmp/etc/systemd/system-preset
|
|
install -m 544 stx/systemd/defaults/90-default.preset debian/tmp/etc/systemd/system-preset
|
|
install -d debian/tmp/usr/share/systemd-presets
|
|
install -m 544 stx/systemd/traits/* debian/tmp/usr/share/systemd-presets
|
|
dh_install
|