* update to 1.2.5 * fix wrong URL * adapt to bin/sbin from new version Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
13 lines
195 B
Bash
13 lines
195 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=19
|
|
STOP=19
|
|
|
|
USE_PROCD=1
|
|
|
|
start_service() {
|
|
procd_open_instance
|
|
procd_set_param command /usr/sbin/rpcbind -f -w
|
|
procd_set_param respawn
|
|
procd_close_instance
|
|
}
|