From af92aad66e74a49f394e4508c22492f9f561001c Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sun, 2 Oct 2022 13:05:28 +0200 Subject: [PATCH] 65-autoport: minor changes --- etc/cron.hourly/65-autoport | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/cron.hourly/65-autoport b/etc/cron.hourly/65-autoport index d2e1a25..5f9d9b3 100755 --- a/etc/cron.hourly/65-autoport +++ b/etc/cron.hourly/65-autoport @@ -9,6 +9,6 @@ [ "$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} + echo "Running autoport-launcher ${i}" + systemd-run -u autoport-launcher-${i} /usr/bin/autoport-launcher ${i} done