mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
9 lines
165 B
Bash
Executable File
9 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
./release-ip.sh
|
|
|
|
hostname=$(hostname -s)
|
|
|
|
# Use udhcpc to obtain IP.
|
|
udhcpc -S -i eth0 -s /etc/udhcpc/default.script -t15 -T10 -A3 -b -q -F "${hostname}"
|