#! /bin/sh
# Generated by ../utrans from:
#  b05e280c90034554585cb7fbb33cbd93fbabfaa7cf9736cee888077954c9f396  ./input/oneshot.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: oneshot
# Required-Start: $remote_fs
# Required-Stop: $remote_fs
# Should-Start: $network
# Should-Stop: $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: Test oneshot
### END INIT INFO
DESC="Test oneshot"
DAEMON="none"
NAME="oneshot"
do_start_cmd_override() {
  /usr/bin/ls /
  binary_found_in_path
  /bin/false || true
}
do_start_prepare() {
  /usr/bin/true
}
do_stop_cmd_override() {
  /usr/bin/finish stop
}
