home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / acpi / resume.d / 62-ifup.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2006-10-15  |  200 b   |  9 lines

  1. #!/bin/sh
  2.  
  3. # Bring up the interfaces (this should probably be left up to some policy
  4. # manager, but at the moment we just bring back whatever we ifdowned)
  5. for x in $INTERFACES; do
  6.     ifup $x &
  7. done
  8.  
  9.