Browse Source

Fix RPi install: unblock wlan interface

Alexandre Aubin 3 years ago
parent
commit
e391e0a645
2 changed files with 13 additions and 0 deletions
  1. 7 0
      scripts/install
  2. 6 0
      scripts/restore

+ 7 - 0
scripts/install

@@ -74,6 +74,13 @@ ynh_script_progression --message="Configuring firewall..."
 ynh_exec_warn_less yunohost firewall allow --no-upnp --ipv6 UDP 547
 ynh_exec_warn_less yunohost firewall allow --no-upnp UDP 67
 
+# Meh idk where to put this ... On RPi, by default wlan is blocked
+if test -e /usr/sbin/rfkill && rfkill | grep wlan | grep -q -w 'blocked'
+then
+    ynh_print_info "Unblocking wlan interface..."
+    /usr/sbin/rfkill unblock wlan
+fi
+
 #=================================================
 # INSTALL NONFREE FIRWARE IF REQUESTED
 #=================================================

+ 6 - 0
scripts/restore

@@ -35,6 +35,12 @@ service_name=$(ynh_app_setting_get --app=$app --key=service_name)
 #=================================================
 ynh_script_progression --message="Validating restoration parameters..."
 
+# Meh idk where to put this ... On RPi, by default wlan is blocked
+if test -e /usr/sbin/rfkill && rfkill | grep wlan | grep -q -w 'blocked'
+then
+    ynh_print_info "Unblocking wlan interface..."
+    /usr/sbin/rfkill unblock wlan
+fi
 
 #=================================================
 # STANDARD RESTORATION STEPS