#!/bin/bash # # openmamba-autobuild-autoport daily cron script # (c) 2008-2021 by Silvan Calarco # #. /etc/sysconfig/openmamba-central . /etc/sysconfig/autoport [ "$AUTOPORT_ENABLE" = "1" -o "$AUTOPORT_ENABLE" = "true" ] || exit 0 for i in `seq 0 ${#AUTOPORT_ARCH[*]}`; do echo "Running autoport-launcher ${i} `date`" systemd-run /usr/bin/autoport-launcher ${i} done