Skip to content

Commit

Permalink
feat: turn on external reachability for backup services only
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Nov 27, 2024
1 parent 041e032 commit f33d69f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weblate_web/hetzner.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def generate_subaccount_data(
return {
"homedirectory": f"weblate/{dirname}",
"ssh": "1" if access else "0",
"external_reachability": "1",
"external_reachability": "0" if service.hosted_subscriptions else "1",
"comment": f"Weblate backup ({service.pk}) {service.site_domain}"[:50],
}

Expand Down

0 comments on commit f33d69f

Please sign in to comment.