#! /bin/sh
# Generated by ../utrans from:
#  b0b6a53cda439dc6138df48c500e11179bb44c95d6d89a5346b1438d60b0eba3  ./input/systemd/exec-ignoresigpipe-yes.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-ignoresigpipe-yes
# Required-Start: $remote_fs
# Required-Stop: $remote_fs
# Default-Start: 
# Default-Stop: 
# Description: Test for IgnoreSIGPIPE=yes
### END INIT INFO
DESC="Test for IgnoreSIGPIPE=yes"
DAEMON="none"
NAME="exec-ignoresigpipe-yes"
TYPE="oneshot"
trap '' PIPE
do_start_cmd_override() {
  sh -x -c 'kill -PIPE 0'
}
