diff --git a/Cargo.toml b/Cargo.toml index aa33f326..f3bc4a76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ members = [ "proxmox-sortable-macro", "proxmox-subscription", "proxmox-sys", - "proxmox-system-config-api", + "proxmox-system-management-api", "proxmox-tfa", "proxmox-time", "proxmox-uuid", diff --git a/proxmox-system-config-api/Cargo.toml b/proxmox-system-management-api/Cargo.toml similarity index 92% rename from proxmox-system-config-api/Cargo.toml rename to proxmox-system-management-api/Cargo.toml index 9ef4f8e5..ce05403f 100644 --- a/proxmox-system-config-api/Cargo.toml +++ b/proxmox-system-management-api/Cargo.toml @@ -1,12 +1,12 @@ [package] -name = "proxmox-system-config-api" +name = "proxmox-system-management-api" version = "0.1.0" authors.workspace = true edition.workspace = true license.workspace = true repository.workspace = true exclude.workspace = true -description = "System configuration API implementation (DNS, Time, Network)" +description = "System Management API implementation (DNS, Time, Network)" [dependencies] anyhow.workspace = true diff --git a/proxmox-system-config-api/debian/changelog b/proxmox-system-management-api/debian/changelog similarity index 60% rename from proxmox-system-config-api/debian/changelog rename to proxmox-system-management-api/debian/changelog index 121ed15c..5c66c04c 100644 --- a/proxmox-system-config-api/debian/changelog +++ b/proxmox-system-management-api/debian/changelog @@ -1,4 +1,4 @@ -rust-proxmox-system-config-api (0.1.0-1) bookworm; urgency=medium +rust-proxmox-system-management-api (0.1.0-1) bookworm; urgency=medium * initial packaging diff --git a/proxmox-system-config-api/debian/copyright b/proxmox-system-management-api/debian/copyright similarity index 100% rename from proxmox-system-config-api/debian/copyright rename to proxmox-system-management-api/debian/copyright diff --git a/proxmox-system-config-api/debian/debcargo.toml b/proxmox-system-management-api/debian/debcargo.toml similarity index 100% rename from proxmox-system-config-api/debian/debcargo.toml rename to proxmox-system-management-api/debian/debcargo.toml diff --git a/proxmox-system-config-api/src/dns/api_types.rs b/proxmox-system-management-api/src/dns/api_types.rs similarity index 100% rename from proxmox-system-config-api/src/dns/api_types.rs rename to proxmox-system-management-api/src/dns/api_types.rs diff --git a/proxmox-system-config-api/src/dns/mod.rs b/proxmox-system-management-api/src/dns/mod.rs similarity index 100% rename from proxmox-system-config-api/src/dns/mod.rs rename to proxmox-system-management-api/src/dns/mod.rs diff --git a/proxmox-system-config-api/src/dns/resolv_conf.rs b/proxmox-system-management-api/src/dns/resolv_conf.rs similarity index 100% rename from proxmox-system-config-api/src/dns/resolv_conf.rs rename to proxmox-system-management-api/src/dns/resolv_conf.rs diff --git a/proxmox-system-config-api/src/lib.rs b/proxmox-system-management-api/src/lib.rs similarity index 100% rename from proxmox-system-config-api/src/lib.rs rename to proxmox-system-management-api/src/lib.rs diff --git a/proxmox-system-config-api/src/network/api_types.rs b/proxmox-system-management-api/src/network/api_types.rs similarity index 100% rename from proxmox-system-config-api/src/network/api_types.rs rename to proxmox-system-management-api/src/network/api_types.rs diff --git a/proxmox-system-config-api/src/network/config/helper.rs b/proxmox-system-management-api/src/network/config/helper.rs similarity index 100% rename from proxmox-system-config-api/src/network/config/helper.rs rename to proxmox-system-management-api/src/network/config/helper.rs diff --git a/proxmox-system-config-api/src/network/config/lexer.rs b/proxmox-system-management-api/src/network/config/lexer.rs similarity index 100% rename from proxmox-system-config-api/src/network/config/lexer.rs rename to proxmox-system-management-api/src/network/config/lexer.rs diff --git a/proxmox-system-config-api/src/network/config/mod.rs b/proxmox-system-management-api/src/network/config/mod.rs similarity index 100% rename from proxmox-system-config-api/src/network/config/mod.rs rename to proxmox-system-management-api/src/network/config/mod.rs diff --git a/proxmox-system-config-api/src/network/config/parser.rs b/proxmox-system-management-api/src/network/config/parser.rs similarity index 100% rename from proxmox-system-config-api/src/network/config/parser.rs rename to proxmox-system-management-api/src/network/config/parser.rs diff --git a/proxmox-system-config-api/src/network/mod.rs b/proxmox-system-management-api/src/network/mod.rs similarity index 100% rename from proxmox-system-config-api/src/network/mod.rs rename to proxmox-system-management-api/src/network/mod.rs diff --git a/proxmox-system-config-api/src/syslog/api_types.rs b/proxmox-system-management-api/src/syslog/api_types.rs similarity index 100% rename from proxmox-system-config-api/src/syslog/api_types.rs rename to proxmox-system-management-api/src/syslog/api_types.rs diff --git a/proxmox-system-config-api/src/syslog/journal.rs b/proxmox-system-management-api/src/syslog/journal.rs similarity index 100% rename from proxmox-system-config-api/src/syslog/journal.rs rename to proxmox-system-management-api/src/syslog/journal.rs diff --git a/proxmox-system-config-api/src/syslog/mod.rs b/proxmox-system-management-api/src/syslog/mod.rs similarity index 100% rename from proxmox-system-config-api/src/syslog/mod.rs rename to proxmox-system-management-api/src/syslog/mod.rs diff --git a/proxmox-system-config-api/src/time/api_types.rs b/proxmox-system-management-api/src/time/api_types.rs similarity index 100% rename from proxmox-system-config-api/src/time/api_types.rs rename to proxmox-system-management-api/src/time/api_types.rs diff --git a/proxmox-system-config-api/src/time/mod.rs b/proxmox-system-management-api/src/time/mod.rs similarity index 100% rename from proxmox-system-config-api/src/time/mod.rs rename to proxmox-system-management-api/src/time/mod.rs diff --git a/proxmox-system-config-api/src/time/time_impl.rs b/proxmox-system-management-api/src/time/time_impl.rs similarity index 100% rename from proxmox-system-config-api/src/time/time_impl.rs rename to proxmox-system-management-api/src/time/time_impl.rs