mirror of
https://github.com/systemd/systemd.git
synced 2026-06-24 08:47:49 +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.
12 lines
433 B
Desktop File
12 lines
433 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Test for PassEnvironment with a variable name repeated
|
|
|
|
[Service]
|
|
ExecStart=bash -x -c 'test "$$VAR1" = "word1 word2" && test "$$VAR2" = word3 && test "$$VAR3" = "\\$$word 5 6" && test "$$VAR4" = "new\nline" && test "$$VAR5" = passwordwithbackslashes'
|
|
Type=oneshot
|
|
PassEnvironment=VAR1 VAR2
|
|
PassEnvironment=VAR1 VAR3
|
|
PassEnvironment=VAR1 VAR4
|
|
PassEnvironment=VAR1 VAR5
|