Compare commits

..

5 Commits

Author SHA1 Message Date
Jeff Carr 67a2edf5bc debian-ports FAIL 2023-01-12 01:45:22 -06:00
Jeff Carr 505178f1fa debian FAIL 2023-01-12 01:40:01 -06:00
Jeff Carr 859170e93c gentoo FAIL 2023-01-12 01:13:35 -06:00
Jeff Carr ed325a0e1a fedora FAIL 2023-01-12 00:37:17 -06:00
Jeff Carr 2f2cef584e archlinux PASS 2023-01-12 00:13:59 -06:00
6 changed files with 4 additions and 20 deletions

View File

View File

0
debian/2023.01.12.014001.FAIL vendored Normal file
View File

View File

@ -12,28 +12,12 @@ if [ "$2" == "" ]; then
exit
fi
if [ ! -d "$DIST" ]; then
mkdir $DIST
fi
touch $DIST/$STAMP.$NAME
git add --all
git commit -m "$DIST $NAME"
exit
if [ -f "$BASE/$DIST.status.RUNNING" ]; then
echo rsync already running on $BASE/$DIST.status.RUNNING
exit -1
fi
rsync $ARG $ARGD $SOURCE $DEST
RETURN=$?
rm $BASE/$DIST.status.RUNNING
echo rsync returned: $RETURN
if [ "$RETURN" == "0" ]; then
echo should echo OK into a google check file
echo OK > $BASE/STATUS
touch $BASE/$DIST.status.OK
touch $BACKUPDIR".log.OK"
else
echo should echo ERROR into a google check file
echo FAIL > $BASE/STATUS
touch $BASE/$DIST.status.FAIL
touch $BACKUPDIR".log.FAIL"
fi

View File

View File