diff --git a/CHANGELOG.md b/CHANGELOG.md index 74a239da4f..7595c35c12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ - Fixed maximum recursion errors in modules_presence for CFEngine versions unaffected by CFE-4623 (CFE-2852) - Added dnf_group package module for managing DNF package groups (CFE-2852) +- standard_services bundle no longer invokes `systemctl` with `--global` + with is mutually exclusive from `--system` (CFE-4639) ## 3.24.3 diff --git a/lib/services.cf b/lib/services.cf index b505b16924..d2876bfc1d 100644 --- a/lib/services.cf +++ b/lib/services.cf @@ -369,7 +369,7 @@ bundle agent systemd_services(service,state) vars: systemd:: "call_systemctl" - string => "$(paths.systemctl) --no-ask-password --global --system"; + string => "$(paths.systemctl) --no-ask-password --system"; "systemd_properties" string => "-pLoadState,CanStop,UnitFileState,ActiveState,LoadState,CanStart,CanReload";