2b50111650
If service already listed in the config files, then ignore status in the profiles variables.
55 lines
1.4 KiB
Bash
Executable File
55 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# this script piggybacks service status information
|
|
# into the system to be installed (instead of applying
|
|
# it to rootfs being formed immediately)
|
|
|
|
# NB: install2 is not a rootfs, handling differs either
|
|
|
|
STATUS=`mktemp`
|
|
CONFDIR=/usr/share/install2
|
|
CHECK_FILES=
|
|
|
|
. shell-config
|
|
|
|
switch() {
|
|
[ -n "$CHECK_FILES" ] && \
|
|
egrep -qs "^[[:blank:]]*$1(.service|.socket)?[[:blank:]]*$" \
|
|
$CHECK_FILES && return ||:
|
|
|
|
case "$2" in
|
|
on|off)
|
|
shell_config_set "$STATUS" "$1" "$2";;
|
|
esac
|
|
}
|
|
|
|
for f in services-on services-off systemd-enabled systemd-disabled; do
|
|
[ -s "$CONFDIR/$f" ] || continue
|
|
CHECK_FILES="$CHECK_FILES $CONFDIR/$f"
|
|
done
|
|
|
|
# defaults (most likely features.in ones)
|
|
for i in $GLOBAL_DEFAULT_SERVICES_ENABLE; do switch $i on; done
|
|
for i in $GLOBAL_DEFAULT_SERVICES_DISABLE; do switch $i off; done
|
|
|
|
# explicitly specified behaviour (e.g. via conf.d)
|
|
for i in $GLOBAL_SERVICES_ENABLE; do switch $i on; done
|
|
for i in $GLOBAL_SERVICES_DISABLE; do switch $i off; done
|
|
|
|
SERVICES="$GLOBAL_DEFAULT_SERVICES_ENABLE $GLOBAL_DEFAULT_SERVICES_DISABLE"
|
|
SERVICES="$SERVICES $GLOBAL_SERVICES_ENABLE $GLOBAL_SERVICES_DISABLE"
|
|
SERVICES="$(echo $SERVICES | sort -u)"
|
|
|
|
for i in $SERVICES; do
|
|
onoff="$(shell_config_get "$STATUS" "$i")"
|
|
[ -n "$onoff" ] || continue
|
|
echo "$i" >> "$CONFDIR"/services-"$onoff"
|
|
done
|
|
|
|
cp -a "$CONFDIR"/{services-on,systemd-enabled}
|
|
cp -a "$CONFDIR"/{services-off,systemd-disabled}
|
|
|
|
rm "$STATUS"
|
|
|
|
:
|