From 5923720b9a3168fbc7f7a5ea31107cd2fc82d826 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Wed, 26 Aug 2026 10:32:25 +0100 Subject: apk -U upgrade not apk upgrade when updating nginx, fcgiwrap --- roles/fcgiwrap/files/update_fcgiwrap | 2 +- roles/nginx/files/update_nginx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/fcgiwrap/files/update_fcgiwrap b/roles/fcgiwrap/files/update_fcgiwrap index f371b5d..a4ec921 100644 --- a/roles/fcgiwrap/files/update_fcgiwrap +++ b/roles/fcgiwrap/files/update_fcgiwrap @@ -1,6 +1,6 @@ #!/bin/sh -apk upgrade +apk -U upgrade fcgiwrap_pid="$(pgrep fcgiwrap | head -n 1)" if [ -z "$fcgiwrap_pid" ] diff --git a/roles/nginx/files/update_nginx b/roles/nginx/files/update_nginx index cf6ee6f..7a21a63 100644 --- a/roles/nginx/files/update_nginx +++ b/roles/nginx/files/update_nginx @@ -1,6 +1,6 @@ #!/bin/sh -apk upgrade +apk -U upgrade nginx_pid="$(pgrep nginx:\ master\ process)" if [ -z "$nginx_pid" ] -- cgit v1.2.3