17 lines
209 B
Bash
17 lines
209 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# Read IP address configuration from SD card.
|
||
|
#
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
/opt/puzzlefw/bin/puzzle-ipcfg init
|
||
|
;;
|
||
|
stop|restart|reload)
|
||
|
;;
|
||
|
*)
|
||
|
echo "Usage: $0 start"
|
||
|
exit 1
|
||
|
esac
|
||
|
|