2021-10-17 18:07:22 +02:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
2018-03-25 20:50:15 +02:00
|
|
|
[Unit]
|
|
|
|
|
Description=Test for basic execution
|
2019-06-27 23:11:34 +09:00
|
|
|
ConditionKernelVersion=">=3.0"
|
|
|
|
|
ConditionKernelVersion=">=2.0" "<=60" "!=1.4"
|
2019-06-28 10:58:06 +02:00
|
|
|
ConditionKernelVersion=" >= 2.0" " <= 60 " "!= 1.4"
|
|
|
|
|
ConditionKernelVersion=" >= 2.0" " * " "*.*"
|
2018-03-25 20:50:15 +02:00
|
|
|
|
2025-02-20 13:07:24 +01:00
|
|
|
ConditionVersion=kernel ">=3.0"
|
|
|
|
|
ConditionVersion=kernel ">=2.0" "<=60" "!=1.4"
|
|
|
|
|
ConditionVersion=kernel " >= 2.0" " <= 60 " "!= 1.4"
|
|
|
|
|
ConditionVersion=kernel " >= 2.0" " * " "*.*"
|
|
|
|
|
|
|
|
|
|
ConditionVersion=">=3.0"
|
|
|
|
|
ConditionVersion=">=2.0" "<=60" "!=1.4"
|
|
|
|
|
ConditionVersion=" >= 2.0" " <= 60 " "!= 1.4"
|
|
|
|
|
ConditionVersion=" >= 2.0" " * " "*.*"
|
|
|
|
|
|
|
|
|
|
ConditionVersion=systemd ">=30"
|
|
|
|
|
ConditionVersion=systemd ">=20" "<=9000" "!=14"
|
|
|
|
|
ConditionVersion=systemd " >= 20" " <= 9000 " "!= 14"
|
|
|
|
|
ConditionVersion=systemd " >= 20" " * "
|
|
|
|
|
|
2025-03-16 02:48:29 +01:00
|
|
|
ConditionVersion=glibc ">=2"
|
|
|
|
|
ConditionVersion=glibc ">=2" "<=9000" "!=1"
|
|
|
|
|
ConditionVersion=glibc " >= 2" " <= 9000 " "!= 1"
|
|
|
|
|
ConditionVersion=glibc " >= 2" " * "
|
|
|
|
|
|
2018-03-25 20:50:15 +02:00
|
|
|
[Service]
|
2018-11-19 02:51:25 +08:00
|
|
|
ExecStart=touch /tmp/a ; /bin/sh -c 'touch /tmp/b' ; touch /tmp/c
|
2018-03-25 20:50:15 +02:00
|
|
|
ExecStart=test -f /tmp/a
|
|
|
|
|
ExecStart=!test -f /tmp/b
|
|
|
|
|
ExecStart=!!test -f /tmp/c
|
|
|
|
|
ExecStartPost=rm /tmp/a /tmp/b /tmp/c
|
|
|
|
|
|
|
|
|
|
PrivateTmp=true
|
|
|
|
|
Type=oneshot
|