1
0

autopostgresqlbackup 234 B

123456789101112131415
  1. #!/bin/sh
  2. #
  3. # autopostgresqlbackup daily cron task
  4. #
  5. if [ -d /run/systemd/system ]; then
  6. # Skip in favour of systemd timer.
  7. exit 0
  8. fi
  9. if [ -x /usr/sbin/autopostgresqlbackup ]; then
  10. /usr/sbin/autopostgresqlbackup
  11. fi
  12. exit 0