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 / var / lib / dpkg / info / ppp.prerm < prev    next >
Encoding:
Text File  |  2007-04-04  |  231 b   |  12 lines

  1. #!/bin/sh -e
  2.  
  3. # If we are removing ppp we have to stop all ppp's
  4.  
  5. if [ "$1" = remove ]; then
  6.   echo -n "Stopping all PPP connections..."
  7.   start-stop-daemon --stop --oknodo --quiet --exec /usr/sbin/pppd || true
  8.   echo "done."
  9. fi
  10.  
  11.  
  12.