/
niceSOFT
/
systemd
Обзор
Документация
Войти
/
niceSOFT
/
systemd
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/test-execute/exec-readonlypaths-simple.service
12 строк
456 B
Yu Watanabe
test: always use bash
07 дек 2025, 03:09
07 дек 2025, 03:09
b49a469
Код
Авторство
О чём код?
# SPDX-License-Identifier: LGPL-2.1-or-later [Unit] Description=Test for ReadOnlyPaths= [Service] Type=oneshot # This should work, as we explicitly disable the effect of ReadOnlyPaths= ExecStart=+bash -c 'touch /tmp/thisisasimpletest' # This should also work, as we do not disable the effect of ReadOnlyPaths= but invert the exit code ExecStart=bash -x -c '! touch /tmp/thisisasimpletest' ExecStart=+bash -c 'rm /tmp/thisisasimpletest' ReadOnlyPaths=/tmp