View | Details | Raw Unified | Return to bug 34347
Collapse All | Expand All

(-)a/make-initrd-propagator.spec (-1 / +4 lines)
Lines 1-6 Link Here
1
Name: make-initrd-propagator
1
Name: make-initrd-propagator
2
Version: 0.32
2
Version: 0.32
3
Release: alt1
3
Release: alt2
4
4
5
Summary: Put propagator into make-initrd generated image
5
Summary: Put propagator into make-initrd generated image
6
6
Lines 39-44 mkdir -p %buildroot%_datadir/make-initrd/features/propagator/data/image Link Here
39
%_datadir/make-initrd/features/propagator
39
%_datadir/make-initrd/features/propagator
40
40
41
%changelog
41
%changelog
42
* Thu Apr 19 2018 Leonid Krivoshein <klark@altlinux.ru> 0.32-alt2
43
- Change order to start propagator after udev and before loop.
44
42
* Sun Jan 21 2018 Arseny Maslennikov <arseny@altlinux.org> 0.32-alt1
45
* Sun Jan 21 2018 Arseny Maslennikov <arseny@altlinux.org> 0.32-alt1
43
- netboot: Allowed use of different overlay storage locations.
46
- netboot: Allowed use of different overlay storage locations.
44
- netboot: Forbade mounting overlays with unspecified profile.
47
- netboot: Forbade mounting overlays with unspecified profile.
(-)a/propagator/data/scripts/pre/prepare/000-propagator (-12 lines)
Lines 1-12 Link Here
1
#!/bin/sh -efu
2
3
readonly PROPAGATOR="/usr/sbin/propagator"
4
readonly UDEVADM="/sbin/udevadm"
5
6
if [ -x "$PROPAGATOR" ]; then
7
    if [ -x "$UDEVADM" ]; then
8
        "$UDEVADM" trigger --action=add
9
        "$UDEVADM" settle
10
    fi
11
    exec "$PROPAGATOR"
12
fi
(-)a/propagator/data/scripts/pre/prepare/060-propagator (+7 lines)
Line 0 Link Here
1
#!/bin/sh -efu
2
3
readonly PROPAGATOR="/usr/sbin/propagator"
4
5
if [ -x "$PROPAGATOR" ]; then
6
    exec "$PROPAGATOR"
7
fi

Return to bug 34347