From d52f7e02a88b9ff39110c8d01d2be0622aae567a Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Wed, 12 Nov 2025 19:06:30 -0500 Subject: [PATCH] fix: wrong variable name for ServerName directive in template --- roles/bootstrap/templates/proftpd/conf.d/vhost@vps1.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/bootstrap/templates/proftpd/conf.d/vhost@vps1.conf.j2 b/roles/bootstrap/templates/proftpd/conf.d/vhost@vps1.conf.j2 index c96fa5a..022637f 100644 --- a/roles/bootstrap/templates/proftpd/conf.d/vhost@vps1.conf.j2 +++ b/roles/bootstrap/templates/proftpd/conf.d/vhost@vps1.conf.j2 @@ -1,6 +1,6 @@ ServerName {{ ftp_server_name }} - ServerIdent on "You have arrived at {{ server_name }}!" + ServerIdent on "You have arrived at {{ ftp_server_name }}!" ServerAlias {{ hostvars[inventory_hostname].fqdn }} ServerAlias ftp.{{ hostvars[inventory_hostname].fqdn }} ServerAlias {{ hostvars[inventory_hostname].fqdn.split('.')[0] }}