mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
b294e5943f
This corresponds nicely with the specifiers we already pass for /var/lib, /var/cache, /run and so on. This is particular useful to update the test-path service files to operate without guessable files, thus allowing multiple parallel test-path invocations to pass without issues (the idea is to set $TMPDIR early on in the test to some private directory, and then only use the new %T or %V specifier to refer to it).
29 lines
903 B
Desktop File
29 lines
903 B
Desktop File
[Unit]
|
|
Description=Test for specifiers
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=test %n = exec-specifier.service
|
|
ExecStart=test %N = exec-specifier
|
|
ExecStart=test %p = exec-specifier
|
|
ExecStart=test %P = exec/specifier
|
|
ExecStart=test %i = ""
|
|
ExecStart=test %I = ""
|
|
ExecStart=test %j = specifier
|
|
ExecStart=test %J = specifier
|
|
ExecStart=test %f = /exec/specifier
|
|
ExecStart=test %t = /run
|
|
ExecStart=test %S = /var/lib
|
|
ExecStart=test %C = /var/cache
|
|
ExecStart=test %L = /var/log
|
|
ExecStart=test %T = /tmp
|
|
ExecStart=test %V = /var/tmp
|
|
ExecStart=sh -c 'test %u = $$(id -un 0)'
|
|
ExecStart=test %U = 0
|
|
ExecStart=sh -c 'test %h = $$(getent passwd 0 | cut -d: -f 6)'
|
|
ExecStart=sh -c 'test %s = /bin/sh'
|
|
ExecStart=sh -c 'test %m = $$(cat /etc/machine-id)'
|
|
ExecStart=sh -c 'test %b = $$(cat /proc/sys/kernel/random/boot_id | sed -e 's/-//g')'
|
|
ExecStart=sh -c 'test %H = $$(hostname)'
|
|
ExecStart=sh -c 'test %v = $$(uname -r)'
|