mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
22 lines
360 B
Bash
Executable File
22 lines
360 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
TEST_DESCRIPTION="test changing main PID"
|
|
|
|
. $TEST_BASE_DIR/test-functions
|
|
|
|
test_setup() {
|
|
create_empty_image_rootdir
|
|
|
|
(
|
|
LOG_LEVEL=5
|
|
eval $(udevadm info --export --query=env --name=${LOOPDEV}p2)
|
|
|
|
setup_basic_environment
|
|
mask_supporting_services
|
|
)
|
|
|
|
setup_nspawn_root
|
|
}
|
|
|
|
do_test "$@" 20
|