22 lines
193 B
Bash
Executable File
22 lines
193 B
Bash
Executable File
|
|
#!/bin/sh
|
|
|
|
. ./settings.sh
|
|
|
|
#
|
|
# Service configuration
|
|
#
|
|
S_ENABLED=YES
|
|
S_NAME="tftpd-hpa"
|
|
S_PACKAGES="tftpd-hpa"
|
|
|
|
fservice $S_ENABLED $1 $S_NAME $S_PACKAGES
|
|
|
|
case $1 in
|
|
|
|
init)
|
|
|
|
;;
|
|
|
|
esac
|