Kodi Community Forum

Full Version: XBMCbuntu suspend and no network from resume
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am getting no network after a resume and i have added a SUSPEND_MODULES="forcedeth" in /etc/pm/config.d/00sleep_module and chmod +x the file.

Anyone figure out whats the problem?
fixed the issue

created a file name 10restartnetwork /etc/pm/sleep.d

chmod +x it

#!/bin/sh
case "$1" in
resume|thaw)
pkill NetworkManager
;;
suspend|hibernate)
# Do nothing
;;
esac

this should fix the ip not getting refresh.