You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
734 B
Plaintext
23 lines
734 B
Plaintext
2 years ago
|
#!/bin/sh
|
||
|
# kFreeBSD do 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: fio
|
||
|
# Required-Start: $syslog
|
||
|
# Required-Stop: $syslog
|
||
|
# Default-Start: 2 3 4 5
|
||
|
# Default-Stop: 0 1 6
|
||
|
# Short-Description: Flexible I/O Tester as service
|
||
|
# Description: Runs fio as a service to that fio clients can connect
|
||
|
# to it
|
||
|
### END INIT INFO
|
||
|
|
||
|
# Author: Martin Steigerwald <martin.steigerwald@proact.de>
|
||
|
|
||
|
DESC="Flexible I/O Tester as service"
|
||
|
DAEMON=/usr/bin/fio
|
||
|
DAEMON_ARGS='--server --daemonize /run/fio.pid'
|
||
|
PIDFILE='/run/fio.pid'
|