From 52772ae6ebacd3d5e95cc8f977e7f2ea98e7181f Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sat, 18 May 2024 19:31:11 -0600 Subject: [PATCH] Fix a syntax error in the systemd sudo-logsrvd.postinst script: sudo-logsrvd.postinst: 120: [: -eq: unexpected operator --- scripts/pp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/pp b/scripts/pp index 2a9413f56..a1c5638a8 100755 --- a/scripts/pp +++ b/scripts/pp @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2023 One Identity LLC. ALL RIGHTS RESERVED -pp_revision="20231108" +# Copyright 2024 One Identity LLC. ALL RIGHTS RESERVED +pp_revision="20240518" # Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. # # Redistribution and use in source and binary forms, with or without @@ -8394,7 +8394,6 @@ pp_backend_bsd_cleanup () { } pp_backend_bsd_probe () { - echo "${pp_bsd_os}-${pp_bsd_platform_std}" echo "${pp_bsd_os}${pp_bsd_os_rev}-${pp_bsd_platform_std}" } @@ -8968,7 +8967,7 @@ pp_systemd_service_install_common () { _pp_systemd_enable () { local svc="$1" - local RUNNING + local RUNNING=0 # If $systemctl_cmd is not set, then call _pp_systemd_init. If still not # set, we do not know where the systemctl command is so do nothing;