hilfe mein git ist komisch

This commit is contained in:
cutemeli
2026-01-08 18:34:49 +01:00
parent 710537a25d
commit b2d2dce845
4644 changed files with 94994 additions and 1763 deletions

14
etc/cron.daily/drweb-update Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
update_scr="/opt/drweb/update.pl"
outfile=`mktemp /tmp/drweb-update.XXXXXX`
[ -x "${update_scr}" ] || exit 0
trap 'rm -f $outfile;' TERM INT EXIT
"${update_scr}" >$outfile 2>&1
rc=$?
[ $rc -eq 0 ] || cat $outfile
exit $rc