#!/bin/sh load_luckfoxconfig() { if [ -f /etc/luckfox.cfg ] && [ -f /usr/bin/luckfox-config ] ;then luckfox-config load fi } case $1 in start) load_luckfoxconfig ;; *) exit 1 ;; esac