Commit 2b501116 authored by Mikhail Efremov's avatar Mikhail Efremov Committed by Michael Shigorin

services: Don't touch services already listed in the config

If service already listed in the config files, then ignore status in the profiles variables.
parent b6e5d3df
......@@ -7,16 +7,27 @@
# 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
......@@ -32,11 +43,11 @@ SERVICES="$(echo $SERVICES | sort -u)"
for i in $SERVICES; do
onoff="$(shell_config_get "$STATUS" "$i")"
[ -n "$onoff" ] || continue
echo "$i" >> /usr/share/install2/services-"$onoff"
echo "$i" >> "$CONFDIR"/services-"$onoff"
done
cp -a /usr/share/install2/{services-on,systemd-enabled}
cp -a /usr/share/install2/{services-off,systemd-disabled}
cp -a "$CONFDIR"/{services-on,systemd-enabled}
cp -a "$CONFDIR"/{services-off,systemd-disabled}
rm "$STATUS"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment