#!/bin/sh -e

WITH_ACTION=1
. install2-init-functions
PLYMOUTH=/bin/plymouth

# Run initinstall scripts
for f in "$initinstall_dir"/*; do
	[ -f "$f" -a -x "$f" ] || continue

	action "Running initinstall script [${f##*/}]" "$f" ||:
    if [ -x "$PLYMOUTH" ]; then
        $PLYMOUTH --update "$f" ||:
    fi
done
