13 lines
214 B
Bash
Executable File
13 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# autodist-git-sync daily cron script
|
|
# (c) 2024 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
#
|
|
. /etc/autodist/config
|
|
|
|
if [ "$AUTODIST_GIT_SYNC" == "1" ]; then
|
|
autodist-git syncrepo
|
|
fi
|
|
|
|
exit 0
|