#!/bin/sh -efu

readonly PROPAGATOR="/usr/sbin/propagator"
readonly UDEVADM="/sbin/udevadm"

if [ -x "$PROPAGATOR" ]; then
    if [ -x "$UDEVADM" ]; then
        "$UDEVADM" trigger --action=add
        "$UDEVADM" settle
    fi
    exec "$PROPAGATOR"
fi
