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 >
Text File  |  2010-05-05  |  309b  |  24 lines

  1. #!/bin/bash
  2.  
  3. # License: GPL
  4. # (C) Peter Poeml <poeml@suse.de>
  5.  
  6. usage() {
  7.     
  8.     cat >&2 <<-EOF
  9.     Usage: $(basename $0) [options] <device>
  10.     
  11.     All other parameters are passed through to dhcpcd.
  12.     EOF
  13.  
  14. }
  15.  
  16. device=$1; shift
  17. if [ -z "$device" ]; then 
  18.     usage
  19.     exit 1
  20. fi
  21.  
  22. dhcpcd -Td -t 10 -NYRG -c /bin/true $device "$@"
  23.  
  24.