summaryrefslogtreecommitdiff
path: root/borg-family-0.1/debian/borg-family.init
blob: 72e9267e3640f2e6778eb9438382f842968f016e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
### BEGIN INIT INFO
# Provides:          borg-family
# Required-Start:    $network $local_fs $syslog
# Required-Stop:     $local_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: borg-family backup scripts
# Description:       Makes Borg running periodically to backup computers to a remote server
### END INIT INFO

. /lib/lsb/init-functions

case "$1" in
  start|stop|restart|reload|status|force-reload)
    log_action_msg "This is a stub, you shuld run bfrun from cron if not using systemd borg-family.timer" ;;
esac