blob: c8926800985520fa6235b32dcca5f839da4527c0 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# /usr/local/sbin/mirror-gentoo.sh
LOG="/var/log/mirrors/archlinux-mirror-sync.log"
DEST="/mnt/brimstone/mirror/archlinux"
EC=$?
echo "EXITCODE:$EC" >>"$LOG"
exit $EC
|