#!/sbin/openrc-run
# Generated by ../utrans from:
#  851aafc0f2d2360df42ffec0187ccf32752bf28a20e9ca7523e7bb85fb8649b7  ./input/template@.service

description="Template service: ${RC_SVCNAME#*.}."
# Documentation:
#  man:systemd.service(5)

supervisor="supervise-daemon"
command="/usr/bin/echo"
command_args="${RC_SVCNAME#*.}"
depend() {
    want oneshot
    use mountnfs mountnfs-bootclean umountnfs sendsigs mountall mountall-bootclean mountoverflowtmp umountfs
    after oneshot mountnfs mountnfs-bootclean umountnfs sendsigs mountall mountall-bootclean mountoverflowtmp umountfs
}
stop() {
  /usr/bin/echo ${RC_SVCNAME#*.}
}
start_pre() {
  if [ -z "${RC_SVCNAME#*.}" ]; then
    eerror "${RC_SVCNAME} cannot be started directly."
    eerror "You must make symbolic links to the instances you want to start."
    return 1
  fi
}
