#!/bin/sh

set -e


for backend in openrc cron xinetd inetd lsb ; do

    echo "Updating expected output for $backend backend" >&2

    find ./input -maxdepth 1 ! -type d ! -name '*.~' -exec ../utrans -f overwrite -b ="${backend}" '{}' ./expected/"${backend}" ';'

done
