mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-11 05:17:44 +03:00
8a7adccbdb
/bin/sh as a shell is punishing. There is no good reason to make
the occasional root login unpleasant.
Since /bin/sh is usually /bin/bash in compat mode, i.e. if one is
available, the other will be too, /bin/bash is almost as good as a default.
But to avoid a regression in the situation where /bin/bash (or
DEFAULT_USER_SHELL) is not installed, we check with access() and fall back
to /bin/sh. This should make this change in behaviour less risky.
(FWIW, e.g. Fedora/RHEL use /bin/bash as default for root.)
This is a follow-up of sorts for 53350c7bba
,
which added the default-user-shell option, but most likely with the idea
of using /bin/bash less ;)
Fixes #24369.
34 lines
1.0 KiB
Desktop File
34 lines
1.0 KiB
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Test for specifiers
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=test %n = exec-specifier.service
|
|
ExecStart=test %N = exec-specifier
|
|
ExecStart=test %p = exec-specifier
|
|
ExecStart=test %P = exec/specifier
|
|
ExecStart=test %i = ""
|
|
ExecStart=test %I = ""
|
|
ExecStart=test %j = specifier
|
|
ExecStart=test %J = specifier
|
|
ExecStart=test %f = /exec/specifier
|
|
ExecStart=test %t = /run
|
|
ExecStart=test %S = /var/lib
|
|
ExecStart=test %C = /var/cache
|
|
ExecStart=test %L = /var/log
|
|
ExecStart=test %E = /etc
|
|
ExecStart=test %T = /tmp
|
|
ExecStart=test %V = /var/tmp
|
|
ExecStart=test %d = %t/credentials/%n
|
|
ExecStart=sh -c 'test %u = $$(id -un)'
|
|
ExecStart=sh -c 'test %U = $$(id -u)'
|
|
ExecStart=sh -c 'test %g = $$(id -gn)'
|
|
ExecStart=sh -c 'test %G = $$(id -g)'
|
|
ExecStart=test %h = /root
|
|
ExecStart=sh -c 'test -x %s'
|
|
ExecStart=sh -c 'test %m = $$(cat /etc/machine-id)'
|
|
ExecStart=sh -c 'test %b = $$(cat /proc/sys/kernel/random/boot_id | sed -e 's/-//g')'
|
|
ExecStart=sh -c 'test %H = $$(uname -n)'
|
|
ExecStart=sh -c 'test %v = $$(uname -r)'
|