From 7bc1b0f73a27c947f5fb3071fb574e8410684f31 Mon Sep 17 00:00:00 2001 From: Gus Luxton Date: Tue, 18 Jun 2024 16:24:09 -0300 Subject: [PATCH] ami: Add install section to teleport-acm unit file All other unit files have an `[Install]` section, this one was just omitted by accident. Without an `[Install]` section, it isn't possible to `systemctl enable teleport-acm.service` or similar. --- assets/aws/files/system/teleport-acm.service | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/aws/files/system/teleport-acm.service b/assets/aws/files/system/teleport-acm.service index 6dcab6c09d70b..0d24e9cbe4c30 100644 --- a/assets/aws/files/system/teleport-acm.service +++ b/assets/aws/files/system/teleport-acm.service @@ -15,3 +15,6 @@ ExecStart=/usr/local/bin/teleport start --config=/etc/teleport.yaml --diag-addr= ExecReload=/bin/sh -c "exec pkill -HUP -L -F /run/teleport/teleport.pid" PIDFile=/run/teleport/teleport.pid LimitNOFILE=524288 + +[Install] +WantedBy=multi-user.target