mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 15:21:37 +03:00
ff12a7954c
As in2a5fcfae02
and in3e67e5c992
using /usr/bin/env allows bash to be looked up in PATH rather than being hard-coded. As with the previous changes the same arguments apply - distributions have scripts to rewrite shebangs on installation and they know what locations to rely on. - For tests/compilation we should rather rely on the user to have setup there PATH correctly. In particular this makes testing from git easier on NixOS where do not provide /bin/bash to improve compose-ability.
90 lines
1.9 KiB
Bash
Executable File
90 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
TEST_DESCRIPTION="https://github.com/systemd/systemd/issues/3171"
|
|
TEST_NO_QEMU=1
|
|
|
|
. $TEST_BASE_DIR/test-functions
|
|
|
|
test_setup() {
|
|
create_empty_image_rootdir
|
|
|
|
# Create what will eventually be our root filesystem onto an overlay
|
|
(
|
|
LOG_LEVEL=5
|
|
eval $(udevadm info --export --query=env --name=${LOOPDEV}p2)
|
|
|
|
setup_basic_environment
|
|
mask_supporting_services
|
|
dracut_install cat mv stat nc
|
|
|
|
# setup the testsuite service
|
|
cat >$initdir/etc/systemd/system/testsuite.service <<EOF
|
|
[Unit]
|
|
Description=Testsuite service
|
|
After=multi-user.target
|
|
|
|
[Service]
|
|
ExecStart=/test-socket-group.sh
|
|
Type=oneshot
|
|
EOF
|
|
|
|
cat >$initdir/test-socket-group.sh <<'EOF'
|
|
#!/usr/bin/env bash
|
|
set -x
|
|
set -e
|
|
set -o pipefail
|
|
|
|
U=/run/systemd/system/test.socket
|
|
cat <<'EOL' >$U
|
|
[Unit]
|
|
Description=Test socket
|
|
[Socket]
|
|
Accept=yes
|
|
ListenStream=/run/test.socket
|
|
SocketGroup=adm
|
|
SocketMode=0660
|
|
EOL
|
|
|
|
cat <<'EOL' > /run/systemd/system/test@.service
|
|
[Unit]
|
|
Description=Test service
|
|
[Service]
|
|
StandardInput=socket
|
|
ExecStart=/bin/sh -x -c cat
|
|
EOL
|
|
|
|
systemctl start test.socket
|
|
systemctl is-active test.socket
|
|
[[ "$(stat --format='%G' /run/test.socket)" == adm ]]
|
|
echo A | nc -w1 -U /run/test.socket
|
|
|
|
mv $U ${U}.disabled
|
|
systemctl daemon-reload
|
|
systemctl is-active test.socket
|
|
[[ "$(stat --format='%G' /run/test.socket)" == adm ]]
|
|
echo B | nc -w1 -U /run/test.socket && exit 1
|
|
|
|
mv ${U}.disabled $U
|
|
systemctl daemon-reload
|
|
systemctl is-active test.socket
|
|
echo C | nc -w1 -U /run/test.socket && exit 1
|
|
[[ "$(stat --format='%G' /run/test.socket)" == adm ]]
|
|
|
|
systemctl restart test.socket
|
|
systemctl is-active test.socket
|
|
echo D | nc -w1 -U /run/test.socket
|
|
[[ "$(stat --format='%G' /run/test.socket)" == adm ]]
|
|
|
|
|
|
touch /testok
|
|
EOF
|
|
|
|
chmod 0755 $initdir/test-socket-group.sh
|
|
setup_testsuite
|
|
)
|
|
|
|
setup_nspawn_root
|
|
}
|
|
|
|
do_test "$@"
|