8f11e0df76
This commit does several things at once: - Create a symlink for /etc/init.d/functions (centos) from /lib/lsb/init-functions, to maintain compatibility. - Make /etc/systemd/system-preset so that when a service is installed it places a preset file in the directory. - Remove hardcoded services. Test Plan: PASS Build package PASS Build and install ISO PASS check for symlink /etc/init.d/functions PASS check for /etc/systemd/system-preset PASS check for running services Story: 2009101 Task: 44678 Signed-off-by: Chuck Short <charles.short@windriver.com> Change-Id: I9c5ec7eb7177dd7dde954db5d0c3d3f602677ccd
12 lines
381 B
Makefile
12 lines
381 B
Makefile
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_install:
|
|
install -d debian/tmp/etc/systemd/system-preset
|
|
install -m 544 stx/systemd/99-default-disable.preset debian/tmp/etc/systemd/system-preset
|
|
install -m 544 stx/systemd/90-default.preset debian/tmp/etc/systemd/system-preset
|
|
install -m 544 stx/systemd/85-debpkg-issues.preset debian/tmp/etc/systemd/system-preset
|
|
dh_install
|