Compare commits

...

1 Commits

Author SHA1 Message Date
Paul Walko 74682b5b60 smartd fix, 8080/8443 -> 80/443 2021-01-16 17:29:38 -05:00
4 changed files with 9 additions and 6 deletions

View File

@ -11,8 +11,8 @@ ExecStart=/usr/bin/ssh -Nn \
-o ServerAliveCountMax=3 \
-o ExitOnForwardFailure=yes \
-i /home/paul/.ssh/id_rsa_fast \
-R 7000:127.0.0.1:8080 \
-R 7001:127.0.0.1:8443 \
-R 7000:127.0.0.1:80 \
-R 7001:127.0.0.1:443 \
-R 7002:127.0.0.1:2222 \
-R 7003:127.0.0.1:25565 \
pew@polyvalent.seaturtle.pw

View File

@ -7,9 +7,9 @@
- name: Re-export exportfs
command: exportfs -arv
- name: Restart and enable smartd
- name: Restart and enable smartmontools
service:
name: smartd
name: smartmontools
enabled: yes
state: restarted

View File

@ -129,7 +129,7 @@
owner: root
group: root
mode: '0644'
notify: Restart and enable smartd
notify: Restart and enable smartmontools
- name: Install tor config
copy:
@ -166,7 +166,7 @@
user: root
when: gandi_api_key is defined
# Custom repo config
# Compute config
- hosts: compute
become: yes
handlers:

View File

@ -1 +1,4 @@
net.ipv6.conf.{{ interface }}.use_tempaddr=2
{% if hostname == 'fogcutter.seaturtle.pw' %}
net.ipv4.ip_unprivileged_port_start=0
{% endif %}