changeset 237:ff8879eed64e

enable plus
author drewp@bigasterisk.com
date Mon, 27 Nov 2023 22:14:53 -0800
parents 126da0e63f73
children a521d08d2b0d
files inventory.py ssh.py
diffstat 2 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/inventory.py	Mon Nov 27 22:14:27 2023 -0800
+++ b/inventory.py	Mon Nov 27 22:14:53 2023 -0800
@@ -48,8 +48,8 @@
         'ssh_hostname': '162.243.138.136',
         'wireguard_address': '10.5.0.2',
     }),
-#    ('plus', {
-#        'ssh_hostname': 'plus',
-#        'wireguard_address': '10.5.0.110',
-#    }),
+    ('plus', {
+        'ssh_hostname': 'plus',
+        'wireguard_address': '10.5.0.110',
+    }),
 ]
--- a/ssh.py	Mon Nov 27 22:14:27 2023 -0800
+++ b/ssh.py	Mon Nov 27 22:14:53 2023 -0800
@@ -23,4 +23,5 @@
 
 if not is_pi:
     files.line(path='/etc/ssh/sshd_config', line="^UseDNS\b", replace="UseDNS no")
+    # MAYBE plus needs this fix: adding ListenAddress 0.0.0.0 to /etc/ssh/sshd_config
     systemd.service(service='sshd', reloaded=True)