mirror of
https://github.com/systemd/systemd.git
synced 2026-07-15 12:00:34 +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.
19 lines
912 B
Desktop File
19 lines
912 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Test for specifiers
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
Environment=TOP_SECRET=%d/very_top_secret
|
|
# Test if the specifier is resolved correctly both before and after LoadCredential=
|
|
ExecStart=test %d/very_top_secret = "${CREDENTIALS_DIRECTORY}/very_top_secret"
|
|
LoadCredential=very_top_secret
|
|
ExecStart=test %d/very_top_secret = "${CREDENTIALS_DIRECTORY}/very_top_secret"
|
|
ExecStart=bash -c 'test %d/very_top_secret = "$TOP_SECRET"'
|
|
ExecStartPost=test %d/very_top_secret = "${CREDENTIALS_DIRECTORY}/very_top_secret"
|
|
ExecStartPost=bash -c 'test %d/very_top_secret = "$TOP_SECRET"'
|
|
ExecStop=test %d/very_top_secret = "${CREDENTIALS_DIRECTORY}/very_top_secret"
|
|
ExecStop=bash -c 'test %d/very_top_secret = "$TOP_SECRET"'
|
|
ExecStopPost=test %d/very_top_secret = "${CREDENTIALS_DIRECTORY}/very_top_secret"
|
|
ExecStopPost=bash -c 'test %d/very_top_secret = "$TOP_SECRET"'
|