The following changes were made

* Now depends on dash instead of bash
  * Corrected conditional in rc script '==' not valid POSIX
This commit is contained in:
2017-11-26 18:30:27 -06:00
parent 008c9f186a
commit aa612e0add
2 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ print_snap() {
case "$1" in
S|1|2|3|4|5|6|0)
if [ "$RUNLEVEL" == "S" ]; then
if [ "$RUNLEVEL" = "S" ]; then
set -a
[ -r /etc/default/rcS ] && . /etc/default/rcS
set +a