mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
e26fe5f911
Add 'reattach' verb to portablectl, and corresponding DBUS interface to systemd-portabled. Takes the same parameters as 'attach', but it will do a 'detach' (and it will refuse to proceed if it cannot be done) first, matching on the unversioned prefix of the new image. Eg: portablectl reattach /tmp/foo_2.raw will cause foo_1.raw to be detached, and foo_2.raw to be attached. The key difference with a manual 'detach old' plus 'attach new' is that the running units are not disturbed until after the attach completed, and if --now is passed they are then restarted. A 'detach' is not allowed normally if the units are running. By using a restart-after-deploy method, 'reattach' allows for minimal interruption of service and also for features that only work on restart (eg: file descriptor store) to work as intended. The DBUS interface returns two lists: first the removals from the detach that were not immediately re-added in the attach, so that the caller can stop the relevant units, and then the list of additions that are either new or updates, so that the caller can restart/enable the relevant units. portablectl already implements this with the existing --now/--enable switches.
28 lines
654 B
Bash
Executable File
28 lines
654 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
|
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
|
set -e
|
|
TEST_DESCRIPTION="test systemd-portabled"
|
|
IMAGE_NAME="portabled"
|
|
TEST_NO_NSPAWN=1
|
|
TEST_INSTALL_VERITY_MINIMAL=1
|
|
|
|
. $TEST_BASE_DIR/test-functions
|
|
|
|
# Need loop devices for mounting images
|
|
test_append_files() {
|
|
(
|
|
instmods loop =block
|
|
instmods squashfs =squashfs
|
|
instmods dm_verity =md
|
|
install_dmevent
|
|
generate_module_dependencies
|
|
inst_binary losetup
|
|
inst_binary mksquashfs
|
|
inst_binary unsquashfs
|
|
install_verity_minimal
|
|
)
|
|
}
|
|
|
|
do_test "$@" 58
|