After the in-place upgrade from Fedora 43 to Fedora 44, the OpenVox repo was updated accordingly.
/etc/yum.repos.d$ cat siemens-mlinux-openvox.repo
[siemens-mlinux-openvox]
name=OpenVox 8 Fedora 44 - $basearch [for Siemens mLinux]
baseurl=https://yum.voxpupuli.org/openvox8/fedora/44/$basearch
gpgkey=file:///etc/pki/rpm-gpg/siemens-mlinux-openvox.gpg
enabled=1
gpgcheck=1
an Update is available
vagrant@fedora:/etc/yum.repos.d$ LC_ALL=c sudo dnf list openvox-agent --showduplicates
[sudo] password for vagrant:
Failed to set locale, defaulting to "C.UTF-8"
Updating and loading repositories:
Repositories loaded.
Installed packages (available for reinstall, available for upgrade)
openvox-agent.x86_64 8.28.1-1.fc43 siemens-mlinux-openvox
Available packages (available for reinstall, available for upgrade)
openvox-agent.x86_64 8.28.0-1.fc44 siemens-mlinux-openvox
openvox-agent.x86_64 8.28.1-1.fc44 siemens-mlinux-openvox
With this puppet code
package{'openvox-agent':
ensure => 'latest',
}
Unfortunately, the OpenVox-agent package was not upgraded to the 'latest' version:
vagrant@fedora:/etc/puppetlabs/puppet$ time sudo puppet agent -t; echo $?
Info: Using environment 'fix_set_the_evaluation_order'
Info: Retrieving pluginfacts
Info: Retrieving plugin
Info: Loading facts
sh: Zeile 1: /sbin/runlevel: Datei oder Verzeichnis nicht gefunden
Notice: Requesting catalog from xxxxxxxxxxxxx (xxx.xxx.xxx.xxx)
Notice: Catalog compiled by xxxxxxxx
Info: OS: Fedora 44
Info: Running with OpenVox agent
Info: Agent run interval: 10800 seconds. Agent was registered at 2026-07-12T08:16:47.000000000 UTC.
Info: NOTICE: This Device does not seems to have a TPMv2 chip;
unfortunately, we cannot proceed with the certificate management
Info: Created or found device xxxxxxx in xxxxxx
Info: Assigned owner xxxxxxxxx to device xxxxxxxxx in xxxxxx
Info: Assigned OS Fedora 44 to device xxxxxxxxx in xxxxxxx
Info: NOTICE: Kerberos setup skipped because NEMRAC information is incomplete (possible causes include NEMRAC setup not yet completed, no user logged in at time of execution or errors during NEMRAC setup, review its log for details)
Info: NOTICE: SSSD setup skipped because NEMRAC information is incomplete (possible causes include NEMRAC setup not yet completed, no user logged in at time of execution or errors during NEMRAC setup, review its log for details)
Info: Caching catalog for xxxxxxxx
Info: Applying configuration version 'pe-co-2-fix_set_the_evaluation_order-6e2de9f86de'
Notice: /Stage[main]/Siemens_mdatp/Exec[dnf versionlock exclude mdatp-101.26042.0009]/returns: executed successfully (corrective)
Info: /Stage[main]/Siemens_mdatp/Exec[dnf versionlock exclude mdatp-101.26042.0009]: Scheduling refresh of Package[mdatp]
Notice: /Stage[main]/Siemens_mdatp/Package[mdatp]: Triggered 'refresh' from 1 event
Info: /Stage[main]/Siemens_mdatp/Package[mdatp]: Scheduling refresh of Exec[mdatp_early_preview]
Info: /Stage[main]/Siemens_mdatp/Package[mdatp]: Scheduling refresh of Exec[mdatp_edr_tag_set]
Notice: /Stage[main]/Siemens_mdatp/Exec[mdatp_early_preview]: Triggered 'refresh' from 1 event
Notice: /Stage[main]/Siemens_mdatp/Exec[mdatp_edr_tag_set]: Triggered 'refresh' from 1 event
Notice: Applied catalog in 29.34 seconds
real 1m2,130s
user 0m0,011s
sys 0m0,041s
2
@nsballmann
After the in-place upgrade from Fedora 43 to Fedora 44, the OpenVox repo was updated accordingly.
an Update is available
With this puppet code
Unfortunately, the OpenVox-agent package was not upgraded to the 'latest' version:
@nsballmann