diff options
| author | Tony Espy <espy@canonical.com> | 2016-05-25 15:22:26 -0400 |
|---|---|---|
| committer | Jeremy Bicha <jbicha@ubuntu.com> | 2017-11-12 14:41:17 -0500 |
| commit | b07d891427e6698838feb42e03ac668893125775 (patch) | |
| tree | b637d89ca2c627a0c89dcee502bc521d3878cf22 /debian | |
| parent | 795ec3c0f66f366a80391744d0a1e1840450c566 (diff) | |
Install a config file to enable WiFi powersave
Removed Set-the-default-powersave*.patch, and instead install config file that accomplishes the same (LP: #1557026).
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/default-wifi-powersave-on.conf | 2 | ||||
| -rwxr-xr-x | debian/rules | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/debian/default-wifi-powersave-on.conf b/debian/default-wifi-powersave-on.conf new file mode 100644 index 00000000..23a68895 --- /dev/null +++ b/debian/default-wifi-powersave-on.conf @@ -0,0 +1,2 @@ +[connection] +wifi.powersave = 3 diff --git a/debian/rules b/debian/rules index 304d9749..9e369d0f 100755 --- a/debian/rules +++ b/debian/rules @@ -63,6 +63,10 @@ override_dh_install: override_dh_missing: dh_missing --fail-missing + # copy powersave configuration + mkdir -p debian/network-manager/etc/NetworkManager/conf.d + cp debian/default-wifi-powersave-on.conf debian/network-manager/etc/NetworkManager/conf.d/ + override_dh_installinit: dh_installinit --noscripts |