mirror of
https://github.com/Ownercz/ssme-thesis.git
synced 2025-02-20 11:11:47 +01:00
9 lines
202 B
Django/Jinja
9 lines
202 B
Django/Jinja
#!/bin/sh
|
|
|
|
/usr/bin/yum clean {{ yum_cron_clean_what }} >/dev/null
|
|
EXITVALUE=$?
|
|
if [ $EXITVALUE != 0 ]; then
|
|
/usr/bin/logger -t yum-cron-clean "ERROR: exited abnormally with [$EXITVALUE]"
|
|
fi
|
|
exit 0
|