/etc/cron.daily/zentyal is in zentyal-core 2.3.4.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh
# Check latest version
URL="http://update.zentyal.org/last-2.3.txt"
TIMEOUT="300"
DEST="/var/lib/zentyal/latestversion"
wget --timeout $TIMEOUT $URL -O $DEST >/dev/null 2>&1
# Gather reporting info
/usr/share/zentyal/gather-reportinfo
# Consolidate this reporting info
/usr/share/zentyal/consolidate-reportinfo
|