]> git.ipfire.org Git - thirdparty/systemd.git/blame - test/test-execute/exec-umask-default.service
tests: add spdx license header to test unit/link/network/conf files
[thirdparty/systemd.git] / test / test-execute / exec-umask-default.service
CommitLineData
22d3cfe5 1# SPDX-License-Identifier: LGPL-2.1-or-later
27c5347c
RC
2[Unit]
3Description=Test for UMask default
4
5[Service]
b7172f34 6ExecStart=/bin/sh -x -c 'rm /tmp/test-exec-umask; touch /tmp/test-exec-umask; mode=$$(stat -c %%a /tmp/test-exec-umask); test "$$mode" = "644"'
cdaf5070 7Type=oneshot
27c5347c 8PrivateTmp=yes