Saltstack Official Logrotate Formula
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

10 líneas
250B

  1. #!/bin/sh
  2. {{ logrotate.bin }} -s {{ logrotate.status_dir }}/logrotate.hourly.status {{ logrotate.hourly_conf_file }}
  3. EXITVALUE=$?
  4. if [ $EXITVALUE != 0 ]; then
  5. /usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
  6. fi
  7. exit 0