Browse Source

Remove any existing vpn client keys when resetting mesh identity

Bob Mottram 7 years ago
parent
commit
d7936967df
1 changed files with 12 additions and 1 deletions
  1. 12
    1
      src/freedombone-image-mesh

+ 12
- 1
src/freedombone-image-mesh View File

885
         rm -rf /home/$MY_USERNAME/.ssb
885
         rm -rf /home/$MY_USERNAME/.ssb
886
     fi
886
     fi
887
 
887
 
888
-    # Remove vpn keys
888
+    # Remove vpn host keys
889
     if [ -d /etc/openvpn/easy-rsa/keys ]; then
889
     if [ -d /etc/openvpn/easy-rsa/keys ]; then
890
         rm -rf /etc/openvpn/easy-rsa/keys/*
890
         rm -rf /etc/openvpn/easy-rsa/keys/*
891
     fi
891
     fi
892
 
892
 
893
+    # Remove any existing vpn client keys
894
+    if [ -f /home/$MY_USERNAME/vpn.tar.gz ]; then
895
+        rm /home/$MY_USERNAME/vpn.tar.gz
896
+    fi
897
+    if [ -f /home/$USERNAME/stunnel.pem ]; then
898
+        rm /home/$USERNAME/stunnel.pem
899
+    fi
900
+    if [ -f /home/$USERNAME/stunnel.p12 ]; then
901
+        rm /home/$USERNAME/stunnel.p12
902
+    fi
903
+
893
     # Remove cryptpad datastore
904
     # Remove cryptpad datastore
894
     if [ -d $CRYPTPAD_DIR/datastore ]; then
905
     if [ -d $CRYPTPAD_DIR/datastore ]; then
895
         rm -rf $CRYPTPAD_DIR/datastore
906
         rm -rf $CRYPTPAD_DIR/datastore