mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
14 lines
285 B
Bash
Executable file
14 lines
285 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd /aurweb
|
|
aurweb-aurblup
|
|
if [ $? -eq 0 ]; then
|
|
echo "[$(date -u)] executed aurblup" >> /var/log/aurblup.log
|
|
fi
|
|
|
|
aurweb-mkpkglists --extended
|
|
if [ $? -eq 0 ]; then
|
|
echo "[$(date -u)] executed mkpkglists" >> /var/log/mkpkglists.log
|
|
fi
|
|
|
|
exec /usr/bin/crond -nx proc
|