mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-29 07:05:16 +02:00
5 lines
153 B
Bash
5 lines
153 B
Bash
#!/bin/sh
|
|
[ -e conf ] && . ./conf
|
|
: ${CONF_FILE:=/etc/mfs/mfschunkserver.cfg}
|
|
[ -e ${CONF_FILE} ] || exit 1
|
|
exec mfschunkserver -c ${CONF_FILE} -f start
|