chiark / gitweb /
Simplify the meaning of %s
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 26 Mar 2013 23:37:14 +0000 (19:37 -0400)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 27 Mar 2013 03:49:44 +0000 (23:49 -0400)
commit3baed19327663d012c3313b72cc5b3d02a58720a
tree6a55c48aa5c3a9b5cfb277f235ff8e97d7af2b10
parenta63a5c4687d192d89eea9715db2a56c810111de8
Simplify the meaning of %s

The rules governing %s where just too complicated. First of
all, looking at $SHELL is dangerous. For systemd --system,
it usually wouldn't be set. But it could be set if the admin
first started a debug shell, let's say /sbin/sash, and then
launched systemd from it. This shouldn't influence how daemons
are started later on, so is better ignored. Similar reasoning
holds for session mode. Some shells set $SHELL, while other
set it only when it wasn't set previously (e.g. zsh). This
results in fragility that is better avoided by ignoring $SHELL
totally.

With $SHELL out of the way, simplify things by saying that
%s==/bin/sh for root, and the configured shell otherwise.
get_shell() is the only caller, so it can be inlined.

Fixes one issue seen with 'make check'.
man/systemd.unit.xml.in
src/core/unit-printf.c
src/shared/util.c
src/shared/util.h
src/test/test-unit-name.c