mirror of
https://github.com/systemd/systemd.git
synced 2026-06-28 02:37:50 +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.
25 lines
826 B
Desktop File
25 lines
826 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Test for specifiers (template unit)
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=test %n = exec-specifier@foo-bar.service
|
|
ExecStart=test %N = exec-specifier@foo-bar
|
|
ExecStart=test %p = exec-specifier
|
|
ExecStart=test %P = exec/specifier
|
|
ExecStart=test %i = foo-bar
|
|
ExecStart=test %I = foo/bar
|
|
ExecStart=test %j = specifier
|
|
ExecStart=test %J = specifier
|
|
ExecStart=test %f = /foo/bar
|
|
ExecStart=bash -c 'test %u = $$(id -un)'
|
|
ExecStart=bash -c 'test %U = $$(id -u)'
|
|
ExecStart=bash -c 'test %g = $$(id -gn)'
|
|
ExecStart=bash -c 'test %G = $$(id -g)'
|
|
ExecStart=test %h = /root
|
|
ExecStart=bash -c 'test -x %s'
|
|
ExecStart=bash -c 'test %b = $$(cat /proc/sys/kernel/random/boot_id | sed -e 's/-//g')'
|
|
ExecStart=bash -c 'test %H = $$(uname -n)'
|
|
ExecStart=bash -c 'test %v = $$(uname -r)'
|