logrotate.cron.daily 569 B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. # nicenesses range from -20 (most favorable scheduling) to 19 (least favorable)
  3. NICE=19
  4. # 0 for none, 1 for real time, 2 for best-effort, 3 for idle
  5. IONICE_CLASS=2
  6. # 0-7 (for IONICE_CLASS 1 and 2 only), 0=highest, 7=lowest
  7. IONICE_PRIORITY=7
  8. CMD_LOGROTATE="/usr/sbin/logrotate /etc/logrotate.conf"
  9. if [ -x /usr/bin/nice ]; then
  10. CMD_LOGROTATE="/usr/bin/nice -n ${NICE:-19} ${CMD_LOGROTATE}"
  11. fi
  12. if [ -x /usr/bin/ionice ]; then
  13. CMD_LOGROTATE="/usr/bin/ionice -c ${IONICE_CLASS:-2} -n ${IONICE_PRIORITY:-7} ${CMD_LOGROTATE}"
  14. fi
  15. ${CMD_LOGROTATE}
  16. exit 0