summaryrefslogtreecommitdiffstats
path: root/debian/patches/upstream/0002-versioned-sort.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-29 16:25:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-29 16:25:16 +0000
commite957e54eea47cd342fe3388189630766e3f72248 (patch)
treebcd409ed10d2a23659672144bf523087ae7e786a /debian/patches/upstream/0002-versioned-sort.patch
parentMerging upstream version 20240829. (diff)
downloadopen-infrastructure-compute-tools-e957e54eea47cd342fe3388189630766e3f72248.tar.xz
open-infrastructure-compute-tools-e957e54eea47cd342fe3388189630766e3f72248.zip
Merging debian version 20240829-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/upstream/0002-versioned-sort.patch')
-rw-r--r--debian/patches/upstream/0002-versioned-sort.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/debian/patches/upstream/0002-versioned-sort.patch b/debian/patches/upstream/0002-versioned-sort.patch
deleted file mode 100644
index 1f76b90..0000000
--- a/debian/patches/upstream/0002-versioned-sort.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naurp open-infrastructure-compute-tools.orig/libexec/container/list open-infrastructure-compute-tools/libexec/container/list
---- open-infrastructure-compute-tools.orig/libexec/container/list 2023-02-14 21:43:48.782723940 +0100
-+++ open-infrastructure-compute-tools/libexec/container/list 2023-04-16 08:04:02.277215515 +0200
-@@ -327,7 +327,7 @@ esac
-
- if ls "${MACHINES}"/* > /dev/null 2>&1
- then
-- CONTAINERS="$(cd "${MACHINES}" 2>/dev/null && find -maxdepth 1 \( -type d -or -type l \) -and -not -name 'lost+found' -printf '%P\n' | sort)"
-+ CONTAINERS="$(cd "${MACHINES}" 2>/dev/null && find -maxdepth 1 \( -type d -or -type l \) -and -not -name 'lost+found' -printf '%P\n' | sort -V)"
- fi
-
- for CONTAINER in ${CONTAINERS}