Browse Source

Create a self-signed cert for the local domain if it doesn't exist

Bob Mottram 6 years ago
parent
commit
5f2aa9e5e9
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      src/freedombone-utils-android

+ 6
- 0
src/freedombone-utils-android View File

31
         detect_installable_apps
31
         detect_installable_apps
32
     fi
32
     fi
33
 
33
 
34
+    # Create a self-signed cert if needed
35
+    # The FreedomBox app assumes a self-signed cert
36
+    if [ ! -f "/etc/ssl/certs/${local_hostname}.crt" ]; then
37
+        install_web_local_user_interface
38
+    fi
39
+
34
     local_hostname=$(grep 'host-name' /etc/avahi/avahi-daemon.conf | awk -F '=' '{print $2}').local
40
     local_hostname=$(grep 'host-name' /etc/avahi/avahi-daemon.conf | awk -F '=' '{print $2}').local
35
     plinth_api="/var/www/${local_hostname}/htdocs/plinth/api/1"
41
     plinth_api="/var/www/${local_hostname}/htdocs/plinth/api/1"
36
 
42