diff options
author | alexlzhu <alexlzhu@devvm2387.atn0.facebook.com> | 2021-07-09 02:10:47 +0200 |
---|---|---|
committer | Chris Down <chris@chrisdown.name> | 2021-09-28 15:52:27 +0200 |
commit | 8c35c10d20ff7b369bfff3fbbb92a43ca2fd5938 (patch) | |
tree | be87626fe62937be49a7b3388d75d44623ed2c5d /test/test-execute/exec-execsearchpath-environmentfile-set.service | |
parent | Merge pull request #20837 from bluca/coveralls (diff) | |
download | systemd-8c35c10d20ff7b369bfff3fbbb92a43ca2fd5938.tar.xz systemd-8c35c10d20ff7b369bfff3fbbb92a43ca2fd5938.zip |
core: Add ExecSearchPath parameter to specify the directory relative to which binaries executed by Exec*= should be found
Currently there does not exist a way to specify a path relative to which
all binaries executed by Exec should be found. The only way is to
specify the absolute path.
This change implements the functionality to specify a path relative to which
binaries executed by Exec*= can be found.
Closes #6308
Diffstat (limited to 'test/test-execute/exec-execsearchpath-environmentfile-set.service')
-rw-r--r-- | test/test-execute/exec-execsearchpath-environmentfile-set.service | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test-execute/exec-execsearchpath-environmentfile-set.service b/test/test-execute/exec-execsearchpath-environmentfile-set.service new file mode 100644 index 0000000000..45877b1d12 --- /dev/null +++ b/test/test-execute/exec-execsearchpath-environmentfile-set.service @@ -0,0 +1,8 @@ +[Unit] +Description=Test for ExecSearchPath with EnvironmentFile where EnvironmentFile sets PATH + +[Service] +ExecStart=/bin/sh -x -c 'test "$$VAR1" = "word1 word2" && test "$$VAR2" = word3 && test "$$VAR3" = "\\$$word 5 6" && test "$$VAR4" = "new\nline" && test "$$VAR5" = passwordwithbackslashes && test "$$PATH" = /usr' +Type=oneshot +EnvironmentFile=/tmp/test-exec_execsearchpath_environmentfile-set.conf +ExecSearchPath=/tmp:/bin |