Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge master to 2.17 #7478

Merged
merged 3 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/source/overview/_files/2.17.x.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Version,Release Date,New OS Supported,Release Notes
2.17.0,2024-11-11,"RHEL 8.10,9.4",`2.17.0 Release Notes <https://github.com/xcat2/xcat-core/wiki/XCAT_2.17_Release_Notes>`_
6 changes: 6 additions & 0 deletions xCAT-server/share/xcat/netboot/add-on/statelite/rc.localdisk
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,12 @@ doconfigure () {
fi
partnum=`expr $partnum + 1`
partdev=$dev$partnum

# need to handle nvme device name, nvme0n1 so partnum is nvme0n1p1
if [[ $dev == *"nvme"* ]]; then
partdev=${dev}p$partnum
fi

echo "Create filesystem $fstype on $partdev" >>$LOG
echo "mkfs.$fstype -f -q $partdev" >>$LOG
`mkfs.$fstype -f -q $partdev > /dev/null`
Expand Down
Loading