19 lines
511 B
Bash
Executable File
19 lines
511 B
Bash
Executable File
#!/bin/sh
|
|
### BEGIN INIT INFO
|
|
# Provides: border8
|
|
# Required-Start: $remote_fs $syslog docker
|
|
# Required-Stop: $remote_fs $syslog
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: BORDER Debian8 environment
|
|
# Description: BORDER Debian8 environment, built from Debian jessie,
|
|
# contains apache2 + php 5.6
|
|
### END INIT INFO
|
|
|
|
# Author: ROTTLER Tamas <tom@bitfit.hu>
|
|
|
|
. /lib/lsb/init-functions
|
|
|
|
echo "Border8 service is systemd-only." >&2
|
|
exit 1
|