From caadd0783aa17992f33b98491dc198c9e4c79a80 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Tue, 28 Jun 2022 12:00:47 +0530 Subject: [PATCH] fix: hostscript path fixes: https://gitea.hostea.org/Hostea/dashboard/issues/7 --- infrastructure/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/utils.py b/infrastructure/utils.py index efd0f61..febed6e 100644 --- a/infrastructure/utils.py +++ b/infrastructure/utils.py @@ -94,7 +94,7 @@ class Infra: """ utility method: hostscript file for a subdomain """ - return self.repo_path.joinpath(f"inventory/hosts-scripts/{subdomain}-host.sh") + return self.repo_path.joinpath(f"hosts-scripts/{subdomain}-host.sh") def write_hostscript(self, subdomain: str, content: str): """