#!/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: monerod # Required-Start: $remote_fs $network # Required-Stop: $remote_fs $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Open Source Monero Mining Pool # Description: Open Source Monero Mining Pool ### END INIT INFO # Author: Your Name and Email Here # # update-rc.d monerod defaults # update-rc.d monerod remove DESC="Open Source Monero Mining Pool" DAEMON=/usr/sbin/monerod DAEMON_ARGS="--config-file /etc/monerod.conf --detach --pidfile /run/monero/monerod.pid"