Unverified Commit 5a7ae8f7 authored by Arian van Putten's avatar Arian van Putten Committed by GitHub
Browse files

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

parents dce9e115 7547a1f5
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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";