#!/sbin/openrc-run
# Generated by ../utrans from:
#  039dcf48ee6c296011bfd5b0dc14c80ab5eff4d782f688abf5b666ed175bbd83  ./input/systemd/exec-environment-no-substitute.service

description="Test for No Environment Variable Substitution."

start() {
  sh -x -c 'test "${VAR1-unset}" = "unset" && test "${VAR2}" = "word3" && test "${VAR3-unset}" = '\''$word 5 6'\'''
  /bin/sh -x -c 'test "\${VAR1-unset}" != "unset" && test "\${VAR2}" != "word3" && test "\${VAR3-unset}" != '\''\$word 5 6'\'''
}
depend() {
    use mountnfs mountnfs-bootclean umountnfs sendsigs mountall mountall-bootclean mountoverflowtmp umountfs
    after mountnfs mountnfs-bootclean umountnfs sendsigs mountall mountall-bootclean mountoverflowtmp umountfs
}
start_post() {
  mark_service_stopped
}
