#! /bin/sh
# Generated by ../utrans from:
#  8363ac6652bdffe567946f5fc35a2cd493227141aa9c1d529d4c48d54bdb4113  ./input/systemd/exec-environment-multiple.service

# kFreeBSD does not accept scripts as interpreters, using #!/bin/sh and sourcing.
if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then
   set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script
fi
### BEGIN INIT INFO
# Provides: exec-environment-multiple
# Required-Start: $remote_fs
# Required-Stop: $remote_fs
# Default-Start: 
# Default-Stop: 
# Description: Test for Environment
### END INIT INFO
DESC="Test for Environment"
DAEMON="none"
NAME="exec-environment-multiple"
TYPE="oneshot"
set -a
VAR1='word1 word2'
VAR2='word3'
VAR3='$word 5 6'
VAR3='foobar'
set +a
do_start_cmd_override() {
  sh -x -c 'test "$VAR1" = "word1 word2" && test "$VAR2" = word3 && test "$VAR3" = foobar'
}
