Comment 39 for bug 1385641

Revision history for this message
Alex Muntada (alex.muntada) wrote :

The old workaround for pm-utils doesn't work anymore in vivid since pm-suspend is never run. Now systemd-sleep is used instead, so you'll have to put the following script in /lib/systemd/system-sleep/urfkill:

#!/bin/sh
#
# urfkilld restart (LP#1385641)

set -e

[ -f /etc/urfkill/urfkill.conf ] || exit 0

case $1 in
 post)
  echo "$0: restarting urfkill"
  /usr/sbin/service urfkill restart
  ;;
esac