@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
|
||||
## v4.6.0, unreleased
|
||||
## v4.6.0rc1, 2025-01-29
|
||||
|
||||
### Added
|
||||
|
||||
|
||||
@@ -414,7 +414,9 @@ func Test_BuildOverlay(t *testing.T) {
|
||||
defer env.RemoveAll()
|
||||
|
||||
env.CreateFile("var/lib/warewulf/overlays/o1/rootfs/o1.txt")
|
||||
env.Chmod("var/lib/warewulf/overlays/o1/rootfs/o1.txt", 0644)
|
||||
env.CreateFile("var/lib/warewulf/overlays/o2/rootfs/o2.txt")
|
||||
env.Chmod("var/lib/warewulf/overlays/o2/rootfs/o2.txt", 0644)
|
||||
env.CreateFile("var/lib/warewulf/overlays/o3/rootfs/subdir/o3.txt.ww")
|
||||
env.Chmod("var/lib/warewulf/overlays/o3/rootfs/subdir", 0700)
|
||||
env.Chmod("var/lib/warewulf/overlays/o3/rootfs/subdir/o3.txt.ww", 0600)
|
||||
|
||||
@@ -10,7 +10,7 @@ warewulf.conf
|
||||
=============
|
||||
|
||||
The Warewulf configuration exists as follows in the current version of
|
||||
Warewulf (4.5.8):
|
||||
Warewulf (4.6.0):
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
|
||||
@@ -18,14 +18,14 @@ Rocky Linux 8
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
# dnf install https://github.com/warewulf/warewulf/releases/download/v4.5.8/warewulf-4.5.8-1.el8.x86_64.rpm
|
||||
# dnf install https://github.com/warewulf/warewulf/releases/download/v4.6.0rc1/warewulf-4.6.0rc1-1.el8.x86_64.rpm
|
||||
|
||||
openSuse Leap
|
||||
-------------
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
# zypper install https://github.com/warewulf/warewulf/releases/download/v4.5.8/warewulf-4.5.8-1.suse.lp155.x86_64.rpm
|
||||
# zypper install https://github.com/warewulf/warewulf/releases/download/v4.6.0rc1/warewulf-4.6.0rc1-1.suse.lp155.x86_64.rpm
|
||||
|
||||
Container images
|
||||
================
|
||||
@@ -96,9 +96,9 @@ appropriate substitutions:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
curl -LO https://github.com/warewulf/warewulf/releases/download/v4.5.8/warewulf-4.5.8.tar.gz
|
||||
tar -xf warewulf-4.5.8.tar.gz
|
||||
cd warewulf-4.5.8
|
||||
curl -LO https://github.com/warewulf/warewulf/releases/download/v4.6.0rc1/warewulf-4.6.0rc1.tar.gz
|
||||
tar -xf warewulf-4.6.0rc1.tar.gz
|
||||
cd warewulf-4.6.0rc1
|
||||
make all && sudo make install
|
||||
|
||||
Git
|
||||
@@ -123,7 +123,7 @@ tag.
|
||||
|
||||
git clone https://github.com/warewulf/warewulf.git
|
||||
cd warewulf
|
||||
git checkout main # or switch to a tag like 'v4.5.8'
|
||||
git checkout main # or switch to a tag like 'v4.6.0rc1'
|
||||
make all && sudo make install
|
||||
|
||||
Runtime Dependencies
|
||||
|
||||
@@ -124,7 +124,7 @@ Vagrantfile
|
||||
cat << 'EOF' > Vagrantfile
|
||||
Vagrant.configure("2") do |config|
|
||||
number_of_node = ENV["NODES"] || 2
|
||||
branch = ENV["BRANCH"] || "v4.5.8"
|
||||
branch = ENV["BRANCH"] || "v4.6.0rc1"
|
||||
|
||||
config.vm.define :head do |head|
|
||||
head.vm.box = "rockylinux/9"
|
||||
@@ -161,7 +161,7 @@ Vagrantfile
|
||||
cd /tmp
|
||||
git clone https://github.com/warewulf/warewulf.git
|
||||
cd warewulf
|
||||
git checkout v4.5.8
|
||||
git checkout v4.6.0rc1
|
||||
make clean defaults \
|
||||
PREFIX=/usr \
|
||||
BINDIR=/usr/bin \
|
||||
|
||||
@@ -35,7 +35,7 @@ Install Warewulf and dependencies
|
||||
cd ~/git
|
||||
git clone https://github.com/warewulf/warewulf.git
|
||||
cd warewulf
|
||||
git checkout main # or switch to a tag like 'v4.5.8'
|
||||
git checkout main # or switch to a tag like 'v4.6.0rc1'
|
||||
make all && sudo make install
|
||||
|
||||
|
||||
|
||||
@@ -7,11 +7,11 @@ Install Warewulf
|
||||
|
||||
The preferred way to install Warewulf on Enterprise Linux is using the
|
||||
the RPMs published in `GitHub releases`_. For example, to install the
|
||||
v4.5.8 release on Enterprise Linux 9:
|
||||
v4.6.0rc1 release on Enterprise Linux 9:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
dnf install https://github.com/warewulf/warewulf/releases/download/v4.5.8/warewulf-4.5.8-1.el9.x86_64.rpm
|
||||
dnf install https://github.com/warewulf/warewulf/releases/download/v4.6.0rc1/warewulf-4.6.0rc1-1.el9.x86_64.rpm
|
||||
|
||||
Packages are available for el8 and el9.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user