[pbs-devel] [PATCH proxmox-backup rebase 01/15] start new pbs-server workspace

Fabian Grünbichler f.gruenbichler at proxmox.com
Mon Sep 20 14:03:19 CEST 2021


gave the whole series a quick go-over, looks okay to me and nothing in 
the build output looks off. the proxmox-restore-daemon actually lost a 
dependency thanks to the move (libstdc++), and relaxed its libc version 
requirement (2.28 -> 2.18) :)

sent a little bit of code duplication/missing features I noticed 
separately on the affected patches.

On September 20, 2021 11:13 am, Dietmar Maurer wrote:
> ---
>  Cargo.toml            | 2 ++
>  Makefile              | 1 +
>  pbs-server/Cargo.toml | 9 +++++++++
>  pbs-server/src/lib.rs | 0
>  4 files changed, 12 insertions(+)
>  create mode 100644 pbs-server/Cargo.toml
>  create mode 100644 pbs-server/src/lib.rs
> 
> diff --git a/Cargo.toml b/Cargo.toml
> index 72d786c9..58abf7c6 100644
> --- a/Cargo.toml
> +++ b/Cargo.toml
> @@ -26,6 +26,7 @@ members = [
>      "pbs-datastore",
>      "pbs-fuse-loop",
>      "pbs-runtime",
> +    "pbs-server",
>      "pbs-systemd",
>      "pbs-tape",
>      "pbs-tools",
> @@ -107,6 +108,7 @@ pbs-client = { path = "pbs-client" }
>  pbs-config = { path = "pbs-config" }
>  pbs-datastore = { path = "pbs-datastore" }
>  pbs-runtime = { path = "pbs-runtime" }
> +pbs-server = { path = "pbs-server" }
>  pbs-systemd = { path = "pbs-systemd" }
>  pbs-tools = { path = "pbs-tools" }
>  pbs-tape = { path = "pbs-tape" }
> diff --git a/Makefile b/Makefile
> index e6c85a2e..050218ba 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -39,6 +39,7 @@ SUBCRATES := \
>  	pbs-datastore \
>  	pbs-fuse-loop \
>  	pbs-runtime \
> +	pbs-server \
>  	pbs-systemd \
>  	pbs-tape \
>  	pbs-tools \
> diff --git a/pbs-server/Cargo.toml b/pbs-server/Cargo.toml
> new file mode 100644
> index 00000000..e933c1e6
> --- /dev/null
> +++ b/pbs-server/Cargo.toml
> @@ -0,0 +1,9 @@
> +[package]
> +name = "pbs-server"
> +version = "0.1.0"
> +authors = ["Proxmox Support Team <support at proxmox.com>"]
> +edition = "2018"
> +description = "REST server implementation"
> +
> +[dependencies]
> +anyhow = "1.0"
> diff --git a/pbs-server/src/lib.rs b/pbs-server/src/lib.rs
> new file mode 100644
> index 00000000..e69de29b
> -- 
> 2.30.2
> 
> 
> 
> _______________________________________________
> pbs-devel mailing list
> pbs-devel at lists.proxmox.com
> https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel
> 
> 
> 





More information about the pbs-devel mailing list