mirror of
https://github.com/systemd/systemd.git
synced 2026-06-24 16:57:55 +00:00
If sh is not bash, some builtin command behave slightly differently. E.g. if sh is provided by busybox, its builtin test command does not check if the path is a mount point or not, and 'test -w' only checks the access mode of the inode. So, even if a readonly filesystem is mounted on a directory, the test command may succeed. To avoid such confusion, let's unconditionally use bash.
14 lines
517 B
Desktop File
14 lines
517 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Test DynamicUser with static User= whose uid and gid are different
|
|
# On Fedora, user adm has uid==3 and gid==4.
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=bash -x -c 'test "$$(id -nG)" = "adm" && test "$$(id -ng)" = "adm" && test "$$(id -nu)" = "adm"'
|
|
# Multiple ExecStart= lines causes the issue #9702.
|
|
ExecStart=bash -x -c 'test "$$(id -nG)" = "adm" && test "$$(id -ng)" = "adm" && test "$$(id -nu)" = "adm"'
|
|
DynamicUser=yes
|
|
User=adm
|
|
ReadWritePaths=-/coverage
|