From d66138734000d4d2708fba4217d95953499860be Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 9 Oct 2022 10:15:08 +0300 Subject: fix: use right /etc for real host (not /etc/ssh) Sponsored-by: author --- script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.py b/script.py index c25a8f2..0bca486 100644 --- a/script.py +++ b/script.py @@ -142,7 +142,7 @@ def main(): else: logfile = "/tmp/vmadm.script" user_data = "/var/lib/cloud/instance/user-data.txt" - etc = "/etc/ssh" + etc = "/etc" init = CloudInit(logfile, etc, user_data) try: -- cgit v1.2.1