home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
tusportal.tus.k12.pa.us
/
tusportal.tus.k12.pa.us.tar
/
tusportal.tus.k12.pa.us
/
Wyse
/
latest-image.raw
/
0.img
/
usr
/
sbin
/
dhcpcd-test
< prev
next >
Wrap
Text File
|
2010-05-05
|
309b
|
24 lines
#!/bin/bash
# License: GPL
# (C) Peter Poeml <poeml@suse.de>
usage() {
cat >&2 <<-EOF
Usage: $(basename $0) [options] <device>
All other parameters are passed through to dhcpcd.
EOF
}
device=$1; shift
if [ -z "$device" ]; then
usage
exit 1
fi
dhcpcd -Td -t 10 -NYRG -c /bin/true $device "$@"