Home | History | Annotate | Line # | Download | only in examples
      1  1.1  christos #!/bin/sh
      2  1.1  christos 
      3  1.1  christos # /etc/pm/sleep.d/60_wpa_supplicant
      4  1.1  christos # Action script to notify wpa_supplicant of pm-action events.
      5  1.1  christos 
      6  1.1  christos PATH=/sbin:/usr/sbin:/bin:/usr/bin
      7  1.1  christos 
      8  1.1  christos WPACLI=wpa_cli
      9  1.1  christos 
     10  1.1  christos case "$1" in
     11  1.1  christos 	suspend|hibernate)
     12  1.1  christos 		$WPACLI suspend
     13  1.1  christos 		;;
     14  1.1  christos 	resume|thaw)
     15  1.1  christos 		$WPACLI resume
     16  1.1  christos 		;;
     17  1.1  christos esac
     18  1.1  christos 
     19  1.1  christos exit 0
     20