Skip to content
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: 1 addition & 1 deletion ProxCLMC/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ fn main() -> io::Result<()> {
if args.version {
println!("ProxCLMC");
println!("A lightweight tool to determine the maximum CPU compatibility level that is supported across all nodes in a Proxmox VE cluster.");
println!("Version: 1.1.0");
println!("Version: 1.2.0");
println!("Author: Florian Paul Azim Hoberg @gyptazy <gyptazy@gyptazy.com>");
println!("GitHub: https://github.com/gyptazy/ProxCLMC");
std::process::exit(0);
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ test-pmx02 | 10.10.10.22 | x86-64-v3
Cluster CPU type: x86-64-v3
```

For pipeline integration it can also simply be called with `--list-only` argument to return only the desired CPU type:
```
$> proxclmc --list-only
x86-64-v3
```

## Installation
### Requirements / Dependencies
* Proxmox VE Cluster
Expand All @@ -73,8 +79,8 @@ apt-get update && apt-get -y install proxclmc
### Install: Via .deb Package
As an alternative, you can also simply download the Debian package from [@gyptazy](https://github.com/gyptazy)'s CDN and install it afterwards:
```
wget https://cdn.gyptazy.com/debian/proxclmc/proxclmc_1.0.0_amd64.deb
dpkg -i proxclmc_1.0.0_amd64.deb
wget https://cdn.gyptazy.com/debian/proxclmc/proxclmc_1.2.0_amd64.deb
dpkg -i proxclmc_1.2.0_amd64.deb
```

### Usage (Run proxclmc)
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
proxclmc (1.2.0) stable; urgency=medium

* Add list only mode to print out desired cpu type to stdout. (Closes: #16)

-- Florian Paul Azim Hoberg <gyptazy@gyptazy.com> Tue, 06 Jan 2026 07:43:34 +0001

proxclmc (1.1.0) stable; urgency=medium

* Add non cluster mode to also support standalone PVE nodes. (Closes: #13)
Expand Down
Loading