mirror of
https://github.com/systemd/systemd.git
synced 2025-03-10 16:58:28 +03:00
We want to retain *some* of the full paths in order to test more code paths. But the default should be to use the command name only. This makes the tests less visually cluttered.
10 lines
304 B
Desktop File
10 lines
304 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Test for Environment
|
|
|
|
[Service]
|
|
ExecStart=sh -x -c 'test "$${VAR1-unset}" = "unset" && test "$${VAR2-unset}" = "unset" && test "$${VAR3-unset}" = "unset"'
|
|
Type=oneshot
|
|
Environment="VAR1=word1 word2" VAR2=word3 "VAR3=$word 5 6"
|
|
Environment=
|