edd2392cbb
All other services should be added to SYSTEMD_SERVICES_* and handled by rootfs image script.
22 lines
306 B
Bash
Executable File
22 lines
306 B
Bash
Executable File
#!/bin/sh
|
|
# see also m-p-d::profiles/live/image-scripts.d/init3-services
|
|
|
|
ENABLE="
|
|
livecd-setlocale
|
|
livecd-evms
|
|
livecd-save-nfs
|
|
livecd-timezone
|
|
"
|
|
|
|
DISABLE="
|
|
"
|
|
|
|
for i in $ENABLE; do
|
|
/bin/systemctl --no-reload enable "$i" ||:
|
|
done
|
|
|
|
for i in $DISABLE; do
|
|
/bin/systemctl --no-reload disable "$i" ||:
|
|
done
|
|
:
|