Skip to content

Commit 480cd03

Browse files
authored
Merge pull request #53 from 45Drives/hotfix-ubm_aliasing_vdev_id_generation
Hotfix ubm aliasing vdev id generation
2 parents 716a9f5 + 9dc426c commit 480cd03

8 files changed

Lines changed: 27 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## 45drives-tools 4.0.43-1
1+
## 45drives-tools 4.0.44-1
22

3-
* fix NVMe Hybrid support
3+
* Fix /etc/vdev_id.conf generation / patching by UBM udev rules

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "45drives-tools",
44
"title": "45drives-tools",
55
"description": "cli tools for 45Drives server products",
6-
"version": "4.0.43",
6+
"version": "4.0.44",
77
"build_number": "1",
88
"stable": true,
99
"author": "Brett Kelly <bkelly@45drives.com>",
@@ -77,7 +77,7 @@
7777
],
7878
"changelog": {
7979
"urgency": "medium",
80-
"version": "4.0.43",
80+
"version": "4.0.44",
8181
"build_number": "1",
8282
"date": null,
8383
"packager": "Brett Kelly <bkelly@45drives.com>",

packaging/debian-bookworm/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
45drives-tools (4.0.44-1bookworm) bookworm; urgency=medium
2+
3+
* Fix /etc/vdev_id.conf generation / patching by UBM udev rules
4+
5+
-- Joshua Boudreau <jboudreau@45drives.com> Thu, 14 May 2026 12:02:40 -0300
6+
17
45drives-tools (4.0.43-1bookworm) bookworm; urgency=medium
28

39
* fix NVMe Hybrid support

packaging/rocky-el8/main.spec.j2

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ fi
7777
/usr/lib/udev/rules.d/*
7878

7979
%changelog
80+
* Thu May 14 2026 Joshua Boudreau <jboudreau@45drives.com> 4.0.44-1
81+
- Fix /etc/vdev_id.conf generation / patching by UBM udev rules
8082
* Mon May 11 2026 Joshua Boudreau <jboudreau@45drives.com> 4.0.43-1
8183
- fix NVMe Hybrid support
8284
* Tue May 05 2026 Jordan Keough <jkeough@45drives.com> 4.0.42-1

packaging/rocky-el9/main.spec.j2

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ fi
7777
/usr/lib/udev/rules.d/*
7878

7979
%changelog
80+
* Thu May 14 2026 Joshua Boudreau <jboudreau@45drives.com> 4.0.44-1
81+
- Fix /etc/vdev_id.conf generation / patching by UBM udev rules
8082
* Mon May 11 2026 Joshua Boudreau <jboudreau@45drives.com> 4.0.43-1
8183
- fix NVMe Hybrid support
8284
* Tue May 05 2026 Jordan Keough <jkeough@45drives.com> 4.0.42-1

packaging/ubuntu-focal/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
45drives-tools (4.0.44-1focal) focal; urgency=medium
2+
3+
* Fix /etc/vdev_id.conf generation / patching by UBM udev rules
4+
5+
-- Joshua Boudreau <jboudreau@45drives.com> Thu, 14 May 2026 12:02:40 -0300
6+
17
45drives-tools (4.0.43-1focal) focal; urgency=medium
28

39
* fix NVMe Hybrid support

packaging/ubuntu-jammy/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
45drives-tools (4.0.44-1jammy) jammy; urgency=medium
2+
3+
* Fix /etc/vdev_id.conf generation / patching by UBM udev rules
4+
5+
-- Joshua Boudreau <jboudreau@45drives.com> Thu, 14 May 2026 12:02:40 -0300
6+
17
45drives-tools (4.0.43-1jammy) jammy; urgency=medium
28

39
* fix NVMe Hybrid support

ubm/patch_vdev_id_conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ generate_vdev_id_conf() {
4444
[[ ! -f "$VDEV_ID_CONF" ]] && generate_vdev_id_conf
4545
FOUND_LINE=false
4646
TMPFILE=$(mktemp)
47-
LINE_TEST="^alias $SLOT_NAME"
47+
LINE_TEST="^alias $SLOT_NAME "
4848
while IFS="" read -r line || [ -n "$line" ]; do
4949
if [[ "$line" =~ $LINE_TEST ]]; then
5050
FOUND_LINE=true

0 commit comments

Comments
 (0)