17 lines
213 B
Bash
Executable File
17 lines
213 B
Bash
Executable File
#!/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
|