You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
306 B
21 lines
306 B
#!/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
|
|
:
|
|
|