amazon-ssm-agent: add the system's software to the path (#342947)

This commit is contained in:
Arian van Putten 2024-09-19 10:37:59 +02:00 committed by GitHub
commit 5a7ae8f7de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,7 +37,12 @@ in {
after = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
path = [ fake-lsb-release pkgs.coreutils ];
path = [
fake-lsb-release
pkgs.coreutils
"/run/wrappers"
"/run/current-system/sw"
];
serviceConfig = {
ExecStart = "${cfg.package}/bin/amazon-ssm-agent";