Debian - InitScript - "НЕ устанавливайте -e" в /etc/init.d/skeleton
Мне было интересно, почему "НЕ УСТАНАВЛИВАЙТЕ -e" присутствует в /etc/init.d/skeleton, так как я думал, что это всегда хорошая практика.
#! /bin/sh
### BEGIN INIT INFO
# Provides: skeleton
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Example initscript
# Description: This file should be used to construct scripts to be
# placed in /etc/init.d.
### END INIT INFO
# Author: Foo Bar <foobar@baz.org>
#
# Please remove the "Author" lines above and replace them
# with your own name if you copy and modify this script.
# Do NOT "set -e"
Вики Debian рекомендует это ( https://wiki.debian.org/LSBInitScripts/StatusSupport), поэтому я не знаю, что мне делать.